Results 1 to 2 of 2
hello!
can i program kernel module using c++?...
- 02-23-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 3
programming kernel module in c++
hello!
can i program kernel module using c++?
- 02-23-2010 #2Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
It may be possible, but not easily feasible. C++ code requires startup initialization code that is not "kernel friendly" because kernel modules are not normal applications and processes, but are more on the order of dynamically linked in libraries of code that are accessed via jump tables and ioctl calls.
Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!


Reply With Quote