4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-28 12:05:47 +08:00

Cygwin: Export newlib ndbm functions

Signed-off-by: Corinna Vinschen <corinna-cygwin@cygwin.com>
This commit is contained in:
Corinna Vinschen 2019-07-24 22:05:00 +02:00
parent 279805b20b
commit a13145a30d
4 changed files with 25 additions and 1 deletions

View File

@ -394,6 +394,16 @@ cygwin_stackdump SIGFE
cygwin_umount SIGFE cygwin_umount SIGFE
cygwin_winpid_to_pid SIGFE cygwin_winpid_to_pid SIGFE
daemon SIGFE daemon SIGFE
dbm_clearerr SIGFE
dbm_close SIGFE
dbm_delete SIGFE
dbm_dirfno SIGFE
dbm_error SIGFE
dbm_fetch SIGFE
dbm_firstkey SIGFE
dbm_nextkey SIGFE
dbm_open SIGFE
dbm_store SIGFE
difftime NOSIGFE difftime NOSIGFE
dirfd SIGFE dirfd SIGFE
dirname NOSIGFE dirname NOSIGFE

View File

@ -511,12 +511,14 @@ details. */
338: Export secure_getenv. 338: Export secure_getenv.
339: Export sched_getaffinity, sched_setaffinity, pthread_getaffinity_np, 339: Export sched_getaffinity, sched_setaffinity, pthread_getaffinity_np,
pthread_setaffinity_np, __sched_getaffinity_sys. pthread_setaffinity_np, __sched_getaffinity_sys.
340: Export dbm_clearerr, dbm_close, dbm_delete, dbm_dirfno, dbm_error,
dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store.
Note that we forgot to bump the api for ualarm, strtoll, strtoull, Note that we forgot to bump the api for ualarm, strtoll, strtoull,
sigaltstack, sethostname. */ sigaltstack, sethostname. */
#define CYGWIN_VERSION_API_MAJOR 0 #define CYGWIN_VERSION_API_MAJOR 0
#define CYGWIN_VERSION_API_MINOR 339 #define CYGWIN_VERSION_API_MINOR 340
/* There is also a compatibity version number associated with the shared memory /* There is also a compatibity version number associated with the shared memory
regions. It is incremented when incompatible changes are made to the shared regions. It is incremented when incompatible changes are made to the shared

View File

@ -8,6 +8,8 @@ What's new:
- New APIs: sched_getaffinity, sched_setaffinity, pthread_getaffinity_np, - New APIs: sched_getaffinity, sched_setaffinity, pthread_getaffinity_np,
pthread_setaffinity_np. pthread_setaffinity_np.
- New APIs: dbm_clearerr, dbm_close, dbm_delete, dbm_dirfno, dbm_error,
dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store.
What changed: What changed:
------------- -------------

View File

@ -35,6 +35,16 @@ sched_getaffinity, sched_setaffinity, pthread_getaffinity_np,
pthread_setaffinity_np. pthread_setaffinity_np.
</para></listitem> </para></listitem>
<listitem><para>
New APIs: sched_getaffinity, sched_setaffinity, pthread_getaffinity_np,
pthread_setaffinity_np.
</para></listitem>
<listitem><para>
New APIs: dbm_clearerr, dbm_close, dbm_delete, dbm_dirfno, dbm_error,
dbm_fetch, dbm_firstkey, dbm_nextkey, dbm_open, dbm_store.
</para></listitem>
</itemizedlist> </itemizedlist>
</sect2> </sect2>