File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Linux / UNIX and the fly likes accessing library Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » Linux / UNIX
Reply Bookmark "accessing library" Watch "accessing library" New topic
Author

accessing library

swapnel surade
Ranch Hand

Joined: Mar 05, 2009
Posts: 122
I need to accept many request on single .so file.
When I uses the file for any operation after that I'm unable to use the .so file till first operation is get finished.
but I want to implement parallel operation for that.
After some searching I got 1 function select().

is anybody know how to achieve this ?
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 11740

".so" stands for Shared Object, and it's the Unix/Linux equivalent of a Windows DLL. Like DLLs, SO's are just shared logic, and it's the logic within the SO that makes for that kind of behaviour, not the fact that it's an SO.

We don't know what your particular SO is intended to do - there are probably hundreds of SO's in the average system and they do many different things. So we have no idea why you're having this problem or what might be done about it.

You'll need to provide more information.


A lot the of modern-day software development platforms are designed to permit parcelling out work to those with the best aptitude for it. A lot of modern-day business is predicated on making one person do all the work, regardless of aptitude.
swapnel surade
Ranch Hand

Joined: Mar 05, 2009
Posts: 122
I have one .so file provided by client using which I can turn on,off the screen and send the interrupt on button press which is present on the screen.
when I'm using any operation from that .so file, I'm unable to use it simultaneously.


Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 11740

swapnel surade wrote:I have one .so file provided by client using which I can turn on,off the screen and send the interrupt on button press which is present on the screen.
when I'm using any operation from that .so file, I'm unable to use it simultaneously.




In that case, all you can do is talk to the client.
 
 
subject: accessing library
 
developer file tools