]> sourceware.org Git - glibc.git/blob - posix/unistd.h
Update.
[glibc.git] / posix / unistd.h
1 /* Copyright (C) 1991-2003, 2004, 2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
18
19 /*
20 * POSIX Standard: 2.10 Symbolic Constants <unistd.h>
21 */
22
23 #ifndef _UNISTD_H
24 #define _UNISTD_H 1
25
26 #include <features.h>
27
28 __BEGIN_DECLS
29
30 /* These may be used to determine what facilities are present at compile time.
31 Their values can be obtained at run time from `sysconf'. */
32
33 /* POSIX Standard approved as ISO/IEC 9945-1 as of December 2001. */
34 #define _POSIX_VERSION 200112L
35
36 /* These are not #ifdef __USE_POSIX2 because they are
37 in the theoretically application-owned namespace. */
38
39 /* The utilities on GNU systems also correspond to this version. */
40 #define _POSIX2_VERSION 200112L
41
42 /* If defined, the implementation supports the
43 C Language Bindings Option. */
44 #define _POSIX2_C_BIND 200112L
45
46 /* If defined, the implementation supports the
47 C Language Development Utilities Option. */
48 #define _POSIX2_C_DEV 200112L
49
50 /* If defined, the implementation supports the
51 Software Development Utilities Option. */
52 #define _POSIX2_SW_DEV 200112L
53
54 /* If defined, the implementation supports the
55 creation of locales with the localedef utility. */
56 #define _POSIX2_LOCALEDEF 200112L
57
58 /* X/Open version number to which the library conforms. It is selectable. */
59 #ifdef __USE_UNIX98
60 # define _XOPEN_VERSION 500
61 #else
62 # define _XOPEN_VERSION 4
63 #endif
64
65 /* Commands and utilities from XPG4 are available. */
66 #define _XOPEN_XCU_VERSION 4
67
68 /* We are compatible with the old published standards as well. */
69 #define _XOPEN_XPG2 1
70 #define _XOPEN_XPG3 1
71 #define _XOPEN_XPG4 1
72
73 /* The X/Open Unix extensions are available. */
74 #define _XOPEN_UNIX 1
75
76 /* Encryption is present. */
77 #define _XOPEN_CRYPT 1
78
79 /* The enhanced internationalization capabilities according to XPG4.2
80 are present. */
81 #define _XOPEN_ENH_I18N 1
82
83 /* The legacy interfaces are also available. */
84 #define _XOPEN_LEGACY 1
85
86
87 /* Get values of POSIX options:
88
89 If these symbols are defined, the corresponding features are
90 always available. If not, they may be available sometimes.
91 The current values can be obtained with `sysconf'.
92
93 _POSIX_JOB_CONTROL Job control is supported.
94 _POSIX_SAVED_IDS Processes have a saved set-user-ID
95 and a saved set-group-ID.
96 _POSIX_REALTIME_SIGNALS Real-time, queued signals are supported.
97 _POSIX_PRIORITY_SCHEDULING Priority scheduling is supported.
98 _POSIX_TIMERS POSIX.4 clocks and timers are supported.
99 _POSIX_ASYNCHRONOUS_IO Asynchronous I/O is supported.
100 _POSIX_PRIORITIZED_IO Prioritized asynchronous I/O is supported.
101 _POSIX_SYNCHRONIZED_IO Synchronizing file data is supported.
102 _POSIX_FSYNC The fsync function is present.
103 _POSIX_MAPPED_FILES Mapping of files to memory is supported.
104 _POSIX_MEMLOCK Locking of all memory is supported.
105 _POSIX_MEMLOCK_RANGE Locking of ranges of memory is supported.
106 _POSIX_MEMORY_PROTECTION Setting of memory protections is supported.
107 _POSIX_MESSAGE_PASSING POSIX.4 message queues are supported.
108 _POSIX_SEMAPHORES POSIX.4 counting semaphores are supported.
109 _POSIX_SHARED_MEMORY_OBJECTS POSIX.4 shared memory objects are supported.
110 _POSIX_THREADS POSIX.1c pthreads are supported.
111 _POSIX_THREAD_ATTR_STACKADDR Thread stack address attribute option supported.
112 _POSIX_THREAD_ATTR_STACKSIZE Thread stack size attribute option supported.
113 _POSIX_THREAD_SAFE_FUNCTIONS Thread-safe functions are supported.
114 _POSIX_THREAD_PRIORITY_SCHEDULING
115 POSIX.1c thread execution scheduling supported.
116 _POSIX_THREAD_PRIO_INHERIT Thread priority inheritance option supported.
117 _POSIX_THREAD_PRIO_PROTECT Thread priority protection option supported.
118 _POSIX_THREAD_PROCESS_SHARED Process-shared synchronization supported.
119 _POSIX_PII Protocol-independent interfaces are supported.
120 _POSIX_PII_XTI XTI protocol-indep. interfaces are supported.
121 _POSIX_PII_SOCKET Socket protocol-indep. interfaces are supported.
122 _POSIX_PII_INTERNET Internet family of protocols supported.
123 _POSIX_PII_INTERNET_STREAM Connection-mode Internet protocol supported.
124 _POSIX_PII_INTERNET_DGRAM Connectionless Internet protocol supported.
125 _POSIX_PII_OSI ISO/OSI family of protocols supported.
126 _POSIX_PII_OSI_COTS Connection-mode ISO/OSI service supported.
127 _POSIX_PII_OSI_CLTS Connectionless ISO/OSI service supported.
128 _POSIX_POLL Implementation supports `poll' function.
129 _POSIX_SELECT Implementation supports `select' and `pselect'.
130
131 _XOPEN_REALTIME X/Open realtime support is available.
132 _XOPEN_REALTIME_THREADS X/Open realtime thread support is available.
133 _XOPEN_SHM Shared memory interface according to XPG4.2.
134
135 _XBS5_ILP32_OFF32 Implementation provides environment with 32-bit
136 int, long, pointer, and off_t types.
137 _XBS5_ILP32_OFFBIG Implementation provides environment with 32-bit
138 int, long, and pointer and off_t with at least
139 64 bits.
140 _XBS5_LP64_OFF64 Implementation provides environment with 32-bit
141 int, and 64-bit long, pointer, and off_t types.
142 _XBS5_LPBIG_OFFBIG Implementation provides environment with at
143 least 32 bits int and long, pointer, and off_t
144 with at least 64 bits.
145
146 If any of these symbols is defined as -1, the corresponding option is not
147 true for any file. If any is defined as other than -1, the corresponding
148 option is true for all files. If a symbol is not defined at all, the value
149 for a specific file can be obtained from `pathconf' and `fpathconf'.
150
151 _POSIX_CHOWN_RESTRICTED Only the super user can use `chown' to change
152 the owner of a file. `chown' can only be used
153 to change the group ID of a file to a group of
154 which the calling process is a member.
155 _POSIX_NO_TRUNC Pathname components longer than
156 NAME_MAX generate an error.
157 _POSIX_VDISABLE If defined, if the value of an element of the
158 `c_cc' member of `struct termios' is
159 _POSIX_VDISABLE, no character will have the
160 effect associated with that element.
161 _POSIX_SYNC_IO Synchronous I/O may be performed.
162 _POSIX_ASYNC_IO Asynchronous I/O may be performed.
163 _POSIX_PRIO_IO Prioritized Asynchronous I/O may be performed.
164
165 Support for the Large File Support interface is not generally available.
166 If it is available the following constants are defined to one.
167 _LFS64_LARGEFILE Low-level I/O supports large files.
168 _LFS64_STDIO Standard I/O supports large files.
169 */
170
171 #include <bits/posix_opt.h>
172
173 /* Get the environment definitions from Unix98. */
174 #ifdef __USE_UNIX98
175 # include <bits/environments.h>
176 #endif
177
178 /* Standard file descriptors. */
179 #define STDIN_FILENO 0 /* Standard input. */
180 #define STDOUT_FILENO 1 /* Standard output. */
181 #define STDERR_FILENO 2 /* Standard error output. */
182
183
184 /* All functions that are not declared anywhere else. */
185
186 #include <bits/types.h>
187
188 #ifndef __ssize_t_defined
189 typedef __ssize_t ssize_t;
190 # define __ssize_t_defined
191 #endif
192
193 #define __need_size_t
194 #define __need_NULL
195 #include <stddef.h>
196
197 #if defined __USE_XOPEN || defined __USE_XOPEN2K
198 /* The Single Unix specification says that some more types are
199 available here. */
200 # ifndef __gid_t_defined
201 typedef __gid_t gid_t;
202 # define __gid_t_defined
203 # endif
204
205 # ifndef __uid_t_defined
206 typedef __uid_t uid_t;
207 # define __uid_t_defined
208 # endif
209
210 # ifndef __off_t_defined
211 # ifndef __USE_FILE_OFFSET64
212 typedef __off_t off_t;
213 # else
214 typedef __off64_t off_t;
215 # endif
216 # define __off_t_defined
217 # endif
218 # if defined __USE_LARGEFILE64 && !defined __off64_t_defined
219 typedef __off64_t off64_t;
220 # define __off64_t_defined
221 # endif
222
223 # ifndef __useconds_t_defined
224 typedef __useconds_t useconds_t;
225 # define __useconds_t_defined
226 # endif
227
228 # ifndef __pid_t_defined
229 typedef __pid_t pid_t;
230 # define __pid_t_defined
231 # endif
232 #endif /* X/Open */
233
234 #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
235 # ifndef __intptr_t_defined
236 typedef __intptr_t intptr_t;
237 # define __intptr_t_defined
238 # endif
239 #endif
240
241 #if defined __USE_BSD || defined __USE_XOPEN
242 # ifndef __socklen_t_defined
243 typedef __socklen_t socklen_t;
244 # define __socklen_t_defined
245 # endif
246 #endif
247
248 /* Values for the second argument to access.
249 These may be OR'd together. */
250 #define R_OK 4 /* Test for read permission. */
251 #define W_OK 2 /* Test for write permission. */
252 #define X_OK 1 /* Test for execute permission. */
253 #define F_OK 0 /* Test for existence. */
254
255 /* Test for access to NAME using the real UID and real GID. */
256 extern int access (__const char *__name, int __type) __THROW __nonnull ((1));
257
258 #ifdef __USE_GNU
259 /* Test for access to NAME using the effective UID and GID
260 (as normal file operations use). */
261 extern int euidaccess (__const char *__name, int __type)
262 __THROW __nonnull ((1));
263 #endif
264
265
266 /* Values for the WHENCE argument to lseek. */
267 #ifndef _STDIO_H /* <stdio.h> has the same definitions. */
268 # define SEEK_SET 0 /* Seek from beginning of file. */
269 # define SEEK_CUR 1 /* Seek from current position. */
270 # define SEEK_END 2 /* Seek from end of file. */
271 #endif
272
273 #if defined __USE_BSD && !defined L_SET
274 /* Old BSD names for the same constants; just for compatibility. */
275 # define L_SET SEEK_SET
276 # define L_INCR SEEK_CUR
277 # define L_XTND SEEK_END
278 #endif
279
280
281 /* Move FD's file position to OFFSET bytes from the
282 beginning of the file (if WHENCE is SEEK_SET),
283 the current position (if WHENCE is SEEK_CUR),
284 or the end of the file (if WHENCE is SEEK_END).
285 Return the new file position. */
286 // XXX Probably should be __wur but lseek(fd,
287 #ifndef __USE_FILE_OFFSET64
288 extern __off_t lseek (int __fd, __off_t __offset, int __whence) __THROW;
289 #else
290 # ifdef __REDIRECT_NTH
291 extern __off64_t __REDIRECT_NTH (lseek,
292 (int __fd, __off64_t __offset, int __whence),
293 lseek64);
294 # else
295 # define lseek lseek64
296 # endif
297 #endif
298 #ifdef __USE_LARGEFILE64
299 extern __off64_t lseek64 (int __fd, __off64_t __offset, int __whence)
300 __THROW;
301 #endif
302
303 /* Close the file descriptor FD.
304
305 This function is a cancellation point and therefore not marked with
306 __THROW. */
307 extern int close (int __fd);
308
309 /* Read NBYTES into BUF from FD. Return the
310 number read, -1 for errors or 0 for EOF.
311
312 This function is a cancellation point and therefore not marked with
313 __THROW. */
314 extern ssize_t read (int __fd, void *__buf, size_t __nbytes) __wur;
315
316 /* Write N bytes of BUF to FD. Return the number written, or -1.
317
318 This function is a cancellation point and therefore not marked with
319 __THROW. */
320 extern ssize_t write (int __fd, __const void *__buf, size_t __n) __wur;
321
322 #ifdef __USE_UNIX98
323 # ifndef __USE_FILE_OFFSET64
324 /* Read NBYTES into BUF from FD at the given position OFFSET without
325 changing the file pointer. Return the number read, -1 for errors
326 or 0 for EOF.
327
328 This function is a cancellation point and therefore not marked with
329 __THROW. */
330 extern ssize_t pread (int __fd, void *__buf, size_t __nbytes,
331 __off_t __offset) __wur;
332
333 /* Write N bytes of BUF to FD at the given position OFFSET without
334 changing the file pointer. Return the number written, or -1.
335
336 This function is a cancellation point and therefore not marked with
337 __THROW. */
338 extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
339 __off_t __offset) __wur;
340 # else
341 # ifdef __REDIRECT
342 extern ssize_t __REDIRECT (pread, (int __fd, void *__buf, size_t __nbytes,
343 __off64_t __offset),
344 pread64) __wur;
345 extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
346 size_t __nbytes, __off64_t __offset),
347 pwrite64) __wur;
348 # else
349 # define pread pread64
350 # define pwrite pwrite64
351 # endif
352 # endif
353
354 # ifdef __USE_LARGEFILE64
355 /* Read NBYTES into BUF from FD at the given position OFFSET without
356 changing the file pointer. Return the number read, -1 for errors
357 or 0 for EOF. */
358 extern ssize_t pread64 (int __fd, void *__buf, size_t __nbytes,
359 __off64_t __offset) __wur;
360 /* Write N bytes of BUF to FD at the given position OFFSET without
361 changing the file pointer. Return the number written, or -1. */
362 extern ssize_t pwrite64 (int __fd, __const void *__buf, size_t __n,
363 __off64_t __offset) __wur;
364 # endif
365 #endif
366
367 /* Create a one-way communication channel (pipe).
368 If successful, two file descriptors are stored in PIPEDES;
369 bytes written on PIPEDES[1] can be read from PIPEDES[0].
370 Returns 0 if successful, -1 if not. */
371 extern int pipe (int __pipedes[2]) __THROW __wur;
372
373 /* Schedule an alarm. In SECONDS seconds, the process will get a SIGALRM.
374 If SECONDS is zero, any currently scheduled alarm will be cancelled.
375 The function returns the number of seconds remaining until the last
376 alarm scheduled would have signaled, or zero if there wasn't one.
377 There is no return value to indicate an error, but you can set `errno'
378 to 0 and check its value after calling `alarm', and this might tell you.
379 The signal may come late due to processor scheduling. */
380 extern unsigned int alarm (unsigned int __seconds) __THROW;
381
382 /* Make the process sleep for SECONDS seconds, or until a signal arrives
383 and is not ignored. The function returns the number of seconds less
384 than SECONDS which it actually slept (thus zero if it slept the full time).
385 If a signal handler does a `longjmp' or modifies the handling of the
386 SIGALRM signal while inside `sleep' call, the handling of the SIGALRM
387 signal afterwards is undefined. There is no return value to indicate
388 error, but if `sleep' returns SECONDS, it probably didn't work.
389
390 This function is a cancellation point and therefore not marked with
391 __THROW. */
392 extern unsigned int sleep (unsigned int __seconds);
393
394 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
395 /* Set an alarm to go off (generating a SIGALRM signal) in VALUE
396 microseconds. If INTERVAL is nonzero, when the alarm goes off, the
397 timer is reset to go off every INTERVAL microseconds thereafter.
398 Returns the number of microseconds remaining before the alarm. */
399 extern __useconds_t ualarm (__useconds_t __value, __useconds_t __interval)
400 __THROW;
401
402 /* Sleep USECONDS microseconds, or until a signal arrives that is not blocked
403 or ignored.
404
405 This function is a cancellation point and therefore not marked with
406 __THROW. */
407 extern int usleep (__useconds_t __useconds);
408 #endif
409
410
411 /* Suspend the process until a signal arrives.
412 This always returns -1 and sets `errno' to EINTR.
413
414 This function is a cancellation point and therefore not marked with
415 __THROW. */
416 extern int pause (void);
417
418
419 /* Change the owner and group of FILE. */
420 extern int chown (__const char *__file, __uid_t __owner, __gid_t __group)
421 __THROW __nonnull ((1)) __wur;
422
423 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
424 /* Change the owner and group of the file that FD is open on. */
425 extern int fchown (int __fd, __uid_t __owner, __gid_t __group) __THROW __wur;
426
427
428 /* Change owner and group of FILE, if it is a symbolic
429 link the ownership of the symbolic link is changed. */
430 extern int lchown (__const char *__file, __uid_t __owner, __gid_t __group)
431 __THROW __nonnull ((1)) __wur;
432
433 #endif /* Use BSD || X/Open Unix. */
434
435 /* Change the process's working directory to PATH. */
436 extern int chdir (__const char *__path) __THROW __nonnull ((1)) __wur;
437
438 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
439 /* Change the process's working directory to the one FD is open on. */
440 extern int fchdir (int __fd) __THROW __wur;
441 #endif
442
443 /* Get the pathname of the current working directory,
444 and put it in SIZE bytes of BUF. Returns NULL if the
445 directory couldn't be determined or SIZE was too small.
446 If successful, returns BUF. In GNU, if BUF is NULL,
447 an array is allocated with `malloc'; the array is SIZE
448 bytes long, unless SIZE == 0, in which case it is as
449 big as necessary. */
450 extern char *getcwd (char *__buf, size_t __size) __THROW __wur;
451
452 #ifdef __USE_GNU
453 /* Return a malloc'd string containing the current directory name.
454 If the environment variable `PWD' is set, and its value is correct,
455 that value is used. */
456 extern char *get_current_dir_name (void) __THROW;
457 #endif
458
459 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
460 /* Put the absolute pathname of the current working directory in BUF.
461 If successful, return BUF. If not, put an error message in
462 BUF and return NULL. BUF should be at least PATH_MAX bytes long. */
463 extern char *getwd (char *__buf)
464 __THROW __nonnull ((1)) __attribute_deprecated__ __wur;
465 #endif
466
467
468 /* Duplicate FD, returning a new file descriptor on the same file. */
469 extern int dup (int __fd) __THROW __wur;
470
471 /* Duplicate FD to FD2, closing FD2 and making it open on the same file. */
472 extern int dup2 (int __fd, int __fd2) __THROW __wur;
473
474 /* NULL-terminated array of "NAME=VALUE" environment variables. */
475 extern char **__environ;
476 #ifdef __USE_GNU
477 extern char **environ;
478 #endif
479
480
481 /* Replace the current process, executing PATH with arguments ARGV and
482 environment ENVP. ARGV and ENVP are terminated by NULL pointers. */
483 extern int execve (__const char *__path, char *__const __argv[],
484 char *__const __envp[]) __THROW __nonnull ((1));
485
486 #ifdef __USE_GNU
487 /* Execute the file FD refers to, overlaying the running program image.
488 ARGV and ENVP are passed to the new program, as for `execve'. */
489 extern int fexecve (int __fd, char *__const __argv[], char *__const __envp[])
490 __THROW;
491 #endif
492
493
494 /* Execute PATH with arguments ARGV and environment from `environ'. */
495 extern int execv (__const char *__path, char *__const __argv[])
496 __THROW __nonnull ((1));
497
498 /* Execute PATH with all arguments after PATH until a NULL pointer,
499 and the argument after that for environment. */
500 extern int execle (__const char *__path, __const char *__arg, ...)
501 __THROW __nonnull ((1));
502
503 /* Execute PATH with all arguments after PATH until
504 a NULL pointer and environment from `environ'. */
505 extern int execl (__const char *__path, __const char *__arg, ...)
506 __THROW __nonnull ((1));
507
508 /* Execute FILE, searching in the `PATH' environment variable if it contains
509 no slashes, with arguments ARGV and environment from `environ'. */
510 extern int execvp (__const char *__file, char *__const __argv[])
511 __THROW __nonnull ((1));
512
513 /* Execute FILE, searching in the `PATH' environment variable if
514 it contains no slashes, with all arguments after FILE until a
515 NULL pointer and environment from `environ'. */
516 extern int execlp (__const char *__file, __const char *__arg, ...)
517 __THROW __nonnull ((1));
518
519
520 #if defined __USE_MISC || defined __USE_XOPEN
521 /* Add INC to priority of the current process. */
522 extern int nice (int __inc) __THROW __wur;
523 #endif
524
525
526 /* Terminate program execution with the low-order 8 bits of STATUS. */
527 extern void _exit (int __status) __attribute__ ((__noreturn__));
528
529
530 /* Get the `_PC_*' symbols for the NAME argument to `pathconf' and `fpathconf';
531 the `_SC_*' symbols for the NAME argument to `sysconf';
532 and the `_CS_*' symbols for the NAME argument to `confstr'. */
533 #include <bits/confname.h>
534
535 /* Get file-specific configuration information about PATH. */
536 extern long int pathconf (__const char *__path, int __name)
537 __THROW __nonnull ((1));
538
539 /* Get file-specific configuration about descriptor FD. */
540 extern long int fpathconf (int __fd, int __name) __THROW;
541
542 /* Get the value of the system variable NAME. */
543 extern long int sysconf (int __name) __THROW __attribute__ ((__const__));
544
545 #ifdef __USE_POSIX2
546 /* Get the value of the string-valued system variable NAME. */
547 extern size_t confstr (int __name, char *__buf, size_t __len) __THROW;
548 #endif
549
550
551 /* Get the process ID of the calling process. */
552 extern __pid_t getpid (void) __THROW;
553
554 /* Get the process ID of the calling process's parent. */
555 extern __pid_t getppid (void) __THROW;
556
557 /* Get the process group ID of the calling process.
558 This function is different on old BSD. */
559 #ifndef __FAVOR_BSD
560 extern __pid_t getpgrp (void) __THROW;
561 #else
562 # ifdef __REDIRECT_NTH
563 extern __pid_t __REDIRECT_NTH (getpgrp, (__pid_t __pid), __getpgid);
564 # else
565 # define getpgrp __getpgid
566 # endif
567 #endif
568
569 /* Get the process group ID of process PID. */
570 extern __pid_t __getpgid (__pid_t __pid) __THROW;
571 #ifdef __USE_XOPEN_EXTENDED
572 extern __pid_t getpgid (__pid_t __pid) __THROW;
573 #endif
574
575
576 /* Set the process group ID of the process matching PID to PGID.
577 If PID is zero, the current process's process group ID is set.
578 If PGID is zero, the process ID of the process is used. */
579 extern int setpgid (__pid_t __pid, __pid_t __pgid) __THROW;
580
581 #if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
582 /* Both System V and BSD have `setpgrp' functions, but with different
583 calling conventions. The BSD function is the same as POSIX.1 `setpgid'
584 (above). The System V function takes no arguments and puts the calling
585 process in its on group like `setpgid (0, 0)'.
586
587 New programs should always use `setpgid' instead.
588
589 The default in GNU is to provide the System V function. The BSD
590 function is available under -D_BSD_SOURCE. */
591
592 # ifndef __FAVOR_BSD
593
594 /* Set the process group ID of the calling process to its own PID.
595 This is exactly the same as `setpgid (0, 0)'. */
596 extern int setpgrp (void) __THROW;
597
598 # else
599
600 /* Another name for `setpgid' (above). */
601 # ifdef __REDIRECT_NTH
602 extern int __REDIRECT_NTH (setpgrp, (__pid_t __pid, __pid_t __pgrp), setpgid);
603 # else
604 # define setpgrp setpgid
605 # endif
606
607 # endif /* Favor BSD. */
608 #endif /* Use SVID or BSD. */
609
610 /* Create a new session with the calling process as its leader.
611 The process group IDs of the session and the calling process
612 are set to the process ID of the calling process, which is returned. */
613 extern __pid_t setsid (void) __THROW;
614
615 #ifdef __USE_XOPEN_EXTENDED
616 /* Return the session ID of the given process. */
617 extern __pid_t getsid (__pid_t __pid) __THROW;
618 #endif
619
620 /* Get the real user ID of the calling process. */
621 extern __uid_t getuid (void) __THROW;
622
623 /* Get the effective user ID of the calling process. */
624 extern __uid_t geteuid (void) __THROW;
625
626 /* Get the real group ID of the calling process. */
627 extern __gid_t getgid (void) __THROW;
628
629 /* Get the effective group ID of the calling process. */
630 extern __gid_t getegid (void) __THROW;
631
632 /* If SIZE is zero, return the number of supplementary groups
633 the calling process is in. Otherwise, fill in the group IDs
634 of its supplementary groups in LIST and return the number written. */
635 extern int getgroups (int __size, __gid_t __list[]) __THROW __wur;
636
637 #ifdef __USE_GNU
638 /* Return nonzero iff the calling process is in group GID. */
639 extern int group_member (__gid_t __gid) __THROW;
640 #endif
641
642 /* Set the user ID of the calling process to UID.
643 If the calling process is the super-user, set the real
644 and effective user IDs, and the saved set-user-ID to UID;
645 if not, the effective user ID is set to UID. */
646 extern int setuid (__uid_t __uid) __THROW;
647
648 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
649 /* Set the real user ID of the calling process to RUID,
650 and the effective user ID of the calling process to EUID. */
651 extern int setreuid (__uid_t __ruid, __uid_t __euid) __THROW;
652 #endif
653
654 #if defined __USE_BSD || defined __USE_XOPEN2K
655 /* Set the effective user ID of the calling process to UID. */
656 extern int seteuid (__uid_t __uid) __THROW;
657 #endif /* Use BSD. */
658
659 /* Set the group ID of the calling process to GID.
660 If the calling process is the super-user, set the real
661 and effective group IDs, and the saved set-group-ID to GID;
662 if not, the effective group ID is set to GID. */
663 extern int setgid (__gid_t __gid) __THROW;
664
665 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
666 /* Set the real group ID of the calling process to RGID,
667 and the effective group ID of the calling process to EGID. */
668 extern int setregid (__gid_t __rgid, __gid_t __egid) __THROW;
669 #endif
670
671 #if defined __USE_BSD || defined __USE_XOPEN2K
672 /* Set the effective group ID of the calling process to GID. */
673 extern int setegid (__gid_t __gid) __THROW;
674 #endif /* Use BSD. */
675
676 #ifdef __USE_GNU
677 /* Fetch the effective user ID, real user ID, and saved-set user ID,
678 of the calling process. */
679 extern int getresuid (__uid_t *__euid, __uid_t *__ruid, __uid_t *__suid)
680 __THROW;
681
682 /* Fetch the effective group ID, real group ID, and saved-set group ID,
683 of the calling process. */
684 extern int getresgid (__gid_t *__egid, __gid_t *__rgid, __gid_t *__sgid)
685 __THROW;
686
687 /* Set the effective user ID, real user ID, and saved-set user ID,
688 of the calling process to EUID, RUID, and SUID, respectively. */
689 extern int setresuid (__uid_t __euid, __uid_t __ruid, __uid_t __suid)
690 __THROW;
691
692 /* Set the effective group ID, real group ID, and saved-set group ID,
693 of the calling process to EGID, RGID, and SGID, respectively. */
694 extern int setresgid (__gid_t __egid, __gid_t __rgid, __gid_t __sgid)
695 __THROW;
696 #endif
697
698
699 /* Clone the calling process, creating an exact copy.
700 Return -1 for errors, 0 to the new process,
701 and the process ID of the new process to the old process. */
702 extern __pid_t fork (void) __THROW;
703
704 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
705 /* Clone the calling process, but without copying the whole address space.
706 The calling process is suspended until the new process exits or is
707 replaced by a call to `execve'. Return -1 for errors, 0 to the new process,
708 and the process ID of the new process to the old process. */
709 extern __pid_t vfork (void) __THROW;
710 #endif /* Use BSD. */
711
712
713 /* Return the pathname of the terminal FD is open on, or NULL on errors.
714 The returned storage is good only until the next call to this function. */
715 extern char *ttyname (int __fd) __THROW;
716
717 /* Store at most BUFLEN characters of the pathname of the terminal FD is
718 open on in BUF. Return 0 on success, otherwise an error number. */
719 extern int ttyname_r (int __fd, char *__buf, size_t __buflen)
720 __THROW __nonnull ((2)) __wur;
721
722 /* Return 1 if FD is a valid descriptor associated
723 with a terminal, zero if not. */
724 extern int isatty (int __fd) __THROW;
725
726 #if defined __USE_BSD \
727 || (defined __USE_XOPEN_EXTENDED && !defined __USE_UNIX98)
728 /* Return the index into the active-logins file (utmp) for
729 the controlling terminal. */
730 extern int ttyslot (void) __THROW;
731 #endif
732
733
734 /* Make a link to FROM named TO. */
735 extern int link (__const char *__from, __const char *__to)
736 __THROW __nonnull ((1, 2)) __wur;
737
738 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
739 /* Make a symbolic link to FROM named TO. */
740 extern int symlink (__const char *__from, __const char *__to)
741 __THROW __nonnull ((1, 2)) __wur;
742
743 /* Read the contents of the symbolic link PATH into no more than
744 LEN bytes of BUF. The contents are not null-terminated.
745 Returns the number of characters read, or -1 for errors. */
746 extern int readlink (__const char *__restrict __path, char *__restrict __buf,
747 size_t __len) __THROW __nonnull ((1, 2)) __wur;
748 #endif /* Use BSD. */
749
750 /* Remove the link NAME. */
751 extern int unlink (__const char *__name) __THROW __nonnull ((1));
752
753 /* Remove the directory PATH. */
754 extern int rmdir (__const char *__path) __THROW __nonnull ((1));
755
756
757 /* Return the foreground process group ID of FD. */
758 extern __pid_t tcgetpgrp (int __fd) __THROW;
759
760 /* Set the foreground process group ID of FD set PGRP_ID. */
761 extern int tcsetpgrp (int __fd, __pid_t __pgrp_id) __THROW;
762
763
764 /* Return the login name of the user.
765
766 This function is a possible cancellation points and therefore not
767 marked with __THROW. */
768 extern char *getlogin (void);
769 #if defined __USE_REENTRANT || defined __USE_UNIX98
770 /* Return at most NAME_LEN characters of the login name of the user in NAME.
771 If it cannot be determined or some other error occurred, return the error
772 code. Otherwise return 0.
773
774 This function is a possible cancellation points and therefore not
775 marked with __THROW. */
776 extern int getlogin_r (char *__name, size_t __name_len) __nonnull ((1));
777 #endif
778
779 #ifdef __USE_BSD
780 /* Set the login name returned by `getlogin'. */
781 extern int setlogin (__const char *__name) __THROW __nonnull ((1));
782 #endif
783
784
785 #ifdef __USE_POSIX2
786 /* Get definitions and prototypes for functions to process the
787 arguments in ARGV (ARGC of them, minus the program name) for
788 options given in OPTS. */
789 # define __need_getopt
790 # include <getopt.h>
791 #endif
792
793
794 #if defined __USE_BSD || defined __USE_UNIX98
795 /* Put the name of the current host in no more than LEN bytes of NAME.
796 The result is null-terminated if LEN is large enough for the full
797 name and the terminator. */
798 extern int gethostname (char *__name, size_t __len) __THROW __nonnull ((1));
799 #endif
800
801
802 #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_UNIX98)
803 /* Set the name of the current host to NAME, which is LEN bytes long.
804 This call is restricted to the super-user. */
805 extern int sethostname (__const char *__name, size_t __len)
806 __THROW __nonnull ((1)) __wur;
807
808 /* Set the current machine's Internet number to ID.
809 This call is restricted to the super-user. */
810 extern int sethostid (long int __id) __THROW __wur;
811
812
813 /* Get and set the NIS (aka YP) domain name, if any.
814 Called just like `gethostname' and `sethostname'.
815 The NIS domain name is usually the empty string when not using NIS. */
816 extern int getdomainname (char *__name, size_t __len)
817 __THROW __nonnull ((1)) __wur;
818 extern int setdomainname (__const char *__name, size_t __len)
819 __THROW __nonnull ((1)) __wur;
820
821
822 /* Revoke access permissions to all processes currently communicating
823 with the control terminal, and then send a SIGHUP signal to the process
824 group of the control terminal. */
825 extern int vhangup (void) __THROW;
826
827 /* Revoke the access of all descriptors currently open on FILE. */
828 extern int revoke (__const char *__file) __THROW __nonnull ((1)) __wur;
829
830
831 /* Enable statistical profiling, writing samples of the PC into at most
832 SIZE bytes of SAMPLE_BUFFER; every processor clock tick while profiling
833 is enabled, the system examines the user PC and increments
834 SAMPLE_BUFFER[((PC - OFFSET) / 2) * SCALE / 65536]. If SCALE is zero,
835 disable profiling. Returns zero on success, -1 on error. */
836 extern int profil (unsigned short int *__sample_buffer, size_t __size,
837 size_t __offset, unsigned int __scale)
838 __THROW __nonnull ((1));
839
840
841 /* Turn accounting on if NAME is an existing file. The system will then write
842 a record for each process as it terminates, to this file. If NAME is NULL,
843 turn accounting off. This call is restricted to the super-user. */
844 extern int acct (__const char *__name) __THROW __nonnull ((1));
845
846
847 /* Successive calls return the shells listed in `/etc/shells'. */
848 extern char *getusershell (void) __THROW;
849 extern void endusershell (void) __THROW; /* Discard cached info. */
850 extern void setusershell (void) __THROW; /* Rewind and re-read the file. */
851
852
853 /* Put the program in the background, and dissociate from the controlling
854 terminal. If NOCHDIR is zero, do `chdir ("/")'. If NOCLOSE is zero,
855 redirects stdin, stdout, and stderr to /dev/null. */
856 extern int daemon (int __nochdir, int __noclose) __THROW __wur;
857 #endif /* Use BSD || X/Open. */
858
859
860 #if defined __USE_BSD || (defined __USE_XOPEN && !defined __USE_XOPEN2K)
861 /* Make PATH be the root directory (the starting point for absolute paths).
862 This call is restricted to the super-user. */
863 extern int chroot (__const char *__path) __THROW __nonnull ((1)) __wur;
864
865 /* Prompt with PROMPT and read a string from the terminal without echoing.
866 Uses /dev/tty if possible; otherwise stderr and stdin. */
867 extern char *getpass (__const char *__prompt) __nonnull ((1));
868 #endif /* Use BSD || X/Open. */
869
870
871 #if defined __USE_BSD || defined __USE_XOPEN
872 /* Make all changes done to FD actually appear on disk.
873
874 This function is a cancellation point and therefore not marked with
875 __THROW. */
876 extern int fsync (int __fd);
877 #endif /* Use BSD || X/Open. */
878
879
880 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
881
882 /* Return identifier for the current host. */
883 extern long int gethostid (void);
884
885 /* Make all changes done to all files actually appear on disk. */
886 extern void sync (void) __THROW;
887
888
889 /* Return the number of bytes in a page. This is the system's page size,
890 which is not necessarily the same as the hardware page size. */
891 extern int getpagesize (void) __THROW __attribute__ ((__const__));
892
893
894 /* Truncate FILE to LENGTH bytes. */
895 # ifndef __USE_FILE_OFFSET64
896 extern int truncate (__const char *__file, __off_t __length)
897 __THROW __nonnull ((1)) __wur;
898 # else
899 # ifdef __REDIRECT_NTH
900 extern int __REDIRECT_NTH (truncate,
901 (__const char *__file, __off64_t __length),
902 truncate64) __nonnull ((1)) __wur;
903 # else
904 # define truncate truncate64
905 # endif
906 # endif
907 # ifdef __USE_LARGEFILE64
908 extern int truncate64 (__const char *__file, __off64_t __length)
909 __THROW __nonnull ((1)) __wur;
910 # endif
911
912 /* Truncate the file FD is open on to LENGTH bytes. */
913 # ifndef __USE_FILE_OFFSET64
914 extern int ftruncate (int __fd, __off_t __length) __THROW __wur;
915 # else
916 # ifdef __REDIRECT_NTH
917 extern int __REDIRECT_NTH (ftruncate, (int __fd, __off64_t __length),
918 ftruncate64) __wur;
919 # else
920 # define ftruncate ftruncate64
921 # endif
922 # endif
923 # ifdef __USE_LARGEFILE64
924 extern int ftruncate64 (int __fd, __off64_t __length) __THROW __wur;
925 # endif
926
927
928 /* Return the maximum number of file descriptors
929 the current process could possibly have. */
930 extern int getdtablesize (void) __THROW;
931
932 #endif /* Use BSD || X/Open Unix. */
933
934
935 #if defined __USE_MISC || defined __USE_XOPEN_EXTENDED
936
937 /* Set the end of accessible data space (aka "the break") to ADDR.
938 Returns zero on success and -1 for errors (with errno set). */
939 extern int brk (void *__addr) __THROW __wur;
940
941 /* Increase or decrease the end of accessible data space by DELTA bytes.
942 If successful, returns the address the previous end of data space
943 (i.e. the beginning of the new space, if DELTA > 0);
944 returns (void *) -1 for errors (with errno set). */
945 extern void *sbrk (intptr_t __delta) __THROW;
946 #endif
947
948
949 #ifdef __USE_MISC
950 /* Invoke `system call' number SYSNO, passing it the remaining arguments.
951 This is completely system-dependent, and not often useful.
952
953 In Unix, `syscall' sets `errno' for all errors and most calls return -1
954 for errors; in many systems you cannot pass arguments or get return
955 values for all system calls (`pipe', `fork', and `getppid' typically
956 among them).
957
958 In Mach, all system calls take normal arguments and always return an
959 error code (zero for success). */
960 extern long int syscall (long int __sysno, ...) __THROW;
961
962 #endif /* Use misc. */
963
964
965 #if (defined __USE_MISC || defined __USE_XOPEN_EXTENDED) && !defined F_LOCK
966 /* NOTE: These declarations also appear in <fcntl.h>; be sure to keep both
967 files consistent. Some systems have them there and some here, and some
968 software depends on the macros being defined without including both. */
969
970 /* `lockf' is a simpler interface to the locking facilities of `fcntl'.
971 LEN is always relative to the current file position.
972 The CMD argument is one of the following.
973
974 This function is a cancellation point and therefore not marked with
975 __THROW. */
976
977 # define F_ULOCK 0 /* Unlock a previously locked region. */
978 # define F_LOCK 1 /* Lock a region for exclusive use. */
979 # define F_TLOCK 2 /* Test and lock a region for exclusive use. */
980 # define F_TEST 3 /* Test a region for other processes locks. */
981
982 # ifndef __USE_FILE_OFFSET64
983 extern int lockf (int __fd, int __cmd, __off_t __len) __wur;
984 # else
985 # ifdef __REDIRECT
986 extern int __REDIRECT (lockf, (int __fd, int __cmd, __off64_t __len),
987 lockf64) __wur;
988 # else
989 # define lockf lockf64
990 # endif
991 # endif
992 # ifdef __USE_LARGEFILE64
993 extern int lockf64 (int __fd, int __cmd, __off64_t __len) __wur;
994 # endif
995 #endif /* Use misc and F_LOCK not already defined. */
996
997
998 #ifdef __USE_GNU
999
1000 /* Evaluate EXPRESSION, and repeat as long as it returns -1 with `errno'
1001 set to EINTR. */
1002
1003 # define TEMP_FAILURE_RETRY(expression) \
1004 (__extension__ \
1005 ({ long int __result; \
1006 do __result = (long int) (expression); \
1007 while (__result == -1L && errno == EINTR); \
1008 __result; }))
1009 #endif
1010
1011 #if defined __USE_POSIX199309 || defined __USE_UNIX98
1012 /* Synchronize at least the data part of a file with the underlying
1013 media. */
1014 extern int fdatasync (int __fildes) __THROW;
1015 #endif /* Use POSIX199309 */
1016
1017
1018 /* XPG4.2 specifies that prototypes for the encryption functions must
1019 be defined here. */
1020 #ifdef __USE_XOPEN
1021 /* Encrypt at most 8 characters from KEY using salt to perturb DES. */
1022 extern char *crypt (__const char *__key, __const char *__salt)
1023 __THROW __nonnull ((1, 2));
1024
1025 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
1026 block in place. */
1027 extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
1028
1029
1030 /* Swab pairs bytes in the first N bytes of the area pointed to by
1031 FROM and copy the result to TO. The value of TO must not be in the
1032 range [FROM - N + 1, FROM - 1]. If N is odd the first byte in FROM
1033 is without partner. */
1034 extern void swab (__const void *__restrict __from, void *__restrict __to,
1035 ssize_t __n) __THROW __nonnull ((1, 2));
1036 #endif
1037
1038
1039 /* The Single Unix specification demands this prototype to be here.
1040 It is also found in <stdio.h>. */
1041 #ifdef __USE_XOPEN
1042 /* Return the name of the controlling terminal. */
1043 extern char *ctermid (char *__s) __THROW __nonnull ((1));
1044 #endif
1045
1046 __END_DECLS
1047
1048 #endif /* unistd.h */
This page took 0.08178 seconds and 5 git commands to generate.