Sponsored Content
Full Discussion: UNIX flavours
Contact Us Post Here to Contact Site Administrators and Moderators UNIX flavours Post 4795 by Neo on Tuesday 31st of July 2001 05:29:05 PM
Old 07-31-2001
OK. Let's see what shapes up during our quest to build the FAQ. Sounds like good high-level FAQ topics. If you want to mine the forums and search for good threads on one of your suggested high-level topics, feel free to move out and let me know what you find or think next.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Newbie question about unix flavours

Hi, I am newbie to unix. I am been immensily impressed by this forum. I have installed sun solaris in my pc and started learning unix. The question is, If i know one unix flavour (say sun solaris) is that i can claim, i know all the unix and linux flavours. Can i be able to work on other vendor... (3 Replies)
Discussion started by: Balaji
3 Replies

2. Shell Programming and Scripting

Differences in awk between UNIX flavours

Hi, I've been charged with the task of finding out whether the scripts which we use on our current DYNIX (Sequent) UNIX box will continue to run happily on our soon-to-be-installed Sun Solaris box. I'm fairly certain that they'll be OK, but I've heard mutterings about awk running differently... (2 Replies)
Discussion started by: pbritta
2 Replies

3. Solaris

Difference b/w flavours

Hi.. I am totally confused..could anyone tell me how different is Sun version of unix different from that of HP, IBM(AIX) and other flavours. Balaji (2 Replies)
Discussion started by: balaji_prk
2 Replies

4. UNIX for Dummies Questions & Answers

O S flavours ...which is which

Does anyone know how to find out what flavour of Unix "Data General" is closest too.. heres what I need to do, I need to install one of the available free flavours on my Intel Pc at home, So as I can transfer all my shell scripts over without the need for re-working them...but I have no idea how to... (0 Replies)
Discussion started by: Gerry405
0 Replies

5. UNIX for Dummies Questions & Answers

Different flavours of Unix

Hi all, I would like to know why is there so many different kind of unix systems like IBM AIX, SUN Solaris and so on.. What are the issues that we would considering choosing a Unix system? Newbie to Unix, thus this question (2 Replies)
Discussion started by: vincente
2 Replies

6. UNIX for Advanced & Expert Users

Where to download unix not unix flavours like ubuntu, redhat etc.

I checked unix.org but did not find any link where i can download basic unix flavour. any idea from where i can download unix. thanks in advance. - nilesh (14 Replies)
Discussion started by: ynilesh
14 Replies

7. Shell Programming and Scripting

Flavours of shell?

It's a little while since I used Linux in anger but when I did, Bourne shell (/bin/sh) was actually Bash (/bin/bash) in disguise :confused: - I had some native Solaris Bourne scripts that didn't want to work quite right on Linux. Is this still the case? Also, for similar reasons, is Korn shell on... (3 Replies)
Discussion started by: JerryHone
3 Replies

8. AIX

Automate ssh between different flavours of ssh

Hiya, I want to automate ssh between two servers (Server A and Server B) and currently facing two problems. I am able to automate ssh between same SSH versions but unable to do so for following conditions. 1. SSH versions are different on Server A and Server B. 2. Username is different on... (1 Reply)
Discussion started by: kamitsin
1 Replies

9. Shell Programming and Scripting

File Transfer from Window server to UNIX and UNIX to UNIX

Dear All, Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way. I would request no samba client. (4 Replies)
Discussion started by: yadavricky
4 Replies
multithreading_support(3)					       Coin						 multithreading_support(3)

NAME
multithreading_support - Multithreading Support in Coin The support in Coin for using multiple threads in application programs and the Coin library itself, consists of two main features: o Coin provides platform-independent thread-handling abstraction classes. These are classes that the application programmer can freely use in her application code to start new threads, control their execution, work with mutexes and do other tasks related to handling multiple threads. The classes in question are SbThread, SbMutex, SbStorage, SbBarrier, SbCondVar, SbFifo, SbThreadAutoLock, SbRWMutex, and SbTypedStorage. See their respective documentation for the detailed information. The classes fully hides the system-specific implementation, which is either done on top of native Win32 (if on Microsoft Windows), or over POSIX threads (on UNIX and UNIX-like systems). o The other aspect of our multi-threading support is that Coin can be specially configured so that rendering traversals of the scene graph are done in a thread-safe manner. This means e.g. that it is possible to have Coin render the scene in parallel on multiple CPUs for multiple rendering pipes, to better take advantage of such high-end systems (like CAVE environments, for instance). Thread-safe render traversals are off by default, because there is a small overhead involved which would make rendering (very) slightly slower on single-threaded invocations. To get a Coin library built with thread-safe rendering, one must actively re-configure Coin and build a special, local version. For configure-based builds (UNIX and UNIX-like systems, or with Cygwin on Microsoft Windows) this is done with the option '--enable-threadsafe' to Autoconf configure. For how to change the configuration and re-build with Visual Studio, get in touch with us at 'coin- support@coin3d.org'. There are some restrictions and other issues which it is important to be aware of: o We do not yet provide any support for binding the multi-threaded rendering support into the SoQt / SoWin / etc GUI bindings, and neither do we provide bindings against any specific library that handles multi-pipe rendering. This means the application programmer will have to possess some expertise, and put in some effort, to be able to utilize multi-pipe rendering with Coin. o Rendering traversals is currently the only operation which we publicly support to be thread-safe. There are other aspects of Coin that we know are thread-safe, like most other action traversals beside just rendering, but we make no guarantees in this regard. o Be careful about using a separate thread for changing Coin structures versus what is used for the application's GUI event thread. We are aware of at least issues with Qt (and thereby SoQt), where you should not modify the scene graph in any way in a thread separate from the main Qt thread. This because it will trigger operations where Qt is not thread-safe. Since: Coin 2.0 Version 3.1.3 Wed May 23 2012 multithreading_support(3)
All times are GMT -4. The time now is 05:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy