1
vote
1answer
140 views

How do I find the cpu the current thread is running on, for Mac and BSD?

I'm looking for a function on Mac OS and BSD that's equivalent to Linux's sched_getcpu(), and Windows' GetCurrentProcessorNumberEx() in order to implement a library for cpu-local storage. It's clearly ...
1
vote
2answers
304 views

What type of threads does OS X have?

Kernel-level threads (like Linux and some *BSD systems) or something else? If there is any difference, I'm using pthreads.
0
votes
2answers
1k views

how to get thread ID as integer on BSD in C/C++?

Does anyone know to get the current thread ID as an integer on BSD? i found this #ifdef RTHREADS 299 STD { pid_t sys_getthrid(void); } 300 STD { int sys_thrsleep(void *ident, int ...
10
votes
8answers
1k views

Kernel Scheduling for 1024 CPUs

Azul Systems has an appliance that supports thousands of cache coherent CPUs. I would love insight into what changes would need to occur to an operating system in order to schedule thousands of ...
2
votes
4answers
382 views

Is there an advantage of the operating system understanding the characteristics of how a thread may be used?

Is there an advantage of the operating system understanding the characteristics of how a thread may be used? For example, what if there were a way in Java when creating a new thread to indicate that ...
2
votes
5answers
3k views

Operating System Scheduling Algorithms

What is the best algorithm to use for scheduling an application that will support 10K concurrent threads with heavy I/O but low CPU usage? Links to papers are appreciated.