diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-11-26 13:59:53 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-11-26 13:59:53 -0500 |
commit | 8d59b39f96b89eb055d77d422a923c499d2a5fca (patch) | |
tree | c40a45b0356c97f66c4c7b2dcd262b5777c4c1be /buildrun.cxx | |
parent | 391d64d0997a41035f2af5f13d41dae00300061b (diff) | |
download | systemtap-steved-8d59b39f96b89eb055d77d422a923c499d2a5fca.tar.gz systemtap-steved-8d59b39f96b89eb055d77d422a923c499d2a5fca.tar.xz systemtap-steved-8d59b39f96b89eb055d77d422a923c499d2a5fca.zip |
safety: add paranoid call to synchronize_sched() during shutdown process
Diffstat (limited to 'buildrun.cxx')
-rw-r--r-- | buildrun.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildrun.cxx b/buildrun.cxx index c23a4747..9eeab4ba 100644 --- a/buildrun.cxx +++ b/buildrun.cxx @@ -112,6 +112,8 @@ compile_pass (systemtap_session& s) o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-uaccess.c, -DSTAPCONF_LINUX_UACCESS_H,)" << endl; o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-oneachcpu-retry.c, -DSTAPCONF_ONEACHCPU_RETRY,)" << endl; o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-dpath-path.c, -DSTAPCONF_DPATH_PATH,)" << endl; + o << module_cflags << " += $(call stap_check_build, $(SYSTEMTAP_RUNTIME)/autoconf-synchronize-sched.c, -DSTAPCONF_SYNCHRONIZE_SCHED,)" << endl; + #if 0 /* NB: For now, the performance hit of probe_kernel_read/write (vs. our * homegrown safe-access functions) is deemed undesireable, so we'll skip |