Sponsored Content
Top Forums UNIX for Advanced & Expert Users O argv, argv, wherefore art thou argv? Post 302804495 by Scrutinizer on Wednesday 8th of May 2013 04:24:20 PM
Old 05-08-2013
Hi Alister, here are some results, all 64-bit systems:
Code:
OSX 10.8 (INTEL)
--------------------
heap: 0x105a19000
stack: 0x7fff5a21ab84
argv: 0x7fff5a21ab90

Code:
Solaris 10 (SPARC)
--------------------
heap: 20e30
stack: ffbffc28
argv: ffbffc78

Code:
HPUX11v1 (PA-RISC)
--------------------
heap: 400010ec
stack: 7f7f0668
argv: 7f7f0638

Code:
AIX 7 (Power4)
-------------
heap: 200006ec
stack: 2ff22bf8
argv: 2ff22c3c

Code:
Irix 6.5 (MIPS)
--------------------
heap: 10014000
stack: 7fff2f28
argv: 7fff2f24

Code:
Tru64 5.1 (Alpha)
--------------------
heap: 14000e180
stack: 11fffbfe0
argv: 11fffbff8


Last edited by Scrutinizer; 05-09-2013 at 03:33 PM..
This User Gave Thanks to Scrutinizer For This Post:
 

10 More Discussions You Might Find Interesting

1. Programming

argv

I have a program which I wish to modify. It used to be run from the command line, but now I wish to change this so it can be used as a function. The program has complex argument processing so I want to pass my paramters to as if it were being called by the OS as a program. I have tried to... (2 Replies)
Discussion started by: mbb
2 Replies

2. Programming

Using argv argc

I searched on the forums. No advises. I am using a previous source code. I changed the main function main(int argc, char **argv) in a function misc(int argc, char **argv). How do you use the argc and argv parameters? This is how I am calling the function : char param; strcat(param,"wgrib ");... (4 Replies)
Discussion started by: Akeson Chihiro
4 Replies

3. Programming

help for argv argc

Hi C experts, I have the following code for adding command line option for a program int main (argc, argv) int argc; char *argv; { char *mem_type; //memory type char *name; //name of the memory int addr; //address bits int data; ... (5 Replies)
Discussion started by: return_user
5 Replies

4. Shell Programming and Scripting

if #argv = (this OR that) then...

this is in one of my scripts... if ($#argv == 0) then echo 'blah bla' exit 0 endif I want it to be something like this... if ($#argv == 0 OR $argv >=3) echo 'blah bla' exit 0 endif so when the arguments are none, or greater than three I want this "if then" to take over. how? I... (5 Replies)
Discussion started by: ajp7701
5 Replies

5. Shell Programming and Scripting

$#Argv in Csh

Hello all, Had a quick question: In a typical csh script should inputting via stdin (i.e. set i = $< ) increase the value of $#argv ? echo enter an value: set val= "$<" if($#argv == 0) then echo No args else echo The arg is $argv so if a value is inputted #argv... (1 Reply)
Discussion started by: new2C
1 Replies

6. Programming

ARGV help in C

Hi, Can somehelp help how to list file in a dir? (5 Replies)
Discussion started by: Learnerabc
5 Replies

7. Programming

help with C, argv

when i run my program, i have a parameter, that i want to set the value to another string i am using int main(int argc, char **argv) { char my_str=argv; printf("%s",my_str); return 0; } and i get Segmentation fault ran using ./my_prog /usr/share/dict/words hello1 ... (2 Replies)
Discussion started by: omega666
2 Replies

8. Programming

How do I copy or rewind *argv[]

I'm working on my own pow function and I need to make a copy of *argv but I think that I am having trouble with the size of *argv and the size of any array that I make. The code below isn't working for me. and I want to accept any number no matter the size with pow -f 2 2. I was working out... (16 Replies)
Discussion started by: Errigour
16 Replies

9. Homework & Coursework Questions

Help using argc/argv in assignment

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: First, create a "hello world" program that prints "Hello World". But NOW, instead use argc to verify that a... (9 Replies)
Discussion started by: miniviking10
9 Replies

10. UNIX for Dummies Questions & Answers

ARGV how to use it?

So i am trying to read in file readFile <GivenFile> modFile looking for a regular file under the directories in the GivenFile and print them out is my over all goal. basically I am looking for anything that looks like a directory in the given file and printing it out. Since I am trying to do... (2 Replies)
Discussion started by: squidGreen
2 Replies
XSetStandardProperties(3X11)											      XSetStandardProperties(3X11)

Name
       XSetStandardProperties - set standard window manager properties

Syntax
       XSetStandardProperties(display, w, window_name, icon_name, icon_pixmap, argv, argc, hints)
	     Display *display;
	     Window w;
	     char *window_name;
	     char *icon_name;
	     Pixmap icon_pixmap;
	     char **argv;
	     int argc;
	     XSizeHints *hints;

Arguments
       argc	 Specifies the number of arguments.

       argv	 Specifies the application's argument list.

       display	 Specifies the connection to the X server.

       hints	 Specifies a pointer to the size hints for the window in its normal state.

       icon_name Specifies the icon name, which should be a null-terminated string.

       icon_pixmap
		 Specifies the bitmap that is to be used for the icon or

       w	 Specifies the window.

       window_name
		 Specifies the window name, which should be a null-terminated string.

Description
       The  function provides a means by which simple applications set the most essential properties with a single call.  should be used to give a
       window manager some information about your program's preferences.  It should not be used by applications  that  need  to  communicate  more
       information than is possible with (Typically, argv is the argv array of your main program.)

       can generate and errors.

Properties
       WM_NAME, WM_ICON_NAME, WM_HINTS, WM_COMMAND, and WM_NORMALHINTS

Diagnostics
       The server failed to allocate the requested resource or server memory.

       A value for a Window argument does not name a defined Window.

See Also
       XSetClassHint(3X11),  XSetCommand(3X11), XSetIconName(3X11), XSetIconSizeHints(3X11), XSetNormalHints(3X11), XSetSizeHints(3X11), XSetTran-
       sientForHint(3X11), XSetWMHints(3X11), XSetZoomHints(3X11), XStoreName(3X11)
       Guide to the Xlib Library

														      XSetStandardProperties(3X11)
All times are GMT -4. The time now is 01:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy