Menu

#54 Module compilation problem

open
nobody
5
2003-09-22
2003-09-22
No

there is (I think) a wrong definition macro
save_flags() in file include/asm-um/system-generic.h

--cut--
#define __save_flags(x) do { (flags) = get_signals();
} while(0)
--cut--

and should be
--cut--
#define __save_flags(x) do { (x) = get_signals(); }
while(0)
--cut--

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.