[L4alpha-cvscommit] CVS: L4Alpha Makefile.conf,1.13,1.14
Status: Beta
Brought to you by:
dpotts
|
From: Daniel P. <dp...@us...> - 2002-02-13 06:42:14
|
Update of /cvsroot/l4alpha/L4Alpha In directory usw-pr-cvs1:/tmp/cvs-serv4834 Modified Files: Makefile.conf Log Message: Interrupt mask and unmask functionality When you do a l4_ipc_receive on your registered interrupt, it will enable the interrupt pin to the cpu. When the kernel recieves this and passes it on to you, it will disable (mask) this interrupt and pass it on to you. This prevents some race conditions that were occuring. Breaks the Ruffian port. Index: Makefile.conf =================================================================== RCS file: /cvsroot/l4alpha/L4Alpha/Makefile.conf,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Makefile.conf 2 Jan 2002 04:08:45 -0000 1.13 --- Makefile.conf 13 Feb 2002 06:42:07 -0000 1.14 *************** *** 28,33 **** L4BL := $(L4ROOT)/../L4Alpha-bl/smp_l4bl.nh else ! L4BL := $(L4ROOT)/../L4Alpha-bl/ruffian_l4bl ! # L4BL := $(L4ROOT)/../L4Alpha-bl/l4bl.nh endif --- 28,33 ---- L4BL := $(L4ROOT)/../L4Alpha-bl/smp_l4bl.nh else ! # L4BL := $(L4ROOT)/../L4Alpha-bl/ruffian_l4bl ! L4BL := $(L4ROOT)/../L4Alpha-bl/l4bl.nh endif |