Sponsored Content
Top Forums Programming determining the IP of a function Post 302487834 by neur0n on Thursday 13th of January 2011 06:10:15 PM
Old 01-13-2011
Is there also a way to determine the function stack (start address of the function stack)?

Last edited by neur0n; 01-14-2011 at 11:15 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

determining open ports

hi all 1) how to determine available ports in a box (solaris) do i have to go for a netstat on all the ports? 2) how to block a particular port for a particular type of connection. Any help would be greatly appreciated Thanks (7 Replies)
Discussion started by: matrixmadhan
7 Replies

2. UNIX for Dummies Questions & Answers

Determining file length

How can I determine what UNIX thinks the record size of any given file is?? (1 Reply)
Discussion started by: jbrubaker
1 Replies

3. Solaris

Determining processes that have been swapped out

Is there a way to do this in Solaris? For instance, suppose I run the following: $ swap -l swapfile dev swaplo blocks free /dev/md/dsk/d501 85,501 16 16780208 16780208 $ swap -s total: 3377368k bytes allocated + 519416k reserved = 3896784k used, 11011992k available... (1 Reply)
Discussion started by: lyonsd
1 Replies

4. Programming

determining the object files...

hello, is there a utility to determine which object files are used to create a binary executable file?let me explain, please: for ex. there are three files: a.o b.o c.o and these files are used to create a binary called: prg namely, a.o b.o c.o -> prg so, how can i determine these three... (1 Reply)
Discussion started by: xyzt
1 Replies

5. Shell Programming and Scripting

Problem determining file

I got the following code, it partially works. Can someone tell me why it partially doenst work? #!/bin/sh file=$1 if then echo "File is a directory" else echo "File is not a directory!" fi heres the output: philip@philip-laptop:~/Desktop$ sh exFive.sh test.java File is... (4 Replies)
Discussion started by: philmetz
4 Replies

6. Linux

Determining L2 cache size

Is there any way to know the L2 cache size from examinging to boot log. Here is my boot logLinux version 2.6.13-jaluna (root@localhost.localdomain) (gcc version 3.2.2) #4 Thu Apr 23 23:16:10 EDT 2009 TMS320DM643X port (C) VirtualLogix and others Designed for the EVMDM6437 board, Spectrum Digital... (3 Replies)
Discussion started by: mourya
3 Replies

7. Programming

Determining C/C++ License count

Can someone give me some guidance on what command to run to list how many compiler seats/licenses I am licensed for? This is an AIX system. Thanks, Justin ---------- Post updated 04-30-10 at 10:03 AM ---------- Previous update was 04-29-10 at 02:42 PM ---------- I can't believe nobody... (3 Replies)
Discussion started by: juredd1
3 Replies

8. UNIX for Advanced & Expert Users

Determining typing latency

Hi all, When I use an editor (vi) that is spawned in a remote server, visually I could see the latency between typing a character/word and being displayed on the terminal. I could see this visually but how do I get a metric on this or how to quantify this? As expected, when I type in a editor... (6 Replies)
Discussion started by: matrixmadhan
6 Replies

9. UNIX for Advanced & Expert Users

Best practice - determining what region you are on

Hello all, I have a question about what you think the best practice is to determine what region you are running on when you have a system setup with a DEV/TEST, QA, and PROD regions running the same scripts in all. So, when you run in DEV, you have a different directory structure, and you... (4 Replies)
Discussion started by: Rediranch
4 Replies

10. Shell Programming and Scripting

Determining length of string

I have this script which is very easy: file=`echo 01114` echo $file 01114 then I ran this if ; then echo "yes";fi it returned yes even though there are only 5 digits there So then I tried file=`echo abcd` echo $file abcd if ]; then echo "yes";fi if ]; then echo "yes";fi It... (2 Replies)
Discussion started by: newbie2010
2 Replies
ost::Pointer< T >(3)					     Library Functions Manual					      ost::Pointer< T >(3)

NAME
ost::Pointer< T > - Used to create and manage referece counted pointers. SYNOPSIS
#include <pointer.h> Public Member Functions Pointer (T *ptr=NULL) Pointer (const Pointer< T > &ref) virtual ~Pointer () Pointer & operator= (const Pointer< T > &ref) T & operator* () const T * getObject () const T * operator-> () const bool operator! () const int operator++ () const int operator-- () const Protected Member Functions void ptrDetach (void) Protected Attributes unsigned * ptrCount T * ptrObject Detailed Description template<class T>class ost::Pointer< T > Used to create and manage referece counted pointers. Author: David Sugar dyfet@gnutelephony.org reference counted pointer template. Constructor &; Destructor Documentation template<class T> ost::Pointer< T >::Pointer (T *ptr = NULL) [inline], [explicit] References ost::Pointer< T >::ptrCount. template<class T> ost::Pointer< T >::Pointer (const Pointer< T > &ref) [inline] References ost::Pointer< T >::ptrCount, and ost::Pointer< T >::ptrObject. template<class T> virtual ost::Pointer< T >::~Pointer () [inline], [virtual] References ost::Pointer< T >::ptrDetach(). Member Function Documentation template<class T> T* ost::Pointer< T >::getObject (void) const [inline] References ost::Pointer< T >::ptrObject. template<class T> bool ost::Pointer< T >::operator! (void) const [inline] References ost::Pointer< T >::ptrCount. template<class T> T& ost::Pointer< T >::operator* () const [inline] References ost::Pointer< T >::ptrObject. template<class T> int ost::Pointer< T >::operator++ (void) const [inline] template<class T> int ost::Pointer< T >::operator-- (void) const [inline] References ost::Pointer< T >::ptrCount. template<class T> T* ost::Pointer< T >::operator-> () const [inline] References ost::Pointer< T >::ptrObject. template<class T> Pointer& ost::Pointer< T >::operator= (const Pointer< T > &ref) [inline] References ost::Pointer< T >::ptrCount, ost::Pointer< T >::ptrDetach(), and ost::Pointer< T >::ptrObject. template<class T> void ost::Pointer< T >::ptrDetach (void) [inline], [protected] References ost::Pointer< T >::ptrCount, and ost::Pointer< T >::ptrObject. Referenced by ost::Pointer< T >::operator=(), and ost::Pointer< T >::~Pointer(). Member Data Documentation template<class T> unsigned* ost::Pointer< T >::ptrCount [protected] Referenced by ost::Pointer< T >::operator!(), ost::Pointer< T >::operator--(), ost::Pointer< T >::operator=(), ost::Pointer< T >::Pointer(), and ost::Pointer< T >::ptrDetach(). template<class T> T* ost::Pointer< T >::ptrObject [protected] Referenced by ost::Pointer< T >::getObject(), ost::Pointer< T >::operator*(), ost::Pointer< T >::operator->(), ost::Pointer< T >::operator=(), ost::Pointer< T >::Pointer(), and ost::Pointer< T >::ptrDetach(). Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::Pointer< T >(3)
All times are GMT -4. The time now is 03:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy