Sponsored Content
Operating Systems AIX AIX 5.2 C++ shared object issue Post 302479561 by DGPickett on Saturday 11th of December 2010 12:02:21 PM
Old 12-11-2010
Mainly, int is a primitive, not a Cclass, so you cannot new it. You can look for a Class Integer or the like, or write a class holding an int, or call malloc(), calloc() or realloc() using an extern "C" around the include files. Or you can just declare a not automatic int: global, file static or subroutine static, and pass the pointer &integer_name into your variable.

An extern "C" {} block is just for linkage information -- prototypes, like #includes, not for actual execution. It says to link the names without mangling for argument and return type checking. C++ was originally just a C preprocess, so the mangling achieved the type checking.

Conversely, if you are trying to call C++ libs in a C main or other code, the C main or other code would have extern "C++" {} blocks for the prototypes of the lib, usually in a #include for that lib.
 

10 More Discussions You Might Find Interesting

1. Programming

Does my ld support shared object creation

Hi, I have been trying to create a sharef object on my HP UX 11 machine (HP-UX <myhostname> B.11.00 A 9000/879 ...... two-user license) to create the shared object first I am creating the object file using cc -Aa -c +z dyn.c (I use -Aa and +z as per HP's manual on linkers ) to create the... (0 Replies)
Discussion started by: linuxpenguin
0 Replies

2. Linux

Shared Object File

Hi All, I created the share object file using gcc -shared -fpic mypp.cpp -o myp.so but, pls tell me how to link this .so file to my client program. Thanks (0 Replies)
Discussion started by: sarwan
0 Replies

3. AIX

Shared Object library problem

Hi, When using shared objects on AIX 4.3 i am getting runtime problems. I have a small sample program which links to a shared object libray, oracle and system related libraries. At runtime it fails (gives segmentation fault and coredump ) in one proc file when executing login statement. But... (0 Replies)
Discussion started by: suman_jakkula
0 Replies

4. Programming

calling a shared object from a daemon

Hi I have a multithreaded daemon(server) which will accept connections from various clients and sends back results to them. In order to serve my daemon clients, it has to establish a TCP connection to another server(vendor supplied which is listening on a specific TCP port) and gets the... (11 Replies)
Discussion started by: axes
11 Replies

5. UNIX for Advanced & Expert Users

Issue with shared object in AIX

Hi All, I have a problem with the shared objects setup in AIX. We have a customized shell written by the developers over here. When i issue a MQ Series command (mqsilist) it is giving the error as . All the commands making use of this libImbCmdLib.a.so is failing. But when executed in normal... (1 Reply)
Discussion started by: dhanamurthy
1 Replies

6. Shell Programming and Scripting

Any way to access shared object using shell

Hi, I have created a shared object (abc.so) which has a function sum(int a, int b). Is there any way to load the "abc.so" and use the sum function using shell script.. thanks in advance (2 Replies)
Discussion started by: yhacks
2 Replies

7. Programming

Error while running shared object

Hello, While running a c++ shared object on AIX I am facing below error - rtld: 0712-001 Symbol __ct__3ETDFv was referenced from module /bancs/aml/lib/libmonitor.so(), but a runtime definition of the symbol was not found. rtld: 0712-001 Symbol etd_insert__3ETDFv was... (3 Replies)
Discussion started by: yatrik007
3 Replies

8. Red Hat

shared object

Hi, I would like to create a shared object ( .so). This shared object 1. uses the functions from a library. 2. Also it should be able to use the global variable in an app To achieve this what should I do ? 1) To use the functions in the library should I give the -ld option while... (1 Reply)
Discussion started by: rvan
1 Replies

9. Programming

Shared Object Question

Hello, I am new to programming shared objects and I was hoping someone could tell me if what I want to do is possible, or else lead me in the right direction. I have a main program that contains an abstract base class. I also have a subclass that I'm compiling as a shared object. The subclass... (13 Replies)
Discussion started by: dorik
13 Replies

10. Programming

Help building and using a shared object (x64)

