Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Dec 2013 10:32:18 +0000 (UTC)
From:      Peter Holm <pho@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r259164 - user/pho/stress2/misc
Message-ID:  <201312101032.rBAAWIhq087543@svn.freebsd.org>

index | next in thread | raw e-mail

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


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312101032.rBAAWIhq087543>