Sponsored Content
Top Forums Programming Sharing C++ Objects with virtual function table pointers Post 14006 by Seeker on Sunday 27th of January 2002 01:09:26 AM
Old 01-27-2002
more about shared objects

Hi, to be more specific :
I am using AIX on R6k, and shared memory is an option.
How can that approach solve the problem ? Isn't szared memory
mapped into each process's vitual address space anyway ?
And what is the deal about shared libraries ? what are those ?
 

10 More Discussions You Might Find Interesting

1. Programming

Regarding Function and Pointers.

HI, Here is some thing that is puzzling me from a long time. Can some body explain me this with example. The question is :- What is the difference between function pointer and pointer to a function. Where do we actually use the function pointers and pointer to functions. Thanks in... (0 Replies)
Discussion started by: S.Vishwanath
0 Replies

2. IP Networking

sharing of IP address for load sharing avoiding virtual server & redirection machine

I have RedHat 9.0 installed on three of my servers (PIII - 233MHz) and want that they share a common IP address so that any request made reaches each of the servers. Can anyone suggest how should I setup my LAN. I'm new to networking in Linux so please elaborate and would be thankful for a timely... (2 Replies)
Discussion started by: Rakesh Ranjan
2 Replies

3. Programming

Pure Virtual Function in C++

Dear All, Here I want to know why we put =0 in case of pure virtual function, why not =1, =2 or any thing else Please send me answer any one as soon as possible. (1 Reply)
Discussion started by: krishna_sicsr
1 Replies

4. OS X (Apple)

Virtual screen accessed by Screen Sharing

Hi, I'm trying to create a virtual screen, (maybe xvfb? or any other virtual screen buffer) and be able to use Screen Sharing to connect to it. The setup is that I have a Mac Mini connected to the TV. But when my girlfriend is using Front Row, I can't use Screen Sharing at the same time from... (0 Replies)
Discussion started by: linge
0 Replies

5. Shell Programming and Scripting

Crosstab to List table using awk Function

What I am trying to achieve is turning crosstab into a normal table e.g. convert following table Jan Feb Mar Apr May Jun Australia 1 2 3 4 5 6 USA 7 8 9 10 11 12 China 13 14 15 16 17 18 to Australia Jan 1 Australia Feb 2 Australia Mar 3 ... (2 Replies)
Discussion started by: asdban
2 Replies

6. Shell Programming and Scripting

Read Table,View,Package,Function and Procedure Name in a File

Hi I am new to Unix shell scripting. But i need help to slove the below issue. Issue description: I want to read table, view names and package names in a file my plan to find the table name is : search "From" key word find the table or view To find the packge name : Search "Package... (5 Replies)
Discussion started by: sboss
5 Replies

7. Programming

question about Function pointers

Hello forum memebers As iam new to C++ programming i am little bit confuse to understand the function pointers. Please help me to understand the function pointers with examples are suggest me good site for this,Its better if it have picturial representation ie any PPTS available in Google.... (2 Replies)
Discussion started by: rajkumar_g
2 Replies

8. UNIX for Advanced & Expert Users

What is the function to get address of the virtual memory block in linux??

I want address of current virtual memory block? i am using fedora10:wall::wall: (1 Reply)
Discussion started by: powyama
1 Replies

9. Programming

How to Declare an array of function pointers?

I am attempting to create an array of function pointers. The examples I follow to do this are from: support.microsoft.com/en-us/help/30580/how-to-declare-an-array-of-pointers-to-functions-in-visual-c ... (3 Replies)
Discussion started by: spflanze
3 Replies

10. UNIX for Beginners Questions & Answers

Providing virtual machine priority in kvm based virtual machines

Hi All, Is there any way I can prioritize my VMs when there is resource crunch in host machine so that some VMs will be allocated more vcpu, more memory than other VMs in kvm/qemu hypervisor based virtual machines? Lets say in my cloud environment my Ubuntu 16 compute hosts are running some... (0 Replies)
Discussion started by: SanjayK
0 Replies
SoMFPath(3)							       Coin							       SoMFPath(3)

