~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to kernel/generic/include/config.h

  • Committer: Jiri Svoboda
  • Date: 2012-11-11 21:31:03 UTC
  • mfrom: (1527.1.178 mainline)
  • Revision ID: jiri@wiwaxia-20121111213103-314bmkettwvlwj97
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
#define CONFIG_INIT_TASKS        32
48
48
#define CONFIG_TASK_NAME_BUFLEN  32
 
49
#define CONFIG_TASK_ARGUMENTS_BUFLEN 64
 
50
 
 
51
/**
 
52
 * Maximum buffer size allowed for IPC_M_DATA_WRITE and IPC_M_DATA_READ
 
53
 * requests.
 
54
 */
 
55
#define DATA_XFER_LIMIT  (64 * 1024)
49
56
 
50
57
#ifndef __ASM__
51
58
 
55
62
        uintptr_t paddr;
56
63
        size_t size;
57
64
        char name[CONFIG_TASK_NAME_BUFLEN];
 
65
        char arguments[CONFIG_TASK_ARGUMENTS_BUFLEN];
58
66
} init_task_t;
59
67
 
60
68
typedef struct {