source: rtems-libbsd/freebsd/sys/sys/systm.h @ d01564c

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since d01564c was d01564c, checked in by Sebastian Huber <sebastian.huber@…>, on 10/17/13 at 08:38:34

Move program control to thread structure

  • Property mode set to 100644
File size: 15.1 KB
Line 
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 *      The Regents of the University of California.  All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 *    may be used to endorse or promote products derived from this software
20 *    without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 *      @(#)systm.h     8.7 (Berkeley) 3/29/95
35 * $FreeBSD$
36 */
37
38#ifndef _SYS_SYSTM_H_
39#define _SYS_SYSTM_H_
40
41#include <machine/atomic.h>
42#include <machine/cpufunc.h>
43#include <sys/callout.h>
44#include <sys/cdefs.h>
45#include <sys/queue.h>
46#include <sys/stdint.h>         /* for people using printf mainly */
47
48#ifndef __rtems__
49extern int cold;                /* nonzero if we are doing a cold boot */
50#else /* __rtems__ */
51/* In RTEMS there is no cold boot */
52#define cold 0
53#endif /* __rtems__ */
54extern int rebooting;           /* boot() has been called. */
55extern const char *panicstr;    /* panic message */
56extern char version[];          /* system version */
57extern char copyright[];        /* system copyright */
58extern int kstack_pages;        /* number of kernel stack pages */
59
60extern int nswap;               /* size of swap space */
61
62extern u_long pagesizes[];      /* supported page sizes */
63extern long physmem;            /* physical memory */
64extern long realmem;            /* 'real' memory */
65
66extern char *rootdevnames[2];   /* names of possible root devices */
67
68extern int boothowto;           /* reboot flags, from console subsystem */
69#ifndef __rtems__
70extern int bootverbose;         /* nonzero to print verbose messages */
71#else /* __rtems__ */
72#define bootverbose    0        /* XXX RTEMS doesn't support verbose */
73#endif /* __rtems__ */
74
75
76extern int maxusers;            /* system tune hint */
77extern int ngroups_max;         /* max # of supplemental groups */
78extern int vm_guest;            /* Running as virtual machine guest? */
79
80/*
81 * Detected virtual machine guest types. The intention is to expand
82 * and/or add to the VM_GUEST_VM type if specific VM functionality is
83 * ever implemented (e.g. vendor-specific paravirtualization features).
84 */
85enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN };
86
87#ifdef  INVARIANTS              /* The option is always available */
88#define KASSERT(exp,msg) do {                                           \
89        if (__predict_false(!(exp)))                                    \
90                panic msg;                                              \
91} while (0)
92#define VNASSERT(exp, vp, msg) do {                                     \
93        if (__predict_false(!(exp))) {                                  \
94                vn_printf(vp, "VNASSERT failed\n");                     \
95                panic msg;                                              \
96        }                                                               \
97} while (0)
98#else
99#define KASSERT(exp,msg) do { \
100} while (0)
101
102#define VNASSERT(exp, vp, msg) do { \
103} while (0)
104#endif
105
106#ifndef CTASSERT                /* Allow lint to override */
107#define CTASSERT(x)             _CTASSERT(x, __LINE__)
108#define _CTASSERT(x, y)         __CTASSERT(x, y)
109#define __CTASSERT(x, y)        typedef char __assert ## y[(x) ? 1 : -1]
110#endif
111
112/*
113 * Assert that a pointer can be loaded from memory atomically.
114 *
115 * This assertion enforces stronger alignment than necessary.  For example,
116 * on some architectures, atomicity for unaligned loads will depend on
117 * whether or not the load spans multiple cache lines.
118 */
119#define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
120        KASSERT(sizeof(var) == sizeof(void *) &&                        \
121            ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
122
123/*
124 * XXX the hints declarations are even more misplaced than most declarations
125 * in this file, since they are needed in one file (per arch) and only used
126 * in two files.
127 * XXX most of these variables should be const.
128 */
129extern int osreldate;
130extern int envmode;
131extern int hintmode;            /* 0 = off. 1 = config, 2 = fallback */
132extern int dynamic_kenv;
133extern struct mtx kenv_lock;
134extern char *kern_envp;
135extern char static_env[];
136extern char static_hints[];     /* by config for now */
137
138extern char **kenvp;
139
140/*
141 * General function declarations.
142 */
143
144struct inpcb;
145struct lock_object;
146struct malloc_type;
147struct mtx;
148struct proc;
149struct socket;
150struct thread;
151struct tty;
152struct ucred;
153struct uio;
154struct _jmp_buf;
155
156#ifndef __rtems__
157int     setjmp(struct _jmp_buf *);
158void    longjmp(struct _jmp_buf *, int) __dead2;
159#endif /* __rtems__ */
160int     dumpstatus(vm_offset_t addr, off_t count);
161int     nullop(void);
162int     eopnotsupp(void);
163int     ureadc(int, struct uio *);
164void    hashdestroy(void *, struct malloc_type *, u_long);
165void    *hashinit(int count, struct malloc_type *type, u_long *hashmark);
166void    *hashinit_flags(int count, struct malloc_type *type,
167    u_long *hashmask, int flags);
168#define HASH_NOWAIT     0x00000001
169#define HASH_WAITOK     0x00000002
170
171void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
172void    g_waitidle(void);
173
174#ifdef RESTARTABLE_PANICS
175void    panic(const char *, ...) __printflike(1, 2);
176#else
177void    panic(const char *, ...) __dead2 __printflike(1, 2);
178#endif
179
180void    cpu_boot(int);
181void    cpu_flush_dcache(void *, size_t);
182void    cpu_rootconf(void);
183void    critical_enter(void);
184void    critical_exit(void);
185void    init_param1(void);
186void    init_param2(long physpages);
187void    init_param3(long kmempages);
188void    tablefull(const char *);
189int     kvprintf(char const *, void (*)(int, void*), void *, int,
190            __va_list) __printflike(1, 0);
191void    log(int, const char *, ...) __printflike(2, 3);
192void    log_console(struct uio *);
193int     printf(const char *, ...) __printflike(1, 2);
194int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
195int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
196int     uprintf(const char *, ...) __printflike(1, 2);
197int     vprintf(const char *, __va_list) __printflike(1, 0);
198int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
199int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
200int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
201int     ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
202int     sscanf(const char *, char const *, ...) __nonnull(1) __nonnull(2);
203int     vsscanf(const char *, char const *, __va_list) __nonnull(1) __nonnull(2);
204long    strtol(const char *, char **, int) __nonnull(1);
205u_long  strtoul(const char *, char **, int) __nonnull(1);
206quad_t  strtoq(const char *, char **, int) __nonnull(1);
207u_quad_t strtouq(const char *, char **, int) __nonnull(1);
208void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
209void    hexdump(const void *ptr, int length, const char *hdr, int flags);
210#define HD_COLUMN_MASK  0xff
211#define HD_DELIM_MASK   0xff00
212#define HD_OMIT_COUNT   (1 << 16)
213#define HD_OMIT_HEX     (1 << 17)
214#define HD_OMIT_CHARS   (1 << 18)
215
216#define ovbcopy(f, t, l) bcopy((f), (t), (l))
217void    bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
218void    bzero(void *buf, size_t len) __nonnull(1);
219
220void    *memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
221void    *memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);
222
223int     copystr(const void * __restrict kfaddr, void * __restrict kdaddr,
224            size_t len, size_t * __restrict lencopied)
225            __nonnull(1) __nonnull(2);
226int     copyinstr(const void * __restrict udaddr, void * __restrict kaddr,
227            size_t len, size_t * __restrict lencopied)
228            __nonnull(1) __nonnull(2);
229int     copyin(const void * __restrict udaddr, void * __restrict kaddr,
230            size_t len) __nonnull(1) __nonnull(2);
231int     copyout(const void * __restrict kaddr, void * __restrict udaddr,
232            size_t len) __nonnull(1) __nonnull(2);
233
234int     fubyte(const void *base);
235long    fuword(const void *base);
236int     fuword16(void *base);
237int32_t fuword32(const void *base);
238int64_t fuword64(const void *base);
239int     subyte(void *base, int byte);
240int     suword(void *base, long word);
241int     suword16(void *base, int word);
242int     suword32(void *base, int32_t word);
243int     suword64(void *base, int64_t word);
244uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
245u_long   casuword(volatile u_long *p, u_long oldval, u_long newval);
246
247void    realitexpire(void *);
248
249int     sysbeep(int hertz, int period);
250
251void    hardclock(int usermode, uintfptr_t pc);
252void    hardclock_cpu(int usermode);
253void    softclock(void *);
254void    statclock(int usermode);
255void    profclock(int usermode, uintfptr_t pc);
256
257void    startprofclock(struct proc *);
258void    stopprofclock(struct proc *);
259void    cpu_startprofclock(void);
260void    cpu_stopprofclock(void);
261
262#ifndef __rtems__
263int     cr_cansee(struct ucred *u1, struct ucred *u2);
264int     cr_canseesocket(struct ucred *cred, struct socket *so);
265int     cr_canseeinpcb(struct ucred *cred, struct inpcb *inp);
266#else /* __rtems__ */
267#define cr_cansee(u1, u2) 1
268#define cr_canseesocket(cred, so) 1
269#define cr_canseeinpcb(cred, inp) 1
270#endif /* __rtems__ */
271
272char    *getenv(const char *name);
273void    freeenv(char *env);
274int     getenv_int(const char *name, int *data);
275int     getenv_uint(const char *name, unsigned int *data);
276int     getenv_long(const char *name, long *data);
277int     getenv_ulong(const char *name, unsigned long *data);
278int     getenv_string(const char *name, char *data, int size);
279int     getenv_quad(const char *name, quad_t *data);
280int     setenv(const char *name, const char *value);
281int     unsetenv(const char *name);
282int     testenv(const char *name);
283
284typedef uint64_t (cpu_tick_f)(void);
285void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
286extern cpu_tick_f *cpu_ticks;
287uint64_t cpu_tickrate(void);
288uint64_t cputick2usec(uint64_t tick);
289
290#ifdef APM_FIXUP_CALLTODO
291struct timeval;
292void    adjust_timeout_calltodo(struct timeval *time_change);
293#endif /* APM_FIXUP_CALLTODO */
294
295#include <sys/libkern.h>
296
297/* Initialize the world */
298void    consinit(void);
299void    cpu_initclocks(void);
300void    usrinfoinit(void);
301
302/* Finalize the world */
303void    shutdown_nice(int);
304
305/* Timeouts */
306typedef void timeout_t(void *); /* timeout function type */
307#define CALLOUT_HANDLE_INITIALIZER(handle)      \
308        { NULL }
309
310void    callout_handle_init(struct callout_handle *);
311struct  callout_handle timeout(timeout_t *, void *, int);
312void    untimeout(timeout_t *, void *, struct callout_handle);
313caddr_t kern_timeout_callwheel_alloc(caddr_t v);
314void    kern_timeout_callwheel_init(void);
315
316/* Stubs for obsolete functions that used to be for interrupt management */
317static __inline void            spl0(void)              { return; }
318static __inline intrmask_t      splbio(void)            { return 0; }
319static __inline intrmask_t      splcam(void)            { return 0; }
320static __inline intrmask_t      splclock(void)          { return 0; }
321static __inline intrmask_t      splhigh(void)           { return 0; }
322static __inline intrmask_t      splimp(void)            { return 0; }
323static __inline intrmask_t      splnet(void)            { return 0; }
324static __inline intrmask_t      splsoftcam(void)        { return 0; }
325static __inline intrmask_t      splsoftclock(void)      { return 0; }
326static __inline intrmask_t      splsofttty(void)        { return 0; }
327static __inline intrmask_t      splsoftvm(void)         { return 0; }
328static __inline intrmask_t      splsofttq(void)         { return 0; }
329static __inline intrmask_t      splstatclock(void)      { return 0; }
330static __inline intrmask_t      spltty(void)            { return 0; }
331static __inline intrmask_t      splvm(void)             { return 0; }
332static __inline void            splx(intrmask_t ipl __unused)   { return; }
333
334/*
335 * Common `proc' functions are declared here so that proc.h can be included
336 * less often.
337 */
338int     _sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg,
339            int timo) __nonnull(1);
340#define msleep(chan, mtx, pri, wmesg, timo)                             \
341        _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo))
342int     msleep_spin(void *chan, struct mtx *mtx, const char *wmesg, int timo)
343            __nonnull(1);
344int     pause(const char *wmesg, int timo);
345#define tsleep(chan, pri, wmesg, timo)                                  \
346        _sleep((chan), NULL, (pri), (wmesg), (timo))
347void    wakeup(void *chan) __nonnull(1);
348void    wakeup_one(void *chan) __nonnull(1);
349
350/*
351 * Common `struct cdev *' stuff are declared here to avoid #include poisoning
352 */
353
354struct cdev;
355dev_t dev2udev(struct cdev *x);
356const char *devtoname(struct cdev *cdev);
357
358int poll_no_poll(int events);
359
360/* XXX: Should be void nanodelay(u_int nsec); */
361void    DELAY(int usec);
362
363/* Root mount holdback API */
364struct root_hold_token;
365
366struct root_hold_token *root_mount_hold(const char *identifier);
367void root_mount_rel(struct root_hold_token *h);
368void root_mount_wait(void);
369int root_mounted(void);
370
371
372/*
373 * Unit number allocation API. (kern/subr_unit.c)
374 */
375struct unrhdr;
376struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
377void delete_unrhdr(struct unrhdr *uh);
378void clean_unrhdr(struct unrhdr *uh);
379void clean_unrhdrl(struct unrhdr *uh);
380int alloc_unr(struct unrhdr *uh);
381int alloc_unrl(struct unrhdr *uh);
382void free_unr(struct unrhdr *uh, u_int item);
383
384/*
385 * This is about as magic as it gets.  fortune(1) has got similar code
386 * for reversing bits in a word.  Who thinks up this stuff??
387 *
388 * Yes, it does appear to be consistently faster than:
389 * while (i = ffs(m)) {
390 *      m >>= i;
391 *      bits++;
392 * }
393 * and
394 * while (lsb = (m & -m)) {     // This is magic too
395 *      m &= ~lsb;              // or: m ^= lsb
396 *      bits++;
397 * }
398 * Both of these latter forms do some very strange things on gcc-3.1 with
399 * -mcpu=pentiumpro and/or -march=pentiumpro and/or -O or -O2.
400 * There is probably an SSE or MMX popcnt instruction.
401 *
402 * I wonder if this should be in libkern?
403 *
404 * XXX Stop the presses!  Another one:
405 * static __inline u_int32_t
406 * popcnt1(u_int32_t v)
407 * {
408 *      v -= ((v >> 1) & 0x55555555);
409 *      v = (v & 0x33333333) + ((v >> 2) & 0x33333333);
410 *      v = (v + (v >> 4)) & 0x0F0F0F0F;
411 *      return (v * 0x01010101) >> 24;
412 * }
413 * The downside is that it has a multiply.  With a pentium3 with
414 * -mcpu=pentiumpro and -march=pentiumpro then gcc-3.1 will use
415 * an imull, and in that case it is faster.  In most other cases
416 * it appears slightly slower.
417 *
418 * Another variant (also from fortune):
419 * #define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255)
420 * #define  BX_(x)     ((x) - (((x)>>1)&0x77777777)            \
421 *                          - (((x)>>2)&0x33333333)            \
422 *                          - (((x)>>3)&0x11111111))
423 */
424static __inline uint32_t
425bitcount32(uint32_t x)
426{
427
428        x = (x & 0x55555555) + ((x & 0xaaaaaaaa) >> 1);
429        x = (x & 0x33333333) + ((x & 0xcccccccc) >> 2);
430        x = (x + (x >> 4)) & 0x0f0f0f0f;
431        x = (x + (x >> 8));
432        x = (x + (x >> 16)) & 0x000000ff;
433        return (x);
434}
435
436#endif /* !_SYS_SYSTM_H_ */
Note: See TracBrowser for help on using the repository browser.