From 2f2cd79e084223f644af5bb88ff19fd4f739f8b7 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 27 Jan 2013 15:52:58 +0000 Subject: Add a start hook that can be setup to call a function in the context of a new thread before the new threads main() has been called. git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5571 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/nxflat/tests/signal/signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/examples/nxflat/tests') diff --git a/apps/examples/nxflat/tests/signal/signal.c b/apps/examples/nxflat/tests/signal/signal.c index c5ea6bdcc..ac03f6d33 100644 --- a/apps/examples/nxflat/tests/signal/signal.c +++ b/apps/examples/nxflat/tests/signal/signal.c @@ -161,7 +161,7 @@ int main(int argc, char **argv) /* Send SIGUSR1 to ourselves via kill() */ printf("Kill-ing SIGUSR1 from pid=%d\n", mypid); - status = kill(0, SIGUSR1); + status = kill(mypid, SIGUSR1); if (status != 0) { fprintf(stderr, "Failed to kill SIGUSR1, errno=%d\n", errno); -- cgit v1.2.3