NAME
SoMFPath - The SoMFPath class is a container for paths. This field container stores an array of pointers to paths. It takes care of the necessary functionality for handling copy, import and export operations. SYNOPSIS
#include <Inventor/fields/SoMFPath.h> Inherits SoMField. Public Member Functions virtual SoType getTypeId (void) const virtual void copyFrom (const SoField &field) const SoMFPath & operator= (const SoMFPath &field) virtual SbBool isSame (const SoField &field) const SoPath * operator[] (const int idx) const const SoPath ** getValues (const int start) const int find (SoPath *value, SbBool addifnotfound=FALSE) void setValues (const int start, const int num, const SoPath **newvals) void set1Value (const int idx, SoPath *value) void setValue (SoPath *value) SoPath * operator= (SoPath *val) SbBool operator== (const SoMFPath &field) const SbBool operator!= (const SoMFPath &field) const SoPath ** startEditing (void) void finishEditing (void) virtual void notify (SoNotList *l) virtual void fixCopy (SbBool copyconnections) virtual SbBool referencesCopy (void) const virtual void deleteValues (int start, int num=-1) virtual void insertSpace (int start, int num) Static Public Member Functions static void * createInstance (void) static SoType getClassTypeId (void) static void initClass (void) Protected Member Functions virtual void deleteAllValues (void) virtual void copyValue (int to, int from) virtual int fieldSizeof (void) const virtual void * valuesPtr (void) virtual void setValuesPtr (void *ptr) virtual void allocValues (int num) Protected Attributes SoPath ** values Detailed Description The SoMFPath class is a container for paths. This field container stores an array of pointers to paths. It takes care of the necessary functionality for handling copy, import and export operations. Note that path pointers stored in field instances of this type may be NULL pointers. See also: SoPath, SoSFPath Member Function Documentation SoType SoMFPath::getClassTypeId (void) [static] Returns a unique type identifier for this field class. See also: getTypeId(), SoType Reimplemented from SoMField. SoType SoMFPath::getTypeId (void) const [virtual] Returns the type identification instance which uniquely identifies the Coin field class the object belongs to. See also: getClassTypeId(), SoType Implements SoField. void SoMFPath::copyFrom (const SoField &f) [virtual] Copy value(s) from f into this field. f must be of the same type as this field. Implements SoField. SbBool SoMFPath::isSame (const SoField &f) const [virtual] Check for equal type and value(s). Implements SoField. const SoPath* * SoMFPath::getValues (const intstart) const [inline] Returns a pointer to the values array. void SoMFPath::initClass (void) [static] Internal method called upon initialization of the library (from SoDB::init()) to set up the type system. Reimplemented from SoMField. void SoMFPath::notify (SoNotList *nlist) [virtual] Notify auditors that this field has changed. Reimplemented from SoField. void SoMFPath::fixCopy (SbBoolcopyconnections) [virtual] This method is internally called after SoField::copyFrom() during scene graph copies, and should do the operations necessary for fixing up the field instance after it has gotten a new value. The default method in the SoField superclass does nothing. The application programmer should normally not need to consider this method, unless he constructs a complex field type which contains new references to container instances (i.e. nodes or engines). Overriding this method is then necessary to update the reference pointers, as they could have been duplicated during the copy operation. Reimplemented from SoField. SbBool SoMFPath::referencesCopy (void) const [virtual] Returns TRUE if this field has references to any containers in the scene graph which are also duplicated during the copy operation. Note that this method only is valid to call during copy operations. See also the note about the relevance of the fixCopy() method for application programmers, as it is applicable on this method aswell. Reimplemented from SoField. virtual void SoMFPath::deleteValues (intstart, intnumarg = -1) [virtual] Remove value elements from index start up to and including index start + num - 1. Elements with indices larger than the last deleted element will be moved downwards in the value array. If num equals -1, delete from index start and to the end of the array. Reimplemented from SoMField. virtual void SoMFPath::insertSpace (intstart, intnumarg) [virtual] Insert num 'slots' for new value elements from start. The elements already present from start will be moved 'upward' in the extended array. Reimplemented from SoMField. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoMFPath(3)
All times are GMT -4. The time now is 07:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy