Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F92152
D7797.id17641.diff
All Users
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D7797.id17641.diff
View Options
diff --git a/scripts/__init_script__.php b/scripts/__init_script__.php
--- a/scripts/__init_script__.php
+++ b/scripts/__init_script__.php
@@ -1,5 +1,14 @@
<?php
+function __phutil_signal_handler__($signal_number) {
+ $e = new Exception();
+ $pid = getmypid();
+ // Some phabricator daemons may not be attached to a terminal.
+ Filesystem::writeFile(sys_get_temp_dir() . "/phabricator_backtrace_" . $pid,
+ $e->getTraceAsString());
+
+}
+
function __phutil_init_script__() {
// Adjust the runtime language configuration to be reasonable and inline with
// expectations. We do this first, then load libraries.
@@ -65,6 +74,15 @@
require_once $root.'/src/__phutil_library_init__.php';
PhutilErrorHandler::initialize();
+
+ if (function_exists('pcntl_signal')) {
+ if (!pcntl_signal(SIGHUP, "__phutil_signal_handler__")) {
+ echo "WARNING: Unable to register SIGHUP handler\n";
+ }
+ } else {
+ echo "WARNING: function pcntl_signal not available. ";
+ echo "Not registering SIGHUP handler\n";
+ }
}
__phutil_init_script__();
File Metadata
Details
Attached
Mime Type
text/x-diff
Storage Engine
amazon-s3
Storage Format
Raw Data
Storage Handle
phabricator/xs/fd/ndlm72a2w2geamzq
Default Alt Text
D7797.id17641.diff (1 KB)
Attached To
Mode
D7797: Added a SIGABRT handler that will write a stack trace to /tmp/phabricator_backtrace_[PID]
Attached
Detach File
Event Timeline
Log In to Comment