Changeset dc747e3 in mainline for generic/src/console/kconsole.c
- Timestamp:
- 2005-12-15T10:27:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dd2561
- Parents:
- 3fc03fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/console/kconsole.c
r3fc03fd rdc747e3 66 66 */ 67 67 68 spinlock_t cmd_lock; /**< Lock protecting command list. */69 link_t cmd_head; /**< Command list. */68 SPINLOCK_INITIALIZE(cmd_lock); /**< Lock protecting command list. */ 69 link_t cmd_head; /**< Command list. */ 70 70 71 71 static cmd_info_t *parse_cmdline(char *cmdline, size_t len); … … 78 78 int i; 79 79 80 spinlock_initialize(&cmd_lock, "kconsole_cmd");81 80 list_initialize(&cmd_head); 82 81
Note:
See TracChangeset
for help on using the changeset viewer.