Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
git-mirror
/
glibc
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
c7ecdbd
aout
argp
assert
bare
bits
catgets
conf
conform
crypt
csu
ctype
debug
dirent
dlfcn
elf
gmon
gnulib
grp
hesiod
hurd
iconv
iconvdata
include
inet
intl
io
sys
.cvsignore
Makefile
Versions
fcntl.h
fstat.c
fstat64.c
fts.c
fts.h
ftw.c
ftw.h
ftw64.c
ftwtest-sh
ftwtest.c
getdirname.c
getwd.c
lstat.c
lstat64.c
poll.h
pwd.c
stat.c
stat64.c
test-lfs.c
test-stat.c
test-stat2.c
test-utime.c
tst-fcntl.c
tst-getcwd.c
utime.h
libio
linuxthreads
linuxthreads_db
locale
localedata
login
mach
malloc
manual
math
misc
nis
nscd
nss
po
posix
pwd
resolv
resource
rpm
rt
scripts
setjmp
shadow
signal
socket
soft-fp
stdio-common
stdio
stdlib
streams
string
sunrpc
sysdeps
sysvipc
termios
time
timezone
wcsmbs
wctype
.cvsignore
BUGS
CONFORMANCE
COPYING
COPYING.LIB
ChangeLog
ChangeLog.1
ChangeLog.10
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
FAQ
FAQ.in
INSTALL
INTERFACE
Make-dist
MakeTAGS
Makeconfig
Makefile
Makefile.in
Makerules
NAMESPACE
NEWS
NOTES
PROJECTS
README
README-alpha
README.libm
README.template
Rules
Versions.def
abi-tags
aclocal.m4
config-name.in
config.h.in
config.make.in
configure
configure.in
extra-lib.mk
glibcbug.in
o-iterator.mk
shlib-versions
test-skeleton.c
version.h
Breadcrumbs
glibc
/
io
/
Versions
Blame
Blame
Latest commit
History
History
100 lines (75 loc) · 1.53 KB
Breadcrumbs
glibc
/
io
/
Versions
Top
File metadata and controls
Code
Blame
100 lines (75 loc) · 1.53 KB
Raw
libc { GLIBC_2.0 { # functions which have an additional interface since they are # are cancelable. __libc_open; __libc_close; __libc_read; __libc_write; __libc_lseek; __libc_fcntl; # functions used in inline functions or macros __xstat; __fxstat; __lxstat; __xmknod; __write; __close; __fcntl; __lseek; __open; __read; # functions used by libstdc++ 2.7.2 __dup2; __pipe; # a* access; # c* chdir; chmod; chown; close; creat; # d* dup; dup2; # e* euidaccess; # f* fchdir; fchmod; fchown; fcntl; flock; fstatfs; fts_children; fts_close; fts_open; fts_read; fts_set; ftw; # g* get_current_dir_name; getcwd; getwd; # i* isatty; # l* lchown; link; lockf; lseek; # m* mkdir; mkfifo; # o* open; # p* pipe; poll; # r* read; readlink; rmdir; # s* statfs; symlink; # t* ttyname; ttyname_r; # u* umask; unlink; utime; # w* write; } GLIBC_2.1 { # functions used in other libraries __xstat64; __fxstat64; __lxstat64; __poll; # c* creat64; # f* fstatfs64; fstatvfs; fstatvfs64; ftw64; # l* lockf64; lseek64; # n* nftw; nftw64; # o* open64; # s* statfs64; statvfs; statvfs64; } GLIBC_2.1.1 { # l* lockf64; } GLIBC_2.1.3 { # For the cancelation wrappers. __libc_open64; __libc_lseek64; } GLIBC_2.2 { # p* posix_fadvise; posix_fadvise64; posix_fallocate; posix_fallocate64; __open64; } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
You can’t perform that action at this time.