svn commit: r259164 - user/pho/stress2/misc

Peter Holm pho at FreeBSD.org
Tue Dec 10 10:32:19 UTC 2013


Author: pho
Date: Tue Dec 10 10:32:18 2013
New Revision: 259164
URL: http://svnweb.freebsd.org/changeset/base/259164

Log:
  thr_new(2) is known to fail on versions older that 8.4-STABLE.
  Add unused (custom) syscall to the ignore list.
  
  Sponsored by:	EMC / Isilon storage division

Modified:
  user/pho/stress2/misc/syscall4.sh

Modified: user/pho/stress2/misc/syscall4.sh
==============================================================================
--- user/pho/stress2/misc/syscall4.sh	Tue Dec 10 09:50:33 2013	(r259163)
+++ user/pho/stress2/misc/syscall4.sh	Tue Dec 10 10:32:18 2013	(r259164)
@@ -125,11 +125,15 @@ static int ignore[] = {
 	111,			/* 111 is old sigsuspend */
 	SYS_shutdown,
 	SYS___syscall,
+	216,			/* custom syscall */
 	SYS_rfork,
 	SYS_sigsuspend,
 	SYS_mac_syscall,
 	SYS_sigtimedwait,
 	SYS_sigwaitinfo,
+#if       __FreeBSD_version <  804500
+	SYS_thr_new,
+#endif
 #if       __FreeBSD_version >= 900041
 	SYS_pdfork,
 #endif


More information about the svn-src-user mailing list