* cygwin.din: Export _fdopen64
* Makefile.in (NEW_FUNCTIONS): Add _fdopen64 -> fdopen translation. * include/cygwin/version.h: Bump api minor number. * ntdll.h: Remove (now) duplicate FILE_SYNCHRONOUS_IO_NONALERT definition.
This commit is contained in:
parent
e222bf6748
commit
86ed5c8821
winsup/cygwin
|
@ -1,3 +1,12 @@
|
||||||
|
2003-07-25 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* cygwin.din: Export _fdopen64
|
||||||
|
* Makefile.in (NEW_FUNCTIONS): Add _fdopen64 -> fdopen translation.
|
||||||
|
* include/cygwin/version.h: Bump api minor number.
|
||||||
|
|
||||||
|
* ntdll.h: Remove (now) duplicate FILE_SYNCHRONOUS_IO_NONALERT
|
||||||
|
definition.
|
||||||
|
|
||||||
2003-07-24 Christopher Faylor <cgf@redhat.com>
|
2003-07-24 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* environ.cc (check_case_init): Use strncasematch.
|
* environ.cc (check_case_init): Use strncasematch.
|
||||||
|
|
|
@ -194,6 +194,7 @@ NEW_FUNCTIONS:=regcomp posix_regcomp \
|
||||||
chown _chown32 \
|
chown _chown32 \
|
||||||
facl _facl32 \
|
facl _facl32 \
|
||||||
fchown _fchown32 \
|
fchown _fchown32 \
|
||||||
|
fdopen _fdopen64 \
|
||||||
fgetpos _fgetpos64 \
|
fgetpos _fgetpos64 \
|
||||||
fopen _fopen64 \
|
fopen _fopen64 \
|
||||||
freopen _freopen64 \
|
freopen _freopen64 \
|
||||||
|
|
|
@ -425,6 +425,7 @@ fdim
|
||||||
fdimf
|
fdimf
|
||||||
fdopen
|
fdopen
|
||||||
_fdopen = fdopen
|
_fdopen = fdopen
|
||||||
|
_fdopen64 = fdopen64
|
||||||
feof
|
feof
|
||||||
_feof = feof
|
_feof = feof
|
||||||
ferror
|
ferror
|
||||||
|
|
|
@ -209,12 +209,13 @@ details. */
|
||||||
87: Export vsyslog
|
87: Export vsyslog
|
||||||
88: Export _getreent
|
88: Export _getreent
|
||||||
89: Export __mempcpy
|
89: Export __mempcpy
|
||||||
|
90: Export _fopen64
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||||
|
|
||||||
#define CYGWIN_VERSION_API_MAJOR 0
|
#define CYGWIN_VERSION_API_MAJOR 0
|
||||||
#define CYGWIN_VERSION_API_MINOR 89
|
#define CYGWIN_VERSION_API_MINOR 90
|
||||||
|
|
||||||
/* There is also a compatibity version number associated with the
|
/* There is also a compatibity version number associated with the
|
||||||
shared memory regions. It is incremented when incompatible
|
shared memory regions. It is incremented when incompatible
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
details. */
|
details. */
|
||||||
|
|
||||||
#define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS) 0xc0000004)
|
#define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS) 0xc0000004)
|
||||||
#define FILE_SYNCHRONOUS_IO_NONALERT 32
|
|
||||||
#define PDI_MODULES 0x01
|
#define PDI_MODULES 0x01
|
||||||
#define PDI_HEAPS 0x04
|
#define PDI_HEAPS 0x04
|
||||||
#define LDRP_IMAGE_DLL 0x00000004
|
#define LDRP_IMAGE_DLL 0x00000004
|
||||||
|
|
Loading…
Reference in New Issue