openbsd-ports/www/chromium/patches/patch-base_process_util_posix_cc
robert 089acff6fe update to the latest stable version which is now 11.0.696.60
+ switch from using system sqlite to the bundled one because they have
  many modifications that are needed
+ add a new mirror for the distfile because the google one is utterly slow
2011-04-29 13:18:01 +00:00

18 lines
718 B
Plaintext

$OpenBSD: patch-base_process_util_posix_cc,v 1.3 2011/04/29 13:18:01 robert Exp $
--- base/process_util_posix.cc.orig Tue Apr 26 10:01:34 2011
+++ base/process_util_posix.cc Thu Apr 28 11:17:49 2011
@@ -103,11 +103,11 @@ int WaitpidWithTimeout(ProcessHandle handle, int64 wai
return status;
}
-void StackDumpSignalHandler(int signal, siginfo_t* info, ucontext_t* context) {
+void StackDumpSignalHandler(int signal, siginfo_t* info /*, ucontext_t* context */) {
LOG(ERROR) << "Received signal " << signal;
debug::StackTrace().PrintBacktrace();
- // TODO(shess): Port to Linux.
+ // TODO(shess): Port to Linux and OpenBSD.
#if defined(OS_MACOSX)
// TODO(shess): Port to 64-bit.
#if ARCH_CPU_32_BITS