loadYOURSELF

loadYOURSELF

Browsing Posts tagged Shared

LAS VEGAS-Seagate (NYSE: STX) announced at CES a free software upgrade that provides a secure and easy-to-use remote access service, empowering people to easily and securely retrieve content stored on their Maxtor® Shared Storage II™ network attached drive through any Internet browser. Whether at home or as part of a small business network, people are recognizing the benefits of networked storage to centralize and protect data on multiple computers and across platforms. With this latest software upgrade, those with existing Maxtor Shared Storage II products will now be able to simply access and share content on their home storage device while keeping their data safe and secure.

When on the go, you can easily log into the

Buy me a beer

Shared library file
b.c

#include

void b_printer ()
{
printf (“Printing something from a shared library.n”);
}

gcc -fPIC -shared -o b.so b.c

Prototypes for the Shared Library Functions Found in dlfcn.h

void* dlopen (const char* filename, int flag);
const char* dlerror (void);
void* dlsym (void* handle, char* symbol);

  1. Open the shared library by using dlopen().
  2. Check that the open succeeded by using dlerror().
  3. Get the function that you want by using dlsym().