Search:

Type: Posts; User: molus

Search: Search took 0.00 seconds.

  1. AS refers to advance server

    AS refers to advance server
  2. How to identify Linux Platforms in C Program at Runtime

    Hi,

    I need to write a peice of code which is different in Linux AS2.1 and AS3.0. Both are 32 bit m/cs. How can i identify it??

    Thanks in adv,
    Molu
  3. Solution Found. We need to include "-mt" flag...

    Solution Found.

    We need to include "-mt" flag too. It internally includes -lpthread

    When "aCC -mt Sample.cpp" is executed, it works properly!
  4. Problem related to string class & lpthread on HP-UX 11iV2

    Hi,

    I am facing this weird problem. When the sample pgm given below is compiled with -lpthread

    option, the pgm gives seg fault on HP-UX 11iv2

    The compiler used is "HP aC++/ANSI C B3910B...
  5. Well, my doubt was that why does the creation of...

    Well, my doubt was that why does the creation of static var in getInstance func() & returning it not be used for multi threading, In this way the destructor need not be called.
    Whereas if i use the...
  6. Singleton C++ Class - How to avoid mem leak in multi threading

    Hello,
    got a C++ doubt..

    normally Singleton class is written like
    Sing.h
    ==========
    class Sing{
    private:
    Sing();
    static Sing* instance;
Results 1 to 6 of 6