Displaying 2 results from an estimated 2 matches for "releng_4_".
Did you mean:
releng_4
2003 Jun 13
2
exact difference between RELENG_4, RELENG_4_5 . . . RELENG_4_8
Read the documentation on the meaning of the various 4.X tags, and am
not sure what is meant by this:
"The release branch for FreeBSD-4.6 and FreeBSD-4.6.2, used only for
security advisories and other seriously critical fixes."
Similar descriptions are used for the other RELENG_4_X tags.
If I specify RELENG_4 will cvsup also include RELENG_4_3 to RELENG_4_8?
Sorry folks - I'm just getting wet behind the ears with cvsup.
--Richard
2003 Aug 11
1
Kernel build fails (RELENG_4_5)
...l.h -elf -mpreferred-stack-boundary=2 /usr/src/sys/kern/sys_process.c
> /usr/src/sys/kern/sys_process.c: In function `ptrace':
> /usr/src/sys/kern/sys_process.c:338: `data' undeclared (first use in this function)
...
> *** Error code 1
This looks like it fixes the buildkernel on RELENG_4_5 branch (attached).
BMS
-------------- next part --------------
--- sys_process.c.bms Mon Aug 11 09:22:08 2003
+++ sys_process.c Mon Aug 11 09:22:28 2003
@@ -335,7 +335,7 @@
case PT_CONTINUE:
case PT_DETACH:
/* Zero means do not send any signal */
- if (data < 0 || data > _SIG_MAXSI...