Changes in uspace/srv/ns/service.c [b72efe8:007e6efa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/service.c
rb72efe8 r007e6efa 35 35 #include <assert.h> 36 36 #include <errno.h> 37 #include <stdio.h>38 #include <malloc.h>39 37 #include "service.h" 40 38 #include "ns.h" … … 123 121 } pending_conn_t; 124 122 125 static li st_t pending_conn;123 static link_t pending_conn; 126 124 127 125 int service_init(void) … … 141 139 void process_pending_conn(void) 142 140 { 141 link_t *cur; 142 143 143 loop: 144 list_foreach(pending_conn, cur) {144 for (cur = pending_conn.next; cur != &pending_conn; cur = cur->next) { 145 145 pending_conn_t *pr = list_get_instance(cur, pending_conn_t, link); 146 146
Note:
See TracChangeset
for help on using the changeset viewer.