summaryrefslogtreecommitdiffstats
path: root/runtime/print.h
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2009-06-19 14:06:52 -0400
committerStan Cox <scox@redhat.com>2009-06-19 14:06:52 -0400
commitd138d3d71a1685c53cc5c2b72ed8ae64d3e012d2 (patch)
tree966ff2622c07fb84513b487482a1a1f46bae5dfc /runtime/print.h
parent45148f5b5e371ff852dbbb08d83c5e87932b372e (diff)
parenteba61c56888482553551a16ec651444a583522e0 (diff)
downloadsystemtap-steved-d138d3d71a1685c53cc5c2b72ed8ae64d3e012d2.tar.gz
systemtap-steved-d138d3d71a1685c53cc5c2b72ed8ae64d3e012d2.tar.xz
systemtap-steved-d138d3d71a1685c53cc5c2b72ed8ae64d3e012d2.zip
Merge branch 'master' of ssh://sourceware.org/git/systemtap
Diffstat (limited to 'runtime/print.h')
-rw-r--r--runtime/print.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/runtime/print.h b/runtime/print.h
new file mode 100644
index 00000000..c2731a2f
--- /dev/null
+++ b/runtime/print.h
@@ -0,0 +1,17 @@
+/* -*- linux-c -*-
+ * Copyright (C) 2009 Red Hat Inc.
+ *
+ * This file is part of systemtap, and is free software. You can
+ * redistribute it and/or modify it under the terms of the GNU General
+ * Public License (GPL); either version 2, or (at your option) any
+ * later version.
+ */
+
+#ifndef _STP_PRINT_H_
+#define _STP_PRINT_H_
+
+static int _stp_print_init(void);
+static void _stp_print_cleanup(void);
+static void *_stp_reserve_bytes(int numbytes);
+
+#endif /* _STP_PRINT_H_ */