X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=libtracing%2Frelay.h;h=cd3baae3f3d180c81dcc585e8d89c1c89e3772e6;hb=3a7b90de71f2a82f73f06fb14a7b77805aea1064;hp=80f0b6bf69ba383cb3a1505745a4a90286d152e8;hpb=98963de4a2dfae12d8aafa0f9a6d97cf4a44e12d;p=ust.git diff --git a/libtracing/relay.h b/libtracing/relay.h index 80f0b6b..cd3baae 100644 --- a/libtracing/relay.h +++ b/libtracing/relay.h @@ -59,6 +59,7 @@ struct rchan_buf { //ust// unsigned int page_count; /* number of current buffer pages */ unsigned int finalized; /* buffer has been finalized */ //ust// unsigned int cpu; /* this buf's cpu */ + int shmid; /* the shmid of the buffer data pages */ } ____cacheline_aligned; /* @@ -334,16 +335,24 @@ struct ltt_channel_buf_struct { */ local_t events_lost; local_t corrupted_subbuffers; - spinlock_t full_lock; /* - * buffer full condition spinlock, only - * for userspace tracing blocking mode - * synchronization with reader. - */ +//ust// spinlock_t full_lock; /* +//ust// * buffer full condition spinlock, only +//ust// * for userspace tracing blocking mode +//ust// * synchronization with reader. +//ust// */ //ust// wait_queue_head_t write_wait; /* //ust// * Wait queue for blocking user space //ust// * writers //ust// */ - atomic_t wakeup_readers; /* Boolean : wakeup readers waiting ? */ +//ust// atomic_t wakeup_readers; /* Boolean : wakeup readers waiting ? */ + /* one byte is written to this pipe when data is available, in order + to wake the consumer */ + /* portability: Single byte writes must be as quick as possible. The kernel-side + buffer must be large enough so the writer doesn't block. From the pipe(7) + man page: Since linux 2.6.11, the pipe capacity is 65536 bytes. */ + int data_ready_fd_write; + /* the reading end of the pipe */ + int data_ready_fd_read; } ____cacheline_aligned; int ltt_do_get_subbuf(struct rchan_buf *buf, struct ltt_channel_buf_struct *ltt_buf, long *pconsumed_old);