Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Display storage type and storage size Post 302515478 by manisham on Wednesday 20th of April 2011 07:28:21 AM
Old 04-20-2011
Display storage type and storage size

Can anybody help me ont to get the command to check storage type and storage size in unix.


Thank u in advanced!!

Last edited by radoulov; 04-20-2011 at 08:38 AM.. Reason: Title fixed.
 

2 More Discussions You Might Find Interesting

1. Solaris

How to check which type of storage is used in unix?

SunOS 5.10 Generic_142900-15 sun4v sparc SUNW,T5240 how can i check the storage type being used in unix solaris sparc system? please help me its urgnet.. thank you (22 Replies)
Discussion started by: aesgs
22 Replies

2. Filesystems, Disks and Memory

How to check which type of storage is used in unix

how can i check the storage type being used in unix solaris sparc system? please help me its urgnet.. thank you (4 Replies)
Discussion started by: aesgs
4 Replies
XtMalloc(3Xt)							     MIT X11R4							     XtMalloc(3Xt)

Name
       XtMalloc, XtCalloc, XtRealloc, XtFree, XtNew, XtNewString - memory management functions

Syntax
       char *XtMalloc(size);
	  Cardinal size;

       char *XtCalloc(num, size);
	  Cardinal num;
	  Cardinal size;

       char *XtRealloc(ptr, num);
	  char *ptr;
	  Cardinal num;

       void XtFree(ptr);
	  char *ptr;

       type *XtNew(type);
	  type;

       String XtNewString(string);
	  String string;

Arguments
       num	 Specifies the number of bytes or array elements.

       ptr	 Specifies a pointer to the old storage or to the block of storage that is to be freed.

       size	 Specifies the size of an array element (in bytes) or the number of bytes desired.

       string	 Specifies a previously declared string.

       type	 Specifies a previously declared data type.

Description
       The functions returns a pointer to a block of storage of at least the specified size bytes.  If there is insufficient memory to allocate
       the new block, calls

       The function allocates space for the specified number of array elements of the specified size and initializes the space to zero.  If there
       is insufficient memory to allocate the new block, calls

       The function changes the size of a block of storage (possibly moving it).  Then, it copies the old contents (or as much as will fit) into
       the new block and frees the old block.  If there is insufficient memory to allocate the new block, calls If ptr is NULL, allocates the new
       storage without copying the old contents; that is, it simply calls

       The function returns storage and allows it to be reused.  If ptr is NULL, returns immediately.

       returns a pointer to the allocated storage.  If there is insufficient memory to allocate the new block, calls is a convenience macro that
       calls with the following arguments specified:

       ((type *) XtMalloc((unsigned) sizeof(type))

       returns a pointer to the allocated storage.  If there is insufficient memory to allocate the new block, calls is a convenience macro that
       calls with the following arguments specified:

       (strcpy(XtMalloc((unsigned) strlen(str) + 1), str))

See Also
       X Window System Toolkit: The Complete Programmer's Guide and Specification, Paul J. Asente and Ralph Swick
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

																     XtMalloc(3Xt)
All times are GMT -4. The time now is 06:44 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy