add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy
[oweals/busybox.git] / runit / runit_lib.h
1 /*
2 Copyright (c) 2001-2006, Gerrit Pape
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7
8    1. Redistributions of source code must retain the above copyright notice,
9       this list of conditions and the following disclaimer.
10    2. Redistributions in binary form must reproduce the above copyright
11       notice, this list of conditions and the following disclaimer in the
12       documentation and/or other materials provided with the distribution.
13    3. The name of the author may not be used to endorse or promote products
14       derived from this software without specific prior written permission.
15
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28 /*** byte.h ***/
29
30 extern unsigned byte_chr(char *s,unsigned n,int c);
31
32
33 /*** coe.h ***/
34
35 extern int coe(int);
36
37
38 /*** direntry.h ***/
39
40 #define direntry struct dirent
41
42
43 /*** tai.h ***/
44
45 struct tai {
46         uint64_t x;
47 };
48
49 #define tai_unix(t,u) ((void) ((t)->x = 4611686018427387914ULL + (uint64_t) (u)))
50
51 #define TAI_PACK 8
52 //extern void tai_pack(char *,const struct tai *);
53 extern void tai_unpack(const char *,struct tai *);
54
55 extern void tai_uint(struct tai *,unsigned);
56
57
58 /*** taia.h ***/
59
60 struct taia {
61         struct tai sec;
62         unsigned long nano; /* 0...999999999 */
63         unsigned long atto; /* 0...999999999 */
64 };
65
66 //extern void taia_tai(const struct taia *,struct tai *);
67
68 extern void taia_now(struct taia *);
69
70 extern void taia_add(struct taia *,const struct taia *,const struct taia *);
71 extern void taia_addsec(struct taia *,const struct taia *,int);
72 extern void taia_sub(struct taia *,const struct taia *,const struct taia *);
73 extern void taia_half(struct taia *,const struct taia *);
74 extern int taia_less(const struct taia *,const struct taia *);
75
76 #define TAIA_PACK 16
77 extern void taia_pack(char *,const struct taia *);
78 //extern void taia_unpack(const char *,struct taia *);
79
80 //#define TAIA_FMTFRAC 19
81 //extern unsigned taia_fmtfrac(char *,const struct taia *);
82
83 extern void taia_uint(struct taia *,unsigned);
84
85
86 /*** fmt_ptime.h ***/
87
88 #define FMT_PTIME 30
89
90 /* NUL terminated */
91 extern void fmt_ptime30nul(char *, struct taia *);
92 /* NOT terminated! */
93 extern unsigned fmt_taia25(char *, struct taia *);
94
95
96 /*** iopause.h ***/
97
98 typedef struct pollfd iopause_fd;
99 #define IOPAUSE_READ POLLIN
100 #define IOPAUSE_WRITE POLLOUT
101
102 extern void iopause(iopause_fd *,unsigned,struct taia *,struct taia *);
103
104
105 /*** lock.h ***/
106
107 extern int lock_ex(int);
108 extern int lock_un(int);
109 extern int lock_exnb(int);
110
111
112 /*** open.h ***/
113
114 extern int open_read(const char *);
115 extern int open_excl(const char *);
116 extern int open_append(const char *);
117 extern int open_trunc(const char *);
118 extern int open_write(const char *);
119
120
121 /*** pmatch.h ***/
122
123 extern unsigned pmatch(const char *, const char *, unsigned);
124
125
126 /*** sig.h ***/
127
128 extern void sig_catch(int,void (*)(int));
129 #define sig_ignore(s) (sig_catch((s), SIG_IGN))
130 #define sig_uncatch(s) (sig_catch((s), SIG_DFL))
131
132 extern void sig_block(int);
133 extern void sig_unblock(int);
134 extern void sig_blocknone(void);
135 extern void sig_pause(void);
136
137
138 /*** str.h ***/
139
140 extern unsigned str_chr(const char *,int);  /* never returns NULL */
141
142 #define str_diff(s,t) strcmp((s), (t))
143 #define str_equal(s,t) (!strcmp((s), (t)))
144
145
146 /*** wait.h ***/
147
148 extern int wait_pid(int *wstat, int pid);
149 extern int wait_nohang(int *wstat);
150
151 #define wait_crashed(w) ((w) & 127)
152 #define wait_exitcode(w) ((w) >> 8)
153 #define wait_stopsig(w) ((w) >> 8)
154 #define wait_stopped(w) (((w) & 127) == 127)