Sponsored Content
Top Forums Programming ammount of Memory used by a Process Post 41596 by Lazzar on Thursday 9th of October 2003 09:07:13 AM
Old 10-09-2003
ammount of Memory used by a Process

how can i display the ammount of Memory a Process used or allocated with *alloc?

Lazzar
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Memory used by a particular process

how to get memory used by a particular process in unix? (3 Replies)
Discussion started by: superprogrammer
3 Replies

2. UNIX for Dummies Questions & Answers

Memory used by a process

Hello all 'top' command shows the top 15 processes in terms of CPU usage. Is there any other command in UNIX ,that will show the top processes in terms of memory usage ? or is there a command, that will give me the memory usage of a particular process ,if I pass the process id as a... (3 Replies)
Discussion started by: luft
3 Replies

3. Shell Programming and Scripting

Memory in Use by a process

How do I find the amount of memory being consumed by a particular process on AIX 5L.. Thank you (0 Replies)
Discussion started by: khopdi
0 Replies

4. Solaris

MAximum ammount of memory

Wich is the maxumum ammount of memory supported by Solaris in the most recent version? And somebody knows if there is a document on SUN that support this? In advance thanks. (8 Replies)
Discussion started by: GEIER
8 Replies

5. HP-UX

How to find memory used by a process

Hi, Can anyone help me out in writing the shell scrip which monitors a process which is running and gives me the output of the memory being used by the process, I have the requirement of monitorig the memory usage of the process when it is running. Please help me out (3 Replies)
Discussion started by: vijayagiri
3 Replies

6. AIX

Process using the most memory

Hi:- Is there an easy way to find out which process is consuming the most memory on an AIX server? Thanks, (5 Replies)
Discussion started by: janet
5 Replies

7. UNIX for Dummies Questions & Answers

Archiving big ammount of files.

Hello All. I have problem archiving files. The problem is:) I have about 10000 files in one directory, all this file aproximately the same size, i need to gzip them and write on DVD. But all this files take about 15 GB of space (already gzipped). So i need DVD Blue-Ray :p or i need to split... (3 Replies)
Discussion started by: Maxeg
3 Replies

8. Shell Programming and Scripting

Moving and renaming large ammount of files

Hey, I'm kinda new to the shell scripting and I don't wanna mess things up yet :) Looking for a solution to the following: I need to move all the files like "filename.failed.dateandtime" to another directory also renaming them "filename.ready". I can't figure how to do this with multiple files... (4 Replies)
Discussion started by: sg3
4 Replies

9. Emergency UNIX and Linux Support

CPU and memory utilization of a process, by process name

Can someone please help me with a script that will help in identifying the CPU & memory usage by a process name, rather than a process id.This is to primarily analyze the consumption of resources, for performance tweaking. G (4 Replies)
Discussion started by: ggayathri
4 Replies

10. Solaris

[DOUBT] Memory high in idle process on Solaris 10 (Memory Utilization > 90%)

Hi Experts, Our servers running Solaris 10 with SAP Application. The memory utilization always >90%, but the process on SAP is too less even nothing. Why memory utilization on solaris always looks high? I have statement about memory on solaris, is this true: Memory in solaris is used for... (4 Replies)
Discussion started by: edydsuranta
4 Replies
XCreateColormap(3X11)						     MIT X11R4						     XCreateColormap(3X11)

Name
       XCreateColormap, XCopyColormapAndFree, XFreeColormap, XSetWindowColormap, XColor - create, copy, or destroy colormaps and color structure

Syntax
       Colormap XCreateColormap(display, w, visual, alloc)
	  Display *display;
	  Window w;
	  Visual *visual;
	  int alloc;

       Colormap XCopyColormapAndFree(display, colormap)
	  Display *display;
	  Colormap colormap;

       XFreeColormap(display, colormap)
	  Display *display;
	  Colormap colormap;

       XSetWindowColormap(display, w, colormap)
	  Display *display;
	  Window w;
	  Colormap colormap;

Arguments
       alloc	 Specifies the colormap entries to be allocated.  You can pass or

       colormap  Specifies the colormap that you want to create, copy, set, or destroy.

       display	 Specifies the connection to the X server.

       visual	 Specifies a pointer to a visual type supported on the screen.	If the visual type is not one supported by the screen, a error
		 results.

       w	 Specifies the window for which you want to create or set a colormap .

Description
       The function creates a colormap of the specified visual type for the screen on which the specified window resides and returns the colormap
       ID associated with it.  Note that the specified window is only used to determine the screen.

       The initial values of the colormap entries are undefined for the visual classes and For and the entries have defined values, but those val-
       ues are specific to the visual and are not defined by X.  For and alloc must be or a error results.  For the other visual classes, if alloc
       is the colormap initially has no allocated entries, and clients can allocate them.

       If alloc is the entire colormap is allocated writable.  The initial values of all allocated entries are undefined.  For and the effect is
       as if an call returned all pixel values from zero to N - 1, where N is the colormap entries value in the specified visual.  For the effect
       is as if an call returned a pixel value of zero and red_mask, green_mask, and blue_mask values containing the same bits as the correspond-
       ing masks in the specified visual.  However, in all cases, none of these entries can be freed by using

       can generate and errors.

       The function creates a colormap of the same visual type and for the same screen as the specified colormap and returns the new colormap ID.
       It also moves all of the client's existing allocation from the specified colormap to the new colormap with their color values intact and
       their read-only or writable characteristics intact and frees those entries in the specified colormap.  Color values in other entries in the
       new colormap are undefined.  If the specified colormap was created by the client with alloc set to the new colormap is also created with
       all color values for all entries are copied from the specified colormap, and then all entries in the specified colormap are freed.  If the
       specified colormap was not created by the client with the allocations to be moved are all those pixels and planes that have been allocated
       by the client using or and that have not been freed since they were allocated.

       can generate and errors.

       The function deletes the association between the colormap resource ID and the colormap and frees the colormap storage.  However, this func-
       tion has no effect on the default colormap for a screen.  If the specified colormap is an installed map for a screen, it is uninstalled
       (see If the specified colormap is defined as the colormap for a window (by or changes the colormap associated with the window to and gener-
       ates a event.  X does not define the colors displayed for a window with a colormap of

       can generate a error.

       The function sets the specified colormap of the specified window.  The colormap must have the same visual type as the window, or a error
       results.

       can generate and errors.

Structures
       The structure contains:

       typedef struct {
	    unsigned long pixel;	       /* pixel value */
	    unsigned short red, green, blue;   /* rgb values */
	    char flags; 		       /* DoRed, DoGreen,
						      DoBlue */
	    char pad;
       } XColor;

       The red, green, and blue values are scaled between 0 and 65535.	On full in a color is a value of 65535 independent of the number of bits
       actually used in the display hardware.  Half brightness in a color is a value of 32767, and off is 0.  This representation gives uniform
       results for color values across different screens.  In some functions, the flags member controls which of the red, green, and blue members
       is used and can be one or more of and

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

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

       An	 window is used as a Drawable.

       Some argument or pair of arguments has the correct type and range but fails
		 to match in some other way required by the request.

       Some numeric value falls outside the range of values accepted by the request.
		 Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument
		 defined as a set of alternatives can generate this error.

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

See Also
       XAllocColor(3X11), XChangeWindowAtrributes(3X11), XCreateWindow(3X11), XQueryColor(3X11), XStoreColors(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

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