mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
fab656f5a7
* include/sys/stat.h: Add prototypes for __lxstat_internal and __lxstat64_internal. Add macros __lxstat and __lxstat64 if not NOT_IN_libc. * sysdeps/generic/lxstat.c: Use INTDEF for __lxstat. * sysdeps/mach/hurd/lxstat.c: Likewise. * sysdeps/unix/common/lxstat.c: Likewise. * sysdeps/unix/sysv/aix/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/ia64/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/lxstat.c: Likewise. * sysdeps/generic/lxstat64.c: Use INTDEF for __lxstat64. * sysdeps/mach/hurd/lxstat64.c: Likewise. * sysdeps/unix/sysv/aix/lxstat64.c: Likewise. * sysdeps/unix/sysv/linuxx/lxstat64.c: Likewise. * include/wchar.h: Declare __mbrtowc_internal and __mbrlen_internal prototypes. Add __mbrlen and __mbrtowc macros. * wcsmbs/mbrlen.c: Use INTDEF for __mbrlen. * wcsmbs/mbrtowc.c: Use INTDEF for __mbrtowc. * include/unistd.h: Add prototype for __write_internal and add __libc_write macro is SHARED. * sysdeps/generic/write.c: Use INTDEF for __write. * sysdeps/mach/hurd/write.c: Likewise. * sysdeps/unix/sysv/aix/write.c: Likewise. * sysdeps/unix/syscalls.list: Add __libc_write alias. * assert/assert.c: Replace STR_N_SIZE with something usable in macro arguments. * assert/assert-perr.c: Likewise.
133 lines
5.6 KiB
C
133 lines
5.6 KiB
C
#ifndef _UNISTD_H
|
|
# include <posix/unistd.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern int __access (__const char *__name, int __type);
|
|
extern int __euidaccess (__const char *__name, int __type);
|
|
extern __off64_t __lseek64 (int __fd, __off64_t __offset, int __whence);
|
|
extern __off_t __lseek (int __fd, __off_t __offset, int __whence);
|
|
extern __off_t __libc_lseek (int __fd, __off_t __offset, int __whence);
|
|
extern __off64_t __libc_lseek64 (int __fd, __off64_t __offset, int __whence);
|
|
extern ssize_t __pread (int __fd, void *__buf, size_t __nbytes,
|
|
__off_t __offset);
|
|
extern ssize_t __libc_pread (int __fd, void *__buf, size_t __nbytes,
|
|
__off_t __offset);
|
|
extern ssize_t __pread64 (int __fd, void *__buf, size_t __nbytes,
|
|
__off64_t __offset);
|
|
extern ssize_t __libc_pread64 (int __fd, void *__buf, size_t __nbytes,
|
|
__off64_t __offset);
|
|
extern ssize_t __pwrite (int __fd, __const void *__buf, size_t __n,
|
|
__off_t __offset);
|
|
extern ssize_t __libc_pwrite (int __fd, __const void *__buf, size_t __n,
|
|
__off_t __offset);
|
|
extern ssize_t __pwrite64 (int __fd, __const void *__buf, size_t __n,
|
|
__off64_t __offset);
|
|
extern ssize_t __libc_pwrite64 (int __fd, __const void *__buf, size_t __n,
|
|
__off64_t __offset);
|
|
extern ssize_t __libc_read (int __fd, void *__buf, size_t __n);
|
|
extern ssize_t __libc_write (int __fd, __const void *__buf, size_t __n);
|
|
extern int __pipe (int __pipedes[2]);
|
|
extern unsigned int __sleep (unsigned int __seconds);
|
|
extern int __chown (__const char *__file,
|
|
__uid_t __owner, __gid_t __group);
|
|
extern int __fchown (int __fd,
|
|
__uid_t __owner, __gid_t __group);
|
|
extern int __lchown (__const char *__file, __uid_t __owner,
|
|
__gid_t __group);
|
|
extern int __chdir (__const char *__path);
|
|
extern int __fchdir (int __fd);
|
|
extern char *__getcwd (char *__buf, size_t __size);
|
|
extern int __rmdir (const char *__path);
|
|
|
|
/* Get the canonical absolute name of the named directory, and put it in SIZE
|
|
bytes of BUF. Returns NULL if the directory couldn't be determined or
|
|
SIZE was too small. If successful, returns BUF. In GNU, if BUF is
|
|
NULL, an array is allocated with `malloc'; the array is SIZE bytes long,
|
|
unless SIZE <= 0, in which case it is as big as necessary. */
|
|
|
|
char *__canonicalize_directory_name_internal (__const char *__thisdir,
|
|
char *__buf,
|
|
size_t __size) attribute_hidden;
|
|
|
|
extern int __dup (int __fd);
|
|
extern int __dup2 (int __fd, int __fd2);
|
|
extern int __dup2_internal (int __fd, int __fd2) attribute_hidden;
|
|
extern int __execve (__const char *__path, char *__const __argv[],
|
|
char *__const __envp[]);
|
|
extern long int __pathconf (__const char *__path, int __name);
|
|
extern long int __fpathconf (int __fd, int __name);
|
|
extern long int __sysconf (int __name);
|
|
extern __pid_t __getpid (void);
|
|
extern __pid_t __getpid_internal (void) attribute_hidden;
|
|
extern __pid_t __getppid (void);
|
|
extern __pid_t __setsid (void);
|
|
extern __uid_t __getuid (void);
|
|
extern __uid_t __geteuid (void);
|
|
extern __gid_t __getgid (void);
|
|
extern __gid_t __getegid (void);
|
|
extern int __getgroups (int __size, __gid_t __list[]);
|
|
extern __pid_t __getpgid_internal (__pid_t __pid) attribute_hidden;
|
|
extern int __group_member (__gid_t __gid);
|
|
extern int __setuid (__uid_t __uid);
|
|
extern int __setreuid (__uid_t __ruid, __uid_t __euid);
|
|
extern int __setgid (__gid_t __gid);
|
|
extern int __setpgid (__pid_t __pid, __pid_t __pgid);
|
|
extern int __setregid (__gid_t __rgid, __gid_t __egid);
|
|
extern __pid_t __vfork (void);
|
|
extern int __ttyname_r (int __fd, char *__buf, size_t __buflen);
|
|
extern int __isatty (int __fd);
|
|
extern int __link (__const char *__from, __const char *__to);
|
|
extern int __symlink (__const char *__from, __const char *__to);
|
|
extern int __readlink (__const char *__path, char *__buf, size_t __len);
|
|
extern int __unlink (__const char *__name);
|
|
extern int __gethostname (char *__name, size_t __len);
|
|
extern int __profil (unsigned short int *__sample_buffer, size_t __size,
|
|
size_t __offset, unsigned int __scale);
|
|
extern int __getdtablesize (void);
|
|
extern int __brk (void *__addr);
|
|
extern int __close (int __fd);
|
|
extern int __close_internal (int __fd) attribute_hidden;
|
|
extern ssize_t __read (int __fd, void *__buf, size_t __nbytes);
|
|
extern ssize_t __write (int __fd, __const void *__buf, size_t __n);
|
|
extern ssize_t __write_internal (int __fd, __const void *__buf, size_t __n)
|
|
attribute_hidden;
|
|
extern __pid_t __fork (void);
|
|
extern __pid_t __fork_internal (void) attribute_hidden;
|
|
extern int __getpagesize (void) __attribute__ ((__const__));
|
|
extern int __getpagesize_internal (void)
|
|
__attribute__ ((__const__)) attribute_hidden;
|
|
extern int __ftruncate (int __fd, __off_t __length);
|
|
extern int __ftruncate64 (int __fd, __off64_t __length);
|
|
extern void *__sbrk (intptr_t __delta);
|
|
|
|
|
|
/* This variable is set nonzero at startup if the process's effective
|
|
IDs differ from its real IDs, or it is otherwise indicated that
|
|
extra security should be used. When this is set the dynamic linker
|
|
and some functions contained in the C library ignore various
|
|
environment variables that normally affect them. */
|
|
extern int __libc_enable_secure;
|
|
#ifdef IS_IN_rtld
|
|
/* XXX The #ifdef should go. */
|
|
extern int __libc_enable_secure_internal attribute_hidden;
|
|
#endif
|
|
|
|
|
|
/* Various internal function. */
|
|
extern void __libc_check_standard_fds (void);
|
|
|
|
|
|
#ifndef NOT_IN_libc
|
|
# define __close(fd) INTUSE(__close) (fd)
|
|
# define __dup2(fd, fd2) INTUSE(__dup2) (fd, fd2)
|
|
# define __fork() INTUSE(__fork) ()
|
|
# define __getpagesize() INTUSE(__getpagesize) ()
|
|
# define __getpgid(pid) INTUSE(__getpgid) (pid)
|
|
# define __getpid() INTUSE(__getpid) ()
|
|
# ifdef SHARED
|
|
# define __libc_write(fd, buf, n) INTUSE(__write) (fd, buf, n)
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|