Hello, I am not that experienced with Linux, and I am currently facing some issues. The application I'm working on uses hundreds of threads. To optimize the memory usage, I am putting all my data inside a shared object (so). The steps for this are as follows: 1. a C file (generated... (17 Replies)
Discussion started by: Maelstrom
17 Replies
malloc(3x)																malloc(3x)

Name
       malloc, free, realloc, calloc, mallopt, mallinfo - fast main memory allocator

Syntax
       #include <malloc.h>

       char *malloc (size)
       unsigned size;

       void free (ptr)
       char *ptr;

       char *realloc (ptr, size)
       char *ptr;
       unsigned size;

       char *calloc (nelem, elsize)
       unsigned nelem, elsize;

       int mallopt (cmd, value)
       int cmd, value;

       struct mallinfo mallinfo (max)
       int max;

Description
       The  and  subroutines  provide  a simple general-purpose memory allocation package, which runs considerably faster than the package.  It is
       found in the library and is loaded if the option is used with or

       The subroutine returns a pointer to a block of at least size bytes suitably aligned for any use.

       The argument to is a pointer to a block previously allocated by After is performed, this space is made available  for  further  allocation,
       and its contents have been destroyed.  See below for a way to change this behavior.

       Undefined results will occur if the space assigned by is overrun or if some random number is handed to

       The subroutine changes the size of the block pointed to by ptr to size bytes and returns a pointer to the (possibly moved) block.  The con-
       tents will be unchanged up to the lesser of the new and old sizes.

       The subroutine allocates space for an array of nelem elements of size elsize.  The space is initialized to zeros.

       The subroutine provides for control over the allocation algorithm.  The available values for cmd are:

       M_MXFAST Set maxfast to value .	The algorithm allocates all blocks below the size of maxfast in large groups and then doles them out  very
		quickly.  The default value for maxfast is 0.

       M_NLBLKS Set numlblks to value .  The above mentioned large groups each contain numlblks blocks.  The numlblks must be greater than 0.  The
		default value for numlblks is 100.

       M_GRAIN	Set grain to value .  The sizes of all blocks smaller than maxfast are considered to be rounded up  to	the  nearest  multiple	of
		grain  .  The grain must be greater than 0.  The default value of grain is the smallest number of bytes which will allow alignment
		of any data type.  Value will be rounded up to a multiple of the default when grain is set.

       M_KEEP	Preserve data in a freed block until the next or This option is provided only for compatibility with the old version of and is not
		recommended.

       These values are defined in the malloc.h header file.

       The subroutine may be called repeatedly, but may not be called after the first small block is allocated.

       The subroutine provides information describing space usage.  It returns the following structure:
       struct mallinfo	{
	       int arena;      /* total space in arena */
	       int ordblks;    /* number of ordinary blocks */
	       int smblks;     /* number of small blocks */
	       int hblkhd;     /* space in holding block headers */
	       int hblks;      /* number of holding blocks */
	       int usmblks;    /* space in small blocks in use */
	       int fsmblks;    /* space in free small blocks */
	       int uordblks;   /* space in ordinary blocks in use */
	       int fordblks;   /* space in free ordinary blocks */
	       int keepcost;   /* space penalty if keep option */
			       /* is used */
       }

       This structure is defined in the malloc.h header file.

       Each  of  the  allocation routines returns a pointer to space suitably aligned (after possible pointer coercion) for storage of any type of
       object.

Restrictions
       This package usually uses more data space than
       The code size is also bigger than
       Note that unlike this package does not preserve the contents of a block when it is freed, unless the M_KEEP option of is used.
       Undocumented features of have not been duplicated.

Return Values
       The and subroutines return a NULL pointer if there is not enough available memory.  When returns NULL, the block pointed to by ptr is  left
       intact.	If is called after any allocation or if cmd or value are invalid, nonzero is returned.	Otherwise, it returns zero.

See Also
       brk(2), malloc(3)

																	malloc(3x)
All times are GMT -4. The time now is 10:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy