C++ in the Linux Kernel
리눅스 커널 관련 해서 검색 하다 눈에 띄어서 링크 걸어 봅니다.
리눅스 커널안에서 C++를 사용할수 있게 하는 패치라는군요.
링크 : http://netlab.ru.is/exception/LinuxCXX.shtml
The code is installed by applying a patch to the Linux kernel and enables the full use of C++ using the GNU g++ compiler. Programmers that have used C++ in Linux kernel modules have primarily been using classes and virtual functions, but not global constructors. dynamic type checking and exceptions. Using even this small part of C++ requires each programmer to write some supporting routines. Using the rest of C++ includes porting the C++ ABI that accompanies GNU g++ to the Linux kernel, and to enable global constructors and destructors.
흠 그리고 읽어 보니 리눅스 커널안에서 exception도 쓸수 있게 연구하는 모양입니다.
그냥 흥미 삼아 올려봅니다.