summaryrefslogtreecommitdiffstats
path: root/signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'signal.h')
-rw-r--r--signal.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/signal.h b/signal.h
index b842256a..e2cf1d5b 100644
--- a/signal.h
+++ b/signal.h
@@ -94,6 +94,34 @@ struct jmp {
unsigned long sp;
};
+#elif __PPC64__
+
+struct jmp {
+ unsigned long r1;
+ unsigned long r2;
+ unsigned long r11;
+ unsigned long r12;
+ unsigned long r13;
+ unsigned long r14;
+ unsigned long r15;
+ unsigned long r16;
+ unsigned long r17;
+ unsigned long r18;
+ unsigned long r19;
+ unsigned long r20;
+ unsigned long r21;
+ unsigned long r22;
+ unsigned long r23;
+ unsigned long r24;
+ unsigned long r25;
+ unsigned long r26;
+ unsigned long r27;
+ unsigned long r28;
+ unsigned long r29;
+ unsigned long r30;
+ unsigned long r31;
+};
+
#else
#error port me!
#endif
-1/+1 | * removed incompatibility to sysklogd in syslogd -r option parsingRainer Gerhards2007-07-201-2/+5 | * added the capability to continue trying to write log files when the fileRainer Gerhards2007-07-201-0/+7 | | | | | system is full. Functionality based on patch by Martin Schulze to sysklogd package. * fixed another memory leak on HUPing and on exiting rsyslogd again thanks toRainer Gerhards2007-07-191-3/+8 | | | | varmojfekoj for the patch * moved message object into its own set of filesRainer Gerhards2007-07-191-1028/+31 | * code cleanup (removed compiler warningsRainer Gerhards2007-07-181-134/+136 | * fixed minimal memory leak on HUP (caused by templates) thanks toRainer Gerhards2007-07-181-1/+4 | | | | varmojfekoj for the patch * applied cleanup patch by Peter VrabecRainer Gerhards2007-07-181-6/+4 | * fixed bug that caused $AllowedSenders to handle IPv6 scopes incorrectly;Rainer Gerhards2007-07-181-2/+3 | | | | | also fixed but that could grabble $AllowedSender wildcards. Thanks to mildew@gmail.com for the patch * cleaned up code. removed conditional construct where "fromHost" could notRainer Gerhards2007-07-171-8/+2 | | | | be NULL * improved AllowedSender code and portability - thanks to mildew@gmail.comRainer Gerhards2007-07-171-1/+9 | * added $FailOnChownFailure config parameterRainer Gerhards2007-07-171-12/+26 | * added config directives: $FileOwner, $FileGroup, $DirOwner, $DirGroupRainer Gerhards2007-07-171-15/+126 | * added $CreateDirs, $DebugPrintTemplateList, $ResetConfigVariablesRainer Gerhards2007-07-171-11/+36 | | | | directives * added $DirCreateMode config directiveRainer Gerhards2007-07-17