Search found 4 matches
- Tue May 05, 2009 4:45 pm
- Forum: Beginning OS Development
- Topic: Totorial 20
- Replies: 13
- Views: 61984
Re: Totorial 20
However long it takes, we all appreciate it!
- Sun Mar 15, 2009 4:35 pm
- Forum: Beginning OS Development
- Topic: Build, rebuild problem
- Replies: 3
- Views: 20534
Re: Build, rebuild problem
I had this problem too, also with demo12. I persuaded it to compile by setting "Linker -> Input -> Ignore all default libraries" to No for Kernel/Lib, but I'm not sure if that's a good idea. The _aullshr function is used when a uint64 is shifted right (I think it stands for Arithmetic Unsigned Long ...
- Tue Feb 10, 2009 2:17 am
- Forum: Beginning OS Development
- Topic: Tutorial Error's Thread
- Replies: 2
- Views: 16589
- Thu Dec 04, 2008 8:48 pm
- Forum: Beginning OS Development
- Topic: using all 4 CPU cores....
- Replies: 6
- Views: 33761
The operating system needs to support multi-threading and it needs to know how to schedule threads to run on different cores. Then the application needs to be running multiple threads. If the application uses 4 threads then in theory it could run on all 4 cores at once, but in reality a multi-thread...