memory increasing


 
Thread Tools Search this Thread
Top Forums Programming memory increasing
# 1  
Old 10-21-2005
memory increasing

On Alpha True64 UNIX platform, we use "ps aux" command to display the process information, it also displays the %MEM,VSZ, RRS field. The question is that which field really indicates the program's memeory is increasing, thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Swap memory usage keeps increasing.

Hi the version is RedHat 6.2 (Oracle DB server) I don't know why swap memory usage keeps increasing... I used to check swap memory usage Free -m and another way. total used free shared buffers cached Mem: 32183 31861 322 ... (3 Replies)
Discussion started by: tom8254
3 Replies

2. Hardware

Increasing the filesystem size

Hi Guys We have a VM machine, now I want to increase the size of the filesystem. We are running RHEL6 O/S. I have filesystem that is 500GB I want to increase that filesystem to 1.5 TB. The guy who manages the VM increased the size on the VM machine, now how do I make sure that the... (7 Replies)
Discussion started by: Phuti
7 Replies

3. AIX

Problem in increasing filesystem

Hi Friends, I have a problem while increasing the fileystem. Actually the filesystem is 256 gb and i have to add another 256 gb.So i got a new lun(hdisk) with 256 gb. I added to the vg using the extendvg command. It was successfully added, and when i checked the free pp's in vg it was showing... (4 Replies)
Discussion started by: Mohamed Thamim
4 Replies

4. UNIX for Dummies Questions & Answers

Increasing order

Hi , I have around 1000000 odd lines in a file in random order. The file looks like this: >string102 >string10437183 >string514 >string10435771 >string10437259 >string1049931 >string1342 I want to arrange it in increasing order: >string102 >string514 >string1342... (3 Replies)
Discussion started by: qwerty193
3 Replies

5. Solaris

Increasing inodes

Hi , Can someone help me to increase "inode" in solaris 9? Thanks in advance, Gowtham (8 Replies)
Discussion started by: gowthamakanthan
8 Replies

6. UNIX for Dummies Questions & Answers

var memory usage increasing

Hi all Just a couple days ago my /var/ partition was at 63% now its shot up to 83%. I checked my log file sizes and they same ok # ls -l |more total 38820 -rw-r----- 1 root root 3754 Aug 1 19:26 acpid drwxrwxrwx 2 root root 4096 Aug 24 04:11 admserv -rw------- ... (28 Replies)
Discussion started by: mcraul
28 Replies

7. Solaris

increasing /var

i need to increase the size of my /var filesystem but i have no idea how to do it. Filesystem kbytes used avail capacity Mounted on /dev/dsk/c0t3d0s0 144799 74952 55377 58% / /dev/dsk/c0t3d0s6 342183 201079 106894 66% /usr /proc ... (0 Replies)
Discussion started by: roguekitton
0 Replies

8. Solaris

Increasing File system

Dear all.... I want to increase the file system /u01 from 5 GB to 8GB. So what would be the command... Thanx in Advance.... (1 Reply)
Discussion started by: rosyblue
1 Replies

9. HP-UX

Help on increasing fs size

Hi Experts, I am not sure whether my question should be in this thread or some other one. I am using HP Tru64 system. Currently one of my filesystem /others is almost full. I need to know the exact commands to increase this filesystem. Please show me how to check for free partitions and add... (5 Replies)
Discussion started by: kingsto88
5 Replies

10. Programming

memory increasing on UNIX

hi, i'm writing a program that is running always... but, i have a problem that memory is increasing.. i want to know whether does stack size inscease or not, when program is running.. i don't know what is the cause stack or heap... i need some help.. :( (1 Reply)
Discussion started by: netfer
1 Replies
Login or Register to Ask a Question
iec(1)							      General Commands Manual							    iec(1)

NAME
iec - Instruction Emulator Control SYNOPSIS
iec p | s [value] iec p | s [keyword] OPTIONS
The following options are used with the iec command: Sets or displays the current option setting for the parent process. Sets or displays the current option setting for the system. The following keywords are used with the p option: Resets the current option settings to the default settings for the parent process. Does not print the instruction emulation warning message for the parent process. Disables instruction emulation. Any programs that attempt to execute instructions that are not implemented in the host processor will receive the SIGILL (illegal instruction) signal. Prints the instruction emulation warning messages for all instances of instruction emulation. By default, a message is only printed for the first instance. The following keywords are used with the s option: Resets the current option settings to the default settings for the system. Does not print the instruction emulation warning message for the system. If value is not specified, the current option setting is displayed. You can specify value as either 0 (zero) or 1 (one). If value is 0 (zero), the option is turned on and messages are not displayed. If value is 1 (one), the option is turned off and messages are displayed. Keywords can be used singly or in any combination. However, the reset keyword overrides any other keywords that it is used with. Usually, the parent process is the shell. DESCRIPTION
Some processors in the Alpha processor family do not implement all of the instructions defined in the Alpha architecture. The operating system provides an instruction emulator that permits all programs written for the Alpha architecture to run, regardless of the Alpha pro- cessor being used. When the operating system encounters an instruction that is not implemented by the host processor, the default action is to emulate the instruction and print a message informing the user process that the emulation has occurred. By default, the operating system prints a mes- sage only for the first instance of emulation, although it continues to emulate any other non-implemented instructions that it encounters. The message has the form: "inst emulated pid=nnn <prog_name> va=0xvirtual_addrpc=0xpc_addr inst=0xactual_instr". Receiving this message tells you that your application will run at less than its optimal level of performance. You may wish to recompile your program to get bet- ter performance. For information on how to compile for a specific hardware platform, see the compiler manpage for the language you are using. In addition, the default action for the operating system is to not deliver a SIGILL signal to the parent process when an emulated instruc- tion is encountered. These defaults are satisfactory for most users, but some users require a different behavior and want to specify their own Instruction Emu- lator Control (IEC). The iec command enables or disables the display of "inst emulated" messages. The command sets or displays the IEC_NOPRINT, IEC_NOEMUL, and IEC_VERBOSE flags, as defined in setsysinfo(2). RESTRICTIONS
You must be superuser to set the system option. EXAMPLES
Both of the following commands disable messages for the parent process: # iec p 0 # iec p noprint Both of the following commands enable messages for the system: # iec s 1 # iec s reset The following command enables the printing of a message for each emulated instruction: # iec p verbose SEE ALSO
getsysinfo(2), setsysinfo(2) iec(1)