Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/socket/packet/packet_server.c

    re721462 rc69d327  
    8585        unsigned int count;
    8686} ps_globals = {
    87         .lock = FIBRIL_MUTEX_INITIALIZER(ps_globals.lock),
     87        .lock = {
     88                .counter = 1,
     89                .waiters = {
     90                        .prev = &ps_globals.lock.waiters,
     91                        .next = &ps_globals.lock.waiters,
     92                }
     93        },
    8894        .free = {NULL, NULL, NULL, NULL, NULL, NULL, NULL},
    8995        .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.