Changeset f49f16c in mainline


Ignore:
Timestamp:
2006-06-07T10:58:00Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
616f1759
Parents:
06a583e
Message:

IPC made faster in non-debug mode.

Location:
generic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • generic/include/ipc/ipc.h

    r06a583e rf49f16c  
    3535
    3636/** 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
    3842
    3943/* Flags for calls */
  • generic/src/console/klog.c

    r06a583e rf49f16c  
    4242SPINLOCK_INITIALIZE(klog_lock);
    4343
    44 /** Initialize kernel loggin facility
     44/** Initialize kernel logging facility
    4545 *
    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.
    4750 */
    4851void klog_init(void)
Note: See TracChangeset for help on using the changeset viewer.