FreeBSD Bugzilla – Attachment 186143 Details for
Bug 219399
System panics after several hours of 14-threads-compilation orgies using poudriere on AMD Ryzen...
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
program to print the address of the signal trampoline
sigtramp.c (text/x-csrc), 408 bytes, created by
Don Lewis
on 2017-09-07 06:42:42 UTC
(
hide
)
Description:
program to print the address of the signal trampoline
Filename:
MIME Type:
Creator:
Don Lewis
Created:
2017-09-07 06:42:42 UTC
Size:
408 bytes
patch
obsolete
>#include <stdio.h> >#include <sys/sysctl.h> >#include <unistd.h> >#include <errno.h> >int >main() >{ > int name[4]; > void *sigtramp = NULL; > size_t len = sizeof(sigtramp); > int err; > > name[0] = CTL_KERN; > name[1] = KERN_PROC; > name[2] = KERN_PROC_SIGTRAMP; > name[3] = getpid(); > > printf("%ld\n", len); > err = sysctl(name, 4, &sigtramp, &len, NULL, 0); > printf("%d %d %p %ld\n", err, errno, sigtramp, len); >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 219399
:
182736
|
183054
|
184037
|
184051
|
184539
|
184542
|
184641
|
184707
|
184714
|
185022
| 186143