Changeset bbf159a in mainline for uspace/srv/net/tl/tcp/tcp_type.h


Ignore:
Timestamp:
2011-12-13T17:06:25Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7a8c1c4e
Parents:
0d29e0cd
Message:

Eliminate busy waiting when TCP send buffer is full.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/tcp_type.h

    r0d29e0cd rbbf159a  
    204204        /** Send buffer contains FIN */
    205205        bool snd_buf_fin;
     206        /** Send buffer lock */
     207        fibril_mutex_t snd_buf_lock;
     208        /** Send buffer CV. Broadcast when space is made available in buffer */
     209        fibril_condvar_t snd_buf_cv;
    206210
    207211        /** Send unacknowledged */
Note: See TracChangeset for help on using the changeset viewer.