svn commit: r276411 - user/nwhitehorn/kboot/powerpc/kboot

Nathan Whitehorn nwhitehorn at FreeBSD.org
Tue Dec 30 16:22:21 UTC 2014


Author: nwhitehorn
Date: Tue Dec 30 16:22:20 2014
New Revision: 276411
URL: https://svnweb.freebsd.org/changeset/base/276411

Log:
  Use the right syscall number for select().

Modified:
  user/nwhitehorn/kboot/powerpc/kboot/host_syscall.S

Modified: user/nwhitehorn/kboot/powerpc/kboot/host_syscall.S
==============================================================================
--- user/nwhitehorn/kboot/powerpc/kboot/host_syscall.S	Tue Dec 30 14:50:03 2014	(r276410)
+++ user/nwhitehorn/kboot/powerpc/kboot/host_syscall.S	Tue Dec 30 16:22:20 2014	(r276411)
@@ -40,7 +40,7 @@ ENTRY(host_gettimeofday)
 	blr
 
 ENTRY(host_select)
-	li %r0, 82 # SYS_select
+	li %r0, 142 # SYS_select
 	sc
 	blr
 


More information about the svn-src-user mailing list