Changeset f303f2cf in mainline for uspace/srv/net/tcp/tqueue.c
- Timestamp:
- 2014-07-17T08:38:22Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 071a2c60
- Parents:
- 78192cc7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/tqueue.c
r78192cc7 rf303f2cf 59 59 static void tcp_tqueue_timer_clear(tcp_conn_t *conn); 60 60 61 #include <stdio.h>62 61 int tcp_tqueue_init(tcp_tqueue_t *tqueue, tcp_conn_t *conn) 63 62 { 64 printf("tcp_tqueue_init\n");65 63 tqueue->conn = conn; 66 64 tqueue->timer = fibril_timer_create(&conn->lock); … … 80 78 void tcp_tqueue_fini(tcp_tqueue_t *tqueue) 81 79 { 82 printf("tcp_tqueue_fini\n");83 80 if (tqueue->timer != NULL) { 84 81 fibril_timer_destroy(tqueue->timer);
Note:
See TracChangeset
for help on using the changeset viewer.