[xtensa-cvscommit] linux/arch/xtensa/kernel signal.c,1.8,1.9
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-05-02 17:16:41
|
Update of /cvsroot/xtensa/linux/arch/xtensa/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv28143/arch/xtensa/kernel Modified Files: signal.c Log Message: Offer a sigcontext as the second argument to signal handlers. Index: signal.c =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/kernel/signal.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** signal.c 29 Apr 2003 18:30:33 -0000 1.8 --- signal.c 2 May 2003 17:16:37 -0000 1.9 *************** *** 614,618 **** */ set_thread_state(regs, frame, frame->retcode, ! ka->sa.sa_handler, signal, NULL, NULL); /* Set access mode to USER_DS. Nomenclature is outdated, but --- 614,618 ---- */ set_thread_state(regs, frame, frame->retcode, ! ka->sa.sa_handler, signal, &frame->sc, NULL); /* Set access mode to USER_DS. Nomenclature is outdated, but |