Changeset b278b4e in mainline for uspace/lib/socket/packet/packet_server.c
- Timestamp:
- 2010-10-10T19:52:27Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 10056483
- Parents:
- ae972834 (diff), eb51e31 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/socket/packet/packet_server.c
rae972834 rb278b4e 85 85 unsigned int count; 86 86 } ps_globals = { 87 .lock = { 88 .counter = 1, 89 .waiters = { 90 .prev = &ps_globals.lock.waiters, 91 .next = &ps_globals.lock.waiters, 92 } 93 }, 87 .lock = FIBRIL_MUTEX_INITIALIZER(ps_globals.lock), 94 88 .free = {NULL, NULL, NULL, NULL, NULL, NULL, NULL}, 95 89 .sizes = {PAGE_SIZE, PAGE_SIZE * 2, PAGE_SIZE * 4, PAGE_SIZE * 8, PAGE_SIZE * 16, PAGE_SIZE * 32, PAGE_SIZE * 64},
Note:
See TracChangeset
for help on using the changeset viewer.