Changeset f49f16c in mainline
- Timestamp:
- 2006-06-07T10:58:00Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 616f1759
- Parents:
- 06a583e
- Location:
- generic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/ipc.h
r06a583e rf49f16c 35 35 36 36 /** Maximum active async calls per thread */ 37 #define IPC_MAX_ASYNC_CALLS 4 37 #ifdef CONFIG_DEBUG 38 # define IPC_MAX_ASYNC_CALLS 4 39 #else 40 # define IPC_MAX_ASYNC_CALLS 4000 41 #endif 38 42 39 43 /* Flags for calls */ -
generic/src/console/klog.c
r06a583e rf49f16c 42 42 SPINLOCK_INITIALIZE(klog_lock); 43 43 44 /** Initialize kernel loggin facility44 /** Initialize kernel logging facility 45 45 * 46 * Allocate pages that are to be shared if uspace for console data 46 * Allocate pages that are to be shared with uspace for console data. 47 * The shared area is a circular buffer. Userspace application may 48 * be notified on new data with indication of position and size 49 * of the data within the circular buffer. 47 50 */ 48 51 void klog_init(void)
Note:
See TracChangeset
for help on using the changeset viewer.