20dde76256
BeOS values commented beneath it. For now MAIN_THREAD_STACK_SIZE is the same as STACK_SIZE. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2377 a95241bf-73f2-0310-859d-f6bbb57e9c96
38 lines
1010 B
C
38 lines
1010 B
C
/*
|
|
** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
** Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _KERNEL_KERNEL_H
|
|
#define _KERNEL_KERNEL_H
|
|
|
|
|
|
#include <arch_kernel.h>
|
|
|
|
/* Passed in buffers from user-space shouldn't point into the kernel */
|
|
#define CHECK_USER_ADDRESS(x) \
|
|
((addr)(x) < KERNEL_BASE || (addr)(x) > KERNEL_TOP)
|
|
|
|
/** Size of the kernel stack */
|
|
#define KSTACK_SIZE (PAGE_SIZE * 2)
|
|
|
|
/** Size of the stack given to teams in user space */
|
|
#define MAIN_THREAD_STACK_SIZE (16 * PAGE_SIZE) // 64 kB
|
|
// BeOS: (16 * 1024 * 1024) // 16 MB
|
|
#define STACK_SIZE (16 * PAGE_SIZE)
|
|
// BeOS: (256 * 1024) // 256 kB
|
|
|
|
/** Size of the environmental variables space for a process */
|
|
#define ENV_SIZE (PAGE_SIZE * 8)
|
|
|
|
|
|
#define ROUNDUP(a, b) (((a) + ((b)-1)) & ~((b)-1))
|
|
#define ROUNDOWN(a, b) (((a) / (b)) * (b))
|
|
|
|
|
|
#define CHECK_BIT(a, b) ((a) & (1 << (b)))
|
|
#define SET_BIT(a, b) ((a) | (1 << (b)))
|
|
#define CLEAR_BIT(a, b) ((a) & (~(1 << (b))))
|
|
|
|
|
|
#endif /* _KERNEL_KERNEL_H */
|