Changeset 03362fbd in mainline for kernel/generic/include/config.h


Ignore:
Timestamp:
2013-02-09T23:14:45Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
Children:
22dfd38
Parents:
b5d2e57 (diff), 005b765 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Conflict resulting from bool.h → stdbool.h move and ddf structs turning opaque.
Fails to boot to shell console.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/config.h

    rb5d2e57 r03362fbd  
    4545#define STACK_SIZE    ((1 << STACK_FRAMES) << PAGE_WIDTH)
    4646
     47#define STACK_SIZE_USER (1 * 1024 * 1024)
     48
    4749#define CONFIG_INIT_TASKS        32
    4850#define CONFIG_TASK_NAME_BUFLEN  32
     51#define CONFIG_TASK_ARGUMENTS_BUFLEN 64
     52
     53/**
     54 * Maximum buffer size allowed for IPC_M_DATA_WRITE and IPC_M_DATA_READ
     55 * requests.
     56 */
     57#define DATA_XFER_LIMIT  (64 * 1024)
    4958
    5059#ifndef __ASM__
     
    5665        size_t size;
    5766        char name[CONFIG_TASK_NAME_BUFLEN];
     67        char arguments[CONFIG_TASK_ARGUMENTS_BUFLEN];
    5868} init_task_t;
    5969
Note: See TracChangeset for help on using the changeset viewer.