]> sourceware.org Git - systemtap.git/commitdiff
shared library probing: bump up MULTIPLE_UPROBES to 256
authorFrank Ch. Eigler <fche@elastic.org>
Sat, 29 Nov 2008 14:28:39 +0000 (09:28 -0500)
committerFrank Ch. Eigler <fche@elastic.org>
Sat, 29 Nov 2008 14:28:39 +0000 (09:28 -0500)
tapsets.cxx

index d6be0c2d8e8bb2c55aafa353aa2deb0f6817959e..4e4d471debc55e27c985d12893635d202c62b4b8 100644 (file)
@@ -7038,7 +7038,8 @@ uprobe_derived_probe_group::emit_module_decls (systemtap_session& s)
   s.op->newline() << "#include \"task_finder.c\"";
 
   s.op->newline() << "#ifndef MULTIPLE_UPROBES";
-  s.op->newline() << "#define MULTIPLE_UPROBES 100"; // maximum possible armed uprobes per process() probe point
+  s.op->newline() << "#define MULTIPLE_UPROBES 256"; // maximum possible armed uprobes per process() probe point
+                                                    // or apprx. max number of processes mapping a shared library
   s.op->newline() << "#endif";
   s.op->newline() << "#ifndef MAXUPROBES";
   s.op->newline() << "#define MAXUPROBES (MULTIPLE_UPROBES * " << probes.size() << ")";
This page took 0.032821 seconds and 5 git commands to generate.