patch-2.1.28 linux/arch/alpha/kernel/osf_sys.c
Next file: linux/arch/alpha/lib/csum_partial_copy.c
Previous file: linux/arch/alpha/kernel/entry.S
Back to the patch index
Back to the overall index
-  Lines: 21
-  Date:
Thu Feb 27 10:49:38 1997
-  Orig file: 
v2.1.27/linux/arch/alpha/kernel/osf_sys.c
-  Orig date: 
Sun Jan 26 04:26:39 1997
diff -u --recursive --new-file v2.1.27/linux/arch/alpha/kernel/osf_sys.c linux/arch/alpha/kernel/osf_sys.c
@@ -48,6 +48,20 @@
 extern asmlinkage unsigned long sys_brk(unsigned long);
 
 /*
+ * Brk needs to return an error.  Still support Linux's brk(0) query idiom,
+ * which OSF programs just shouldn't be doing.  We're still not quite
+ * identical to OSF as we don't return 0 on success, but doing otherwise
+ * would require changes to libc.  Hopefully this is good enough.
+ */
+asmlinkage unsigned long osf_brk(unsigned long brk)
+{
+	unsigned long retval = sys_brk(brk);
+	if (brk && brk != retval)
+		retval = -ENOMEM;
+	return retval;
+}
+ 
+/*
  * This is pure guess-work..
  */
 asmlinkage int osf_set_program_attributes(
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov