mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
a63be9f777
* misc/sys/mman.h: Add prototypes for shm_open and shm_unlink. * rt/Makefile (librt-routines): Add shm_open and shm_unlink. * rt/Versions [librt] (GLIBC_2.2): Add shm_open and shm_unlink. * sysdeps/generic/shm_open.c: New file. * sysdeps/generic/shm_unlink.c: New file. * sysdeps/unix/sysv/linux/shm_open.c: New file. * sysdeps/unix/sysv/linux/shm_unlink.c: New file. * sysdeps/unix/sysv/linux/Versions [libc] (GLIBC_2.2): Export __endmntent, __getmntent_r, __setmntent, and __statfs.
20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
librt {
|
|
GLIBC_2.1 {
|
|
# AIO functions.
|
|
aio_cancel; aio_cancel64; aio_error; aio_error64; aio_fsync; aio_fsync64;
|
|
aio_init; aio_read; aio_read64; aio_return; aio_return64; aio_suspend;
|
|
aio_suspend64; aio_write; aio_write64; lio_listio; lio_listio64;
|
|
}
|
|
GLIBC_2.2 {
|
|
# c*
|
|
clock_getres; clock_gettime; clock_settime; clock_getcpuclockid;
|
|
|
|
# s*
|
|
shm_open; shm_unlink;
|
|
|
|
# t*
|
|
timer_create; timer_delete; timer_getoverrun; timer_gettime;
|
|
timer_settime;
|
|
}
|
|
}
|