diff options
author | guanglei <guanglei> | 2006-05-25 08:05:12 +0000 |
---|---|---|
committer | guanglei <guanglei> | 2006-05-25 08:05:12 +0000 |
commit | 0c8218db09676f097da5a5643482b3b8a655dd80 (patch) | |
tree | 7c073874cc0f2cb51448a53235e6e4f8f30af04a /runtime | |
parent | a44a0785c9869062b431573678237c5a646a71a7 (diff) | |
download | systemtap-steved-0c8218db09676f097da5a5643482b3b8a655dd80.tar.gz systemtap-steved-0c8218db09676f097da5a5643482b3b8a655dd80.tar.xz systemtap-steved-0c8218db09676f097da5a5643482b3b8a655dd80.zip |
src/tapset/LKET/*.stp:
explicitly add type qualifier for different arch
to make _stp_vsnprintf get the argument by va_arg correctly
src/tapset/scheduler.stp:
add prev_task and next_task variable
src/stapprobes.5.in:
add lket (5) in the "SEE ALSO"
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/lket/b2a/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lket/b2a/Makefile b/runtime/lket/b2a/Makefile index 3cb39c8a..1e3780c7 100644 --- a/runtime/lket/b2a/Makefile +++ b/runtime/lket/b2a/Makefile @@ -1,5 +1,5 @@ all: - gcc -O2 -D_GNU_SOURCE -Wall lket_b2a.c -o b2a `pkg-config --cflags --libs glib-2.0` + gcc -O2 -D_GNU_SOURCE -Wall lket_b2a.c -o lket-b2a `pkg-config --cflags --libs glib-2.0` clean: - rm -f b2a + rm -f lket-b2a |