diff options
author | David Smith <dsmith@redhat.com> | 2009-05-06 12:25:02 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-05-06 12:25:02 -0500 |
commit | 4a8c28f93fa29e47c604e80e383c826070d6c383 (patch) | |
tree | 4aaea5111b6461f39e22d9bae289456429906028 /runtime/transport/control.c | |
parent | 9b23198d73b782bc05dc2b834c7db3afbdefda86 (diff) | |
download | systemtap-steved-4a8c28f93fa29e47c604e80e383c826070d6c383.tar.gz systemtap-steved-4a8c28f93fa29e47c604e80e383c826070d6c383.tar.xz systemtap-steved-4a8c28f93fa29e47c604e80e383c826070d6c383.zip |
Start of support for older transport and cleanup.
* runtime/transport/control.c: Added inclusion of linux/delay.h to get
declaration of msleep().
* runtime/transport/relay_v2.c: New skeleton file for transport version 2.
* runtime/transport/ring_buffer.c: Cleanup.
* runtime/transport/transport.c: Ditto.
Diffstat (limited to 'runtime/transport/control.c')
-rw-r--r-- | runtime/transport/control.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/transport/control.c b/runtime/transport/control.c index 7626305a..4e07a0a7 100644 --- a/runtime/transport/control.c +++ b/runtime/transport/control.c @@ -12,6 +12,7 @@ #include "control.h" #include "../mempool.c" #include "symbols.c" +#include <linux/delay.h> static _stp_mempool_t *_stp_pool_q; static struct list_head _stp_ctl_ready_q; |