Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 EXPORT_C void psignal(int sig, const char *s)
24 if (sig < 1 || sig >= NSIG) //What about RT signal(RTMAX)
27 fprintf(stderr,"%s: Unknown signal %d\n",s,sig);
29 fprintf(stderr,"Unknown signal %d\n",sig);
34 fprintf(stderr,"%s: %s\n",s,sys_siglist[sig]);
36 fprintf(stderr,"%s\n",sys_siglist[sig]);