15 lines
421 B
C
15 lines
421 B
C
|
#ifndef _BLOCKDRIVER_CONST_H
|
||
|
#define _BLOCKDRIVER_CONST_H
|
||
|
|
||
|
/* Maximum number of devices supported. */
|
||
|
#define MAX_DEVICES 32
|
||
|
|
||
|
/* The maximum number of worker threads per device. */
|
||
|
#define MAX_WORKERS 32
|
||
|
|
||
|
#define MAX_THREADS (MAX_DEVICES * MAX_WORKERS) /* max nr of threads */
|
||
|
#define MAIN_THREAD (MAX_THREADS) /* main thread ID */
|
||
|
#define SINGLE_THREAD (0) /* single-thread ID */
|
||
|
|
||
|
#endif /* _BLOCKDRIVER_CONST_H */
|