/
usr
/
share
/
systemtap
/
runtime
/
dyninst
/
/usr/share/systemtap/runtime/dyninst
mkdir
upload
Name
Size
Mode
Actions
addr-map.c
565
0644
edit
dl
rm
alloc.c
1188
0644
edit
dl
rm
arith.c
2291
0644
edit
dl
rm
common_session_state.h
6921
0644
edit
dl
rm
copy.c
4095
0644
edit
dl
rm
debug.h
413
0644
edit
dl
rm
ilog2.h
2943
0644
edit
dl
rm
io.c
4541
0644
edit
dl
rm
linux_defs.h
5602
0644
edit
dl
rm
linux_hash.h
1877
0644
edit
dl
rm
linux_types.h
654
0644
edit
dl
rm
loc2c-runtime.h
2494
0644
edit
dl
rm
map_list.h
1059
0644
edit
dl
rm
map_runtime.h
5160
0644
edit
dl
rm
namespaces.h
0
0644
edit
dl
rm
offptr.h
4788
0644
edit
dl
rm
offset_list.h
4428
0644
edit
dl
rm
perf.c
0
0644
edit
dl
rm
print.c
2700
0644
edit
dl
rm
probe_lock.h
1849
0644
edit
dl
rm
regs.c
2557
0644
edit
dl
rm
runtime.h
10292
0644
edit
dl
rm
runtime_context.h
6556
0644
edit
dl
rm
runtime_defines.h
280
0644
edit
dl
rm
session_attributes.c
1717
0644
edit
dl
rm
session_attributes.h
772
0644
edit
dl
rm
shm.c
6171
0644
edit
dl
rm
stapdyn.h
4617
0644
edit
dl
rm
stat_runtime.h
1832
0644
edit
dl
rm
sym.c
1621
0644
edit
dl
rm
task_finder.c
0
0644
edit
dl
rm
timer.c
2770
0644
edit
dl
rm
transport.c
31128
0644
edit
dl
rm
transport.h
3968
0644
edit
dl
rm
unwind.c
0
0644
edit
dl
rm
uprobes-regs.c
3163
0644
edit
dl
rm
uprobes.c
1798
0644
edit
dl
rm
uprobes.h
953
0644
edit
dl
rm
Edit:
/usr/share/systemtap/runtime/dyninst/session_attributes.c
(1717B)
// stapdyn session attribute code // Copyright (C) 2013 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 SESSION_ATTRIBUTES_C #define SESSION_ATTRIBUTES_C #include "session_attributes.h" static struct _stp_session_attributes _stp_init_session_attributes = { .log_level = 0, .suppress_warnings = 0, .stp_pid = 0, .target = 0, .tz_gmtoff = 0, .tz_name = "", .module_name = "", .outfile_name = "", }; static void stp_session_attributes_init(void) { *stp_session_attributes() = _stp_init_session_attributes; } static int stp_session_attribute_setter(const char *name, const char *value) { // Note that We start all internal variables with '@', since // that can't start a "real" variable. struct _stp_session_attributes *init = &_stp_init_session_attributes; #define set_num(field, type) \ if (strcmp(name, "@" #field) == 0) { \ char *endp = NULL; \ errno = 0; \ init->field = strto##type(value, &endp, 0); \ return (endp == value || *endp != '\0') ? \ -EINVAL : -errno; \ } #define set_string(field) \ if (strcmp(name, "@" #field) == 0) { \ size_t size = sizeof(init->field); \ size_t len = strlcpy(init->field, value, size); \ return (len < size) ? 0 : -EOVERFLOW; \ } set_num(log_level, ul); set_num(suppress_warnings, ul); set_num(stp_pid, ul); set_num(target, ul); set_num(tz_gmtoff, l); set_string(tz_name); set_string(module_name); set_string(outfile_name); #undef set_num #undef set_string return -ENOENT; } #endif // SESSION_ATTRIBUTES_C
Save
cmd:
run