diff options
author | hunt <hunt> | 2005-05-19 05:52:00 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-05-19 05:52:00 +0000 |
commit | 64b2f83b365188286fd759833b5d4d78269779d1 (patch) | |
tree | 512ac809dc105d6b2a23e4de418ef67774837f68 | |
parent | df41fe17efabf2f33b13b5dab246748e1cf72a4e (diff) | |
download | systemtap-steved-64b2f83b365188286fd759833b5d4d78269779d1.tar.gz systemtap-steved-64b2f83b365188286fd759833b5d4d78269779d1.tar.xz systemtap-steved-64b2f83b365188286fd759833b5d4d78269779d1.zip |
* runtime.h: Always include string.c.
-rw-r--r-- | runtime/ChangeLog | 11 | ||||
-rw-r--r-- | runtime/runtime.h | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index c78a7bca..7519e701 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,14 @@ +2005-05-18 Martin Hunt <hunt@redhat.com> + + * print.c: All functions except _stp_print_flush() are + now macros which use _stp_stdout. + + * string.c: Add _stp_stdout support. Data written to + _stp_stdout is automatically flushed when the print buffer + is full. + + * runtime.h: Always include string.c. + 2005-05-17 Martin Hunt <hunt@redhat.com> * map.c (needed_space): Use do_div(). diff --git a/runtime/runtime.h b/runtime/runtime.h index d420fc1f..5937ec5b 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -30,5 +30,7 @@ static unsigned n_subbufs = 4; static unsigned subbuf_size = 65536; #include "print.c" +#include "string.c" + #endif /* _RUNTIME_H_ */ |