* dtable.h (not_open): Assure inline.
* fhandler.h (operator []): Make const. * sync.cc (muto::~muto): Fix typo which stopped muto event handle from ever being closed.
This commit is contained in:
parent
0aca521ab8
commit
60136eb0b2
|
@ -1,3 +1,13 @@
|
|||
Sun Sep 16 23:04:31 2001 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* dtable.h (not_open): Assure inline.
|
||||
* fhandler.h (operator []): Make const.
|
||||
|
||||
Sun Sep 16 23:02:57 2001 Robert Collins <rbtcollins@hotmail.com>
|
||||
|
||||
* sync.cc (muto::~muto): Fix typo which stopped muto event handle from
|
||||
ever being closed.
|
||||
|
||||
2001-09-16 Egor Duda <deo@logos-m.ru>
|
||||
|
||||
* path.cc (symlink): Check arguments for validity.
|
||||
|
|
|
@ -105,7 +105,7 @@ SECTIONS
|
|||
}
|
||||
.cygheap BLOCK(64 * 1024) :
|
||||
{
|
||||
__system_dlls__ = ABSOLUTE(.) ;
|
||||
__cygheap_start = ABSOLUTE(.) ;
|
||||
__system_dlls__ = ABSOLUTE(.) + 64;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@ public:
|
|||
fhandler_base *build_fhandler (int fd, DWORD dev, const char *name,
|
||||
int unit = -1);
|
||||
fhandler_base *build_fhandler (int fd, const char *name, HANDLE h);
|
||||
int not_open (int fd)
|
||||
inline int not_open (int fd)
|
||||
{
|
||||
SetResourceLock (LOCK_FD_LIST, READ_LOCK, "not_open");
|
||||
|
||||
|
@ -65,7 +65,7 @@ public:
|
|||
void init_std_file_from_handle (int fd, HANDLE handle, DWORD access, const char *name);
|
||||
int dup2 (int oldfd, int newfd);
|
||||
void fixup_after_exec (HANDLE);
|
||||
inline fhandler_base *operator [](int fd) { return fds[fd]; }
|
||||
inline fhandler_base *operator [](int fd) const { return fds[fd]; }
|
||||
select_record *select_read (int fd, select_record *s);
|
||||
select_record *select_write (int fd, select_record *s);
|
||||
select_record *select_except (int fd, select_record *s);
|
||||
|
|
|
@ -47,7 +47,7 @@ muto::~muto ()
|
|||
release ();
|
||||
|
||||
HANDLE h = bruteforce;
|
||||
h = NULL;
|
||||
bruteforce = NULL;
|
||||
/* Just need to close the event handle */
|
||||
if (h)
|
||||
CloseHandle (h);
|
||||
|
|
Loading…
Reference in New Issue