Sponsored Content
Top Forums Shell Programming and Scripting finding idle time of a process Post 302102408 by Krrishv on Wednesday 10th of January 2007 08:34:45 AM
Old 01-10-2007
Lightbulb

Please throw some lights on this.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

finding idle users

I am trying to write a script that will list the idle users on my system which is running HPUX 11.11. The script is currently written as : who -u > /home/rfm/scripts/user.txt echo " There are currently... " wc -l /home/rfm/scripts/user.txt echo " User logins on System : `uname -n` ... (3 Replies)
Discussion started by: rfmurphy_6
3 Replies

2. UNIX for Dummies Questions & Answers

How to see if the process is idle

We are running AIX 5.3 and for ICICS Printing we have process called cicstermp runing whcih attaches the print to print queue But is process is triggered when ever a print is to be given Can we find the processes which are idle I mean every time a print is given it creats a new cicstermp... (1 Reply)
Discussion started by: pbsrinivas
1 Replies

3. Shell Programming and Scripting

User Idle Time

Does anyone know how do you determine the user idle time of stdin in order to log the user out for being idle too long. I would like to write a c program to do this but I it is not clear upon how to determine idle time from keyboard input. (9 Replies)
Discussion started by: cpaquette
9 Replies

4. Shell Programming and Scripting

How to kill process after x idle min?

I need a script to kill those process id whose idle time is more than 30min plz help me (3 Replies)
Discussion started by: salil2012
3 Replies

5. Shell Programming and Scripting

How to run a process when the computer is idle?

Hi there, I wrote a script that scans a folder for new files. I don't want to run it at specific times but only when the computer is NOT busy. I tried to use nice but it doesn't really work. I mean, even if my process has less priority, it still slows down the other processes. I did a test... (3 Replies)
Discussion started by: chebarbudo
3 Replies

6. HP-UX

how to fetch idle time

HP-UX B.11.23 ia64 Hi everyone, First of all I am new member to this forum. Thankyou all for this forum, it helped me many times. Coming to my question,I am writing a C program to find the log info of the users who are currently logged in(precisely what who -u do). I am able to get... (0 Replies)
Discussion started by: bhiku matre
0 Replies

7. AIX

Kill IDLE Process using script !!!

Dear Friends , I am using DB2 database in AIX 5.3 server . In my server some IDLE process are generated after several times which I need to kill it manually each and every time . The process I query like following : root@bagpuss $ ps auxw|sort -r +3|head -10 USER PID %CPU %MEM ... (3 Replies)
Discussion started by: shipon_97
3 Replies

8. UNIX for Advanced & Expert Users

idle time again

I need to find the idle time on a machine in the manner: How long time ago somebody did the last action with mouse or keyboard? Unfortunately "w" doesn't do this. It produced the following output on a machine a user was actually working on with an application: 15# w 15:55:28 up 15 days, ... (1 Reply)
Discussion started by: elbrand
1 Replies

9. Shell Programming and Scripting

Kill idle Process using a script

Hi, I need a script that can automatically kill all processes named "webrepn" and "webrebw" if idle for more than 30 minutes. Then I will have a Cron Job to run the script every night or 2-3 times a day depends on how this script helps. Right now, I run "ps -ef | grep webrebn" and "kill -9... (7 Replies)
Discussion started by: MaggieL
7 Replies

10. UNIX for Dummies Questions & Answers

Idle Process Exhausting CPU

I noticed when having some trouble with code I was testing that the CPU was becoming exhausted and I would have to reboot. After rebooting a couple times I decided to check for other problems before trying my code again. That's when I noticed that the CPU with the idle process was through the roof:... (5 Replies)
Discussion started by: Azrael
5 Replies
std::auto_ptr< _Tp >(3cxx)												std::auto_ptr< _Tp >(3cxx)

NAME
std::auto_ptr< _Tp > - SYNOPSIS
Public Types typedef _Tp element_type Public Member Functions auto_ptr (element_type *__p=0) throw () auto_ptr (auto_ptr &__a) throw () template<typename _Tp1 > auto_ptr (auto_ptr< _Tp1 > &__a) throw () auto_ptr (auto_ptr_ref< element_type > __ref) throw () ~auto_ptr () element_type * get () const throw () template<typename _Tp1 > operator auto_ptr< _Tp1 > () throw () template<typename _Tp1 > operator auto_ptr_ref< _Tp1 > () throw () element_type & operator* () const throw () element_type * operator-> () const throw () auto_ptr & operator= (auto_ptr &__a) throw () template<typename _Tp1 > auto_ptr & operator= (auto_ptr< _Tp1 > &__a) throw () auto_ptr & operator= (auto_ptr_ref< element_type > __ref) throw () element_type * release () throw () void reset (element_type *__p=0) throw () Detailed Description template<typename _Tp>class std::auto_ptr< _Tp > A simple smart pointer providing strict ownership semantics. The Standard says: An auto_ptr owns the object it holds a pointer to. Copying an auto_ptr copies the pointer and transfers ownership to the destination. If more than one auto_ptr owns the same object at the same time the behavior of the program is undefined. The uses of auto_ptr include providing temporary exception-safety for dynamically allocated memory, passing ownership of dynamically allocated memory to a function, and returning dynamically allocated memory from a function. auto_ptr does not meet the CopyConstructible and Assignable requirements for Standard Library container elements and thus instantiating a Standard Library container with an auto_ptr results in undefined behavior. Quoted from [20.4.5]/3. Good examples of what can and cannot be done with auto_ptr can be found in the libstdc++ testsuite. _GLIBCXX_RESOLVE_LIB_DEFECTS 127. auto_ptr<> conversion issues These resolutions have all been incorporated. Definition at line 87 of file auto_ptr.h. Member Typedef Documentation template<typename _Tp> typedef _Tp std::auto_ptr< _Tp >::element_type The pointed-to type. Definition at line 94 of file auto_ptr.h. Constructor &; Destructor Documentation template<typename _Tp> std::auto_ptr< _Tp >::auto_ptr (element_type *__p = 0) throw () [inline], [explicit] An auto_ptr is usually constructed from a raw pointer. Parameters: p A pointer (defaults to NULL). This object now owns the object pointed to by p. Definition at line 103 of file auto_ptr.h. template<typename _Tp> std::auto_ptr< _Tp >::auto_ptr (auto_ptr< _Tp > &__a) throw () [inline] An auto_ptr can be constructed from another auto_ptr. Parameters: a Another auto_ptr of the same type. This object now owns the object previously owned by a, which has given up ownership. Definition at line 112 of file auto_ptr.h. template<typename _Tp> template<typename _Tp1 > std::auto_ptr< _Tp >::auto_ptr (auto_ptr< _Tp1 > &__a) throw () [inline] An auto_ptr can be constructed from another auto_ptr. Parameters: a Another auto_ptr of a different but related type. A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type. This object now owns the object previously owned by a, which has given up ownership. Definition at line 125 of file auto_ptr.h. template<typename _Tp> std::auto_ptr< _Tp >::~auto_ptr () [inline] When the auto_ptr goes out of scope, the object it owns is deleted. If it no longer owns anything (i.e., get() is NULL), then this has no effect. The C++ standard says there is supposed to be an empty throw specification here, but omitting it is standard conforming. Its presence can be detected only if _Tp::~_Tp() throws, but this is prohibited. [17.4.3.6]/2 Definition at line 170 of file auto_ptr.h. template<typename _Tp> std::auto_ptr< _Tp >::auto_ptr (auto_ptr_ref< element_type >__ref) throw () [inline] Automatic conversions. These operations convert an auto_ptr into and from an auto_ptr_ref automatically as needed. This allows constructs such as auto_ptr<Derived> func_returning_auto_ptr(.....); ... auto_ptr<Base> ptr = func_returning_auto_ptr(.....); Definition at line 260 of file auto_ptr.h. Member Function Documentation template<typename _Tp> element_type* std::auto_ptr< _Tp >::get (void) const throw () [inline] Bypassing the smart pointer. Returns: The raw pointer being managed. You can get a copy of the pointer that this object owns, for situations such as passing to a function which only accepts a raw pointer. Note: This auto_ptr still owns the memory. Definition at line 211 of file auto_ptr.h. template<typename _Tp> element_type& std::auto_ptr< _Tp >::operator* () const throw () [inline] Smart pointer dereferencing. If this auto_ptr no longer owns anything, then this operation will crash. (For a smart pointer, no longer owns anything is the same as being a null pointer, and you know what happens when you dereference one of those...) Definition at line 181 of file auto_ptr.h. template<typename _Tp> element_type* std::auto_ptr< _Tp >::operator-> () const throw () [inline] Smart pointer dereferencing. This returns the pointer itself, which the language then will automatically cause to be dereferenced. Definition at line 194 of file auto_ptr.h. template<typename _Tp> auto_ptr& std::auto_ptr< _Tp >::operator= (auto_ptr< _Tp > &__a) throw () [inline] auto_ptr assignment operator. Parameters: a Another auto_ptr of the same type. This object now owns the object previously owned by a, which has given up ownership. The object that this one used to own and track has been deleted. Definition at line 136 of file auto_ptr.h. References std::auto_ptr< _Tp >::reset(). template<typename _Tp> template<typename _Tp1 > auto_ptr& std::auto_ptr< _Tp >::operator= (auto_ptr< _Tp1 > &__a) throw () [inline] auto_ptr assignment operator. Parameters: a Another auto_ptr of a different but related type. A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type. This object now owns the object previously owned by a, which has given up ownership. The object that this one used to own and track has been deleted. Definition at line 154 of file auto_ptr.h. References std::auto_ptr< _Tp >::reset(). template<typename _Tp> element_type* std::auto_ptr< _Tp >::release () throw () [inline] Bypassing the smart pointer. Returns: The raw pointer being managed. You can get a copy of the pointer that this object owns, for situations such as passing to a function which only accepts a raw pointer. Note: This auto_ptr no longer owns the memory. When this object goes out of scope, nothing will happen. Definition at line 225 of file auto_ptr.h. template<typename _Tp> void std::auto_ptr< _Tp >::reset (element_type *__p = 0) throw () [inline] Forcibly deletes the managed object. Parameters: p A pointer (defaults to NULL). This object now owns the object pointed to by p. The previous object has been deleted. Definition at line 240 of file auto_ptr.h. Referenced by std::auto_ptr< _Tp >::operator=(). Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::auto_ptr< _Tp >(3cxx)
All times are GMT -4. The time now is 02:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy