diff options
author | David Smith <dsmith@redhat.com> | 2009-03-04 12:51:29 -0600 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-03-04 12:51:29 -0600 |
commit | 176b56b261a711822f35e36ec5e2d5e0758770de (patch) | |
tree | 68a40f49fdf1e4304cc8e61f33653e0d3e5911f8 /runtime/runtime.h | |
parent | 64c962fed5f50a7f82f8b570e000cdcff757862b (diff) | |
download | systemtap-steved-176b56b261a711822f35e36ec5e2d5e0758770de.tar.gz systemtap-steved-176b56b261a711822f35e36ec5e2d5e0758770de.tar.xz systemtap-steved-176b56b261a711822f35e36ec5e2d5e0758770de.zip |
Start of new ring_buffer transport.
2009-03-04 David Smith <dsmith@redhat.com>
* runtime.h: Added _stp_exit() prototype.
* transport/ring_buffer.c: New file.
* transport/transport.c: Removed unneeded utt_trace lines.
Includes transport/ring_buffer.c.
(_stp_transport_fs_init): Calls _stp_transport_data_fs_init().
(_stp_transport_fs_close): Calls _stp_transport_data_fs_close().
* transport/transport.h: Added prototypes.
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r-- | runtime/runtime.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index 25456beb..28283db6 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -47,6 +47,8 @@ static void _stp_dbug (const char *func, int line, const char *fmt, ...); static void _stp_error (const char *fmt, ...); static void _stp_warn (const char *fmt, ...); +static void _stp_exit(void); + #include "debug.h" /* atomic globals */ |