C/C++
cpplinux.txt
Associated article: C++ Exceptions & the Linux Kernel
Tags: C/C++ Open Source Design
Published source code accompanying the article by Halld�r Isak Gylfason and G�sli Hj�lmtysson that shows how C++ kernel-level runtime support for Linux lets you use the full power of C++ in kernel-space programming.
C++ Exceptions & the Linux Kernel
by Halldór Ísak Gylfason and Gísli Hjálmtýsson
Listing One
struct task_struct {
volatile long state;
struct thread_info *thread_info;
...
#ifdef CONFIG_CXX_RUNTIME
struct {
void *caughtExceptions;
unsigned int uncaughtExceptions;
} ...


