Changeset f49f16c in mainline for generic/include/ipc/ipc.h


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.

File:
1 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 */
Note: See TracChangeset for help on using the changeset viewer.