This is a discussion on How do you determine if AIX has multithreading enabled? What happpens if u try to load a multhrithreaded library using dlopen() and OS does not support it? within the AIX Operating System forums, part of the Unix Operating Systems category; --> Hi all, How do you determine if AIX has multithreading enabled? and what happpens if u try to load ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi all, How do you determine if AIX has multithreading enabled? and what happpens if u try to load a multhrithreaded library using dl_open() and OS does not support it? Thanks in advance, Harsha |
| ||||
| harshanand.nayak@gmail.com wrote: > Hi all, How do you determine if AIX has multithreading enabled? and > what happpens if u try to load a multhrithreaded library using > dl_open() and OS does not support it? Thanks in advance, Harsha > Since AIX 4.1, threads have existed and are available by default. If your non-threaded program dynamically loads a threaded module, and the module has a direct dependency upon libpthreads, then the pthreads library will get loaded and the threading environment in your process will start up. Bang, you're a threaded application. |