chiark / gitweb /
log: more general error message formatting
[disorder] / lib / syscalls.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5db8461a 3 * Copyright (C) 2004, 2005, 2007-2009, 2013 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
132a5a4a
RK
18/** @file lib/syscalls.h
19 * @brief Error-checking library call wrappers
20 */
460b9539 21#ifndef SYSCALLS_H
22#define SYSCALLS_H
23
24/* various error-handling wrappers. Not actually all system calls! */
25
26struct sockaddr;
27struct sigaction;
28struct timezone;
29
cca89d7c
RK
30#if HAVE_SYS_SOCKET_H
31# include <sys/socket.h>
32#endif
460b9539 33#include <signal.h>
460b9539 34
35pid_t xfork(void);
8bb67afe
RK
36void xclose_guts(const char *, int, int);
37#define xclose(fd) xclose_guts(__FILE__, __LINE__, fd)
460b9539 38void xdup2(int, int);
39void xpipe(int *);
40int xfcntl(int, int, long);
41void xlisten(int, int);
42void xshutdown(int, int);
43void xsetsockopt(int, int, int, const void *, socklen_t);
44int xsocket(int, int, int);
45void xconnect(int, const struct sockaddr *, socklen_t);
46void xsigprocmask(int how, const sigset_t *set, sigset_t *oldset);
47void xsigaction(int sig, const struct sigaction *sa, struct sigaction *oldsa);
48int xprintf(const char *, ...)
49 attribute((format (printf, 1, 2)));
50void xfclose(FILE *);
51int xnice(int);
52void xgettimeofday(struct timeval *, struct timezone *);
4265e5d3 53time_t xtime(time_t *when);
5db8461a
RK
54void xgettime(clockid_t clk_id, struct timespec *tp);
55void xnanosleep(const struct timespec *req, struct timespec *rem);
460b9539 56/* the above all call @fatal@ if the system call fails */
57
58void nonblock(int fd);
937be4c0 59void blocking(int fd);
460b9539 60void cloexec(int fd);
937be4c0 61/* make @fd@ non-blocking/blocking/close-on-exec; call @fatal@ on error. */
460b9539 62
63int mustnotbeminus1(const char *what, int value);
64/* If @value@ is -1, report an error including @what@. */
65
66int xstrtol(long *n, const char *s, char **ep, int base);
67int xstrtoll(long_long *n, const char *s, char **ep, int base);
68/* like strtol() but returns errno on error, 0 on success */
69
70#endif /* SYSCALLS_H */
71
72/*
73Local Variables:
74c-basic-offset:2
75comment-column:40
76End:
77*/