svn commit: r313146 - head/lib/libc/aarch64/gen

Andrew Turner andrew at FreeBSD.org
Fri Feb 3 11:51:08 UTC 2017


Author: andrew
Date: Fri Feb  3 11:51:06 2017
New Revision: 313146
URL: https://svnweb.freebsd.org/changeset/base/313146

Log:
  Fix the comment showing the meaning of the first argument to sigprocmask.
  
  Sponsored by:	ABT Systems Ltd

Modified:
  head/lib/libc/aarch64/gen/setjmp.S

Modified: head/lib/libc/aarch64/gen/setjmp.S
==============================================================================
--- head/lib/libc/aarch64/gen/setjmp.S	Fri Feb  3 11:47:57 2017	(r313145)
+++ head/lib/libc/aarch64/gen/setjmp.S	Fri Feb  3 11:51:06 2017	(r313146)
@@ -82,7 +82,7 @@ ENTRY(longjmp)
 	/* Restore the signal mask */
 	mov	x2, #0				/* oset */
 	add	x1, x0, #(_JB_SIGMASK * 8)	/* set */
-	mov	x0, #3				/* SIG_BLOCK */
+	mov	x0, #3				/* SIG_SETMASK */
 	bl	sigprocmask
 
 	ldr	x1, [sp, #16]


More information about the svn-src-head mailing list