Module Name: src
Committed By: uwe
Date: Tue Feb 27 20:24:50 UTC 2018
Modified Files:
src/tests/lib/libpthread: t_swapcontext.c
Log Message:
Drop unnecessary cast to makecontext() argument.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libpthread/t_swapcontext.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libpthread/t_swapcontext.c
diff -u src/tests/lib/libpthread/t_swapcontext.c:1.4 src/tests/lib/libpthread/t_swapcontext.c:1.5
--- src/tests/lib/libpthread/t_swapcontext.c:1.4 Tue Feb 27 20:22:31 2018
+++ src/tests/lib/libpthread/t_swapcontext.c Tue Feb 27 20:24:50 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: t_swapcontext.c,v 1.4 2018/02/27 20:22:31 uwe Exp $ */
+/* $NetBSD: t_swapcontext.c,v 1.5 2018/02/27 20:24:50 uwe Exp $ */
/*
* Copyright (c) 2012 Emmanuel Dreyfus. All rights reserved.
@@ -76,7 +76,7 @@ threadfunc(void *arg)
nctx.uc_stack.ss_sp = stack;
nctx.uc_stack.ss_size = sizeof(stack);
- makecontext(&nctx, (void *)*swapfunc, 0);
+ makecontext(&nctx, swapfunc, 0);
oself = (void *)pthread_self();
printf("before swapcontext self = %p\n", oself);