shared

How to export symbols from a shared library

Hello, I have created a shared library(*.so) using the *.o object code files(C source code) using RVDS compiler on windows Host. I link this shared object with a application(using gcc for arm target on linux host) and obtain a executable, which on running generates segmentation fault.(I know i have to debug it!) Instead of creating sh...

Wanted to know in detail about how shared libraries work vis-a-vis static library.

Hello, I am working on creating and linking shared library (.so). While working with them, many questions popped up which i could not find satisying answers when i searched for them, hence putting them here. The questions about shared libraries i have are: 1.) How is shared library different than static library? What are the Key differ...

Can I reset a static/shared class?

I've got a shared class (static in C#) which mostly carries some settings data that any class in the application can read and sometimes write. Also there are some static properties which holds some internal states. Now I want to revert this class to initial stage of it. With all default variables etc. Assume that the user want to reset ...

Standard non-code resource location for python packages

This should be a common scenario, but could not find any relevant post yet.. I plan to deploy a Python library (I guess the same applies to regular applications) which makes use of some images and other resource files. What is the standard location for such items? I imagine, for project Foo, the choices would be Have resources directo...

Query about shared library performance

Hello, I have a question about performance difference (from the perspective of Cycles consumed) between a static library and shared library(windows - dll). I have a static library for some code. I also have a dynamic library for the same code. I have linked these two libraries to a application. Will there be any difference in perform...

How many users does a shared hosting website scale for?

I'm planning on hosting 3 or 4 WCF/.NET 3.5 REST webservices to be used by a new iPhone application. I've heard good reviews about DiscountASP.NET (http://www.discountasp.net/index.aspx), but I'm pretty ignorant about shared hosting performance. At the same time, I think it's still early to pay $90 a month for a scalable Amazon EC2 ser...

How the shared files (linked files) in VSS can be migrated to a Subversion repository in Debian ?

How the shared files (linked files) in VSS can be migrated to a Subversion repository in Debian ? Please help. ...

In Unix, how do I find out which executables or processes are using my shared libraries?

How do I find out which executables or processes are using my shared library objects in a Unix environment, specifically the AIX environment. Is there any command for it? ...

Share properties among multiple classes

Hi All, I've a class with few properties A, B, C. I consider this as an input object as I use this in the logic to run some rules based on the values of these properties. Now, after running the rules, I created another class as an output with the same properties and with same values in addition to few other properties specific to the out...

How widely visible are various objects (shared class, module, etc) in VB.NET

I have a VB.NET application where various objects are going to access some common code, and I have some counters and values shared between all the calls, so I'm currently using a "Shared Class" (I'm aware classes can't be shared, per se, but all the variables and methods are marked "Shared"). My concern is for the visibility of this obj...

Internet Explorer 8 - Session Shared among Explorer Window

IE 8 sharing session among different Explorer Window for same domain. Like if you are a logined at hotmail.com in IE 8, and you have open another explorer window for hotmail.com, you will automatically logined. This was not in IE 7, In IE 7 session has shared in the same explorer tab rather different Explorer Window. Can anyone have a i...

How to watch samba shared folder/drive using filesystemwatcher in windows?

Here is some tricky problem. I am trying to watch a shared folder which is on Linux machine. I am running the program on windows XP which is developed in Visual Studio 2005, VC++ and using FileSystemWatcher class. But it's not raising events for that shared folder at all. Please suggest a solution. ...

Mixing different versions of libraries in code for Linux.

The program that I am working on is statically linked to a 3rdPartyLibrary.lib. We wanted to take advantage of a newer version of the same 3rdPartyLibrary, say 3rdPartyLibraryNewVersion.lib. So the decision is to include the 3rdPartyLibraryNewVersion.so as a dynamically linked library, to be included via a wrapper dynamic library calle...

How to create Shared VB Array Initialisors for NerdDinner

Hello, I am trying to work my way through the NerdDinner tutorial - and as an exercise I'm converting it to VB as I go. I'm not very far in and after having gotten past the C# Yield statement I'm stuck on Shared VB Array Initialisors. static IDictionary<string, Regex> countryRegex = new Dictionary<string, Regex>() { { "USA", new Regex(...

implementing ipod playback

how can i let ipod playback continue when my app is on the run..... THANKS IN ADVANCE FOR HELP//... ...

Help with Shared Libraries needed

Hi, I have an application that i have built(on linux, written in c++ compiling with g++), that uses shared libs, it works fine when i run it locally, as the shared libs can be found, however when i run it on a cluster where the libs are only installed on the head nodes, i get the error : ./start: error while loading shared libraries: ...

How to import python module in a shared folder?

I have some python modules in a shared folder on a Windows machine. The file is \mtl12366150\test\mymodule.py os.path.exists tells me this path is valid. I appended to sys.path the folder \mtl12366150\test (and os.path.exists tells me this path is valid). When I try to import mymodule I get an error saying the module doesn't exist. ...

CakePHP: Shared Hosting Dilemma

Hello, I'm having trouble with uploading my cakePHP project on a shared hosting ( from hostgator ). Here is what I have done: I've organized my cake distribution like this: home/user/app home/user/cake/cake home/user/cake/vendors home/user/cake/.htaccess home/user/cake/index.php I have taken the content of webroot directory from ...

host and kvm/qemu guest shared partition

¿It's possible to share a partition (or lvm volume) and using it at the same time between the host and the guest virtual machine? For example, if you have the /home in the /dev/sdf2 partition, use it inside the otherdistro vm and work at the same time, also. Thanks. ...

shared objects within a struct: between a calling program and library (in c)

Hi, In a separate library, we have a struct with: typedef struct bsmat{ int m; int *n; double **d; } bs; where **d is a array of pointers to double arrays. bs *new_bs(int n, double **d); There are two use cases: (a) The main application allocates multiple double matrices and calls the library to construct the structure. b = new...