diff options
author | Christopher Faylor <me@cgf.cx> | 2002-10-21 01:00:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-10-21 01:00:58 +0000 |
commit | 5ec14fe40ae1a6b11d27b975feca1b20de435467 (patch) | |
tree | 568cd69f0dca513973fc6e6646fe6ea4b3b9dafe /winsup/cygwin/cygwin.din | |
parent | ccefaab1d5735466b54f8c5dd279a310d6020a77 (diff) | |
download | cygnal-5ec14fe40ae1a6b11d27b975feca1b20de435467.tar.gz cygnal-5ec14fe40ae1a6b11d27b975feca1b20de435467.tar.bz2 cygnal-5ec14fe40ae1a6b11d27b975feca1b20de435467.zip |
Change _function() to function() throughout.
* cygwin.din: Remove last vestiges (?) of newlib wrappers.
* cygthread.cc (cygthread::detach): Always wait for event or suffer an
apparently inavoidable race.
* dcrt0.cc (dll_crt0_1): Allocate threads after stack has been relocated.
* debub.cc (lock_debug): Don't acquire lock on exit.
* fork.cc (fork_child): Recreate mmaps before doing anything else since Windows
has a habit of using blocks of memory in the child that could previously have
been occupied by shared memory in the parent.
* mmap.cc (fhandler_disk_file::fixup_mmap_after_fork): Issue error here and
provide some details about what went wrong.
(fixup_mmaps_after_fork): Remove error message.
* shared.cc (open_shared): Move warning message so that more detail is
possible.
* sigproc.cc (sigproc_init): Initialize sync_proc_subproc to avoid a race.
(sigproc_terminate): Specifically wait for process thread to terminate.
Diffstat (limited to 'winsup/cygwin/cygwin.din')
-rw-r--r-- | winsup/cygwin/cygwin.din | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index b9b687f06..a9c009afc 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -110,8 +110,8 @@ clearerr _clearerr = clearerr clock _clock = clock -_close -close = _close +close +_close = close closedir _closedir = closedir copysign @@ -217,8 +217,8 @@ fcloseall _fcloseall = fcloseall _fcloseall_r fcloseall_r = _fcloseall_r -_fcntl -fcntl = _fcntl +fcntl +_fcntl = fcntl fcvt _fcvt = fcvt fcvtbuf @@ -534,8 +534,8 @@ login logout longjmp _longjmp = longjmp -_lseek -lseek = _lseek +lseek +_lseek = lseek lseek64 lstat = cygwin_lstat _lstat = cygwin_lstat @@ -593,8 +593,8 @@ nextafter _nextafter = nextafter nextafterf _nextafterf = nextafterf -_open -open = _open +open +_open = open opendir _opendir = opendir pathconf @@ -632,8 +632,8 @@ _rand = rand random initstate setstate -_read -read = _read +read +_read = read readdir _readdir = readdir readlink @@ -652,8 +652,8 @@ remainderf _remainderf = remainderf remove _remove = remove -_rename -rename = _rename +rename +_rename = rename rewind _rewind = rewind rewinddir @@ -893,8 +893,8 @@ tempnam _tempnam = tempnam time _time = time -_times -times = _times +times +_times = times timezone tmpfile _tmpfile = tmpfile @@ -921,8 +921,8 @@ uname _uname = uname ungetc _ungetc = ungetc -_unlink -unlink = _unlink +unlink +_unlink = unlink usleep _usleep = usleep utime @@ -956,8 +956,8 @@ vsscanf _vsscanf = vsscanf _vsscanf_r vsscanf_r = _vsscanf_r -_wait -wait = _wait +wait +_wait = wait waitpid _waitpid = waitpid wait3 @@ -966,8 +966,8 @@ wcstombs _wcstombs = wcstombs wctomb _wctomb = wctomb -_write -write = _write +write +_write = write writev _writev = writev y0 |