Sponsored Content
Full Discussion: Cronjob not started??!!
Top Forums Shell Programming and Scripting Cronjob not started??!! Post 302295933 by mac4rfree on Tuesday 10th of March 2009 03:08:13 AM
Old 03-10-2009
thanx prismtx,

I think tat cud b a possible reasoning.. my server is located in US only. But i think u must have moved the clock by an hour. this should have happened at 12 am (am just guessing). Then how the job could have missed the 3 am trigger.

Please correct me if i am wrong.

Thanks for ur help,
Magesh
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Just getting started

Can anyone tell me what the command Banner means or does Gibby9 (4 Replies)
Discussion started by: Gibby9
4 Replies

2. UNIX for Dummies Questions & Answers

How can I get started.

I am new to all this UNIX thing and have a system with the following specs: Pentium 1.7 GHz 128MB RAM 20 GB HDD Windows ME My questions are: Can install and run UNIX in such a system? Do I have to stop using Windows? Is there a safe way to get the necessary software online? ... (5 Replies)
Discussion started by: ayalai
5 Replies

3. UNIX for Dummies Questions & Answers

newbie wants to get started

HI, I am trying to learn UNIX, taking some online courses at work on UNIX fundamentals. My goal is to take a few classes and then hopefully setup something on a PC at home to practice with some form of UNIX. Anyone have any suggestions on good starting places as far as literature, or... (3 Replies)
Discussion started by: roma33
3 Replies

4. UNIX for Dummies Questions & Answers

Help getting started

Dear all, I just found out that my company is thinking of installing a unix server and is considering either sun or ibm. The thing is that i want to learn these two systems before they take a decision and maybe it will be a big career booster. The problem is that i don't know anything about... (7 Replies)
Discussion started by: patslaiby
7 Replies

5. UNIX for Dummies Questions & Answers

Help getting started!!!!

Hi im a 15 year old, interested in beggining things like this...my main inpiration came from this article...How To Become A Hacker according to this my first language shouold be python...but i have ABSOLUTELY NO CLUE about where to dowload/learn it...is there anything else i should do along... (1 Reply)
Discussion started by: SonOfSparta
1 Replies

6. OS X (Apple)

I'm new and I am trying to get started with OS-X

I bought my first Mac a year ago December, and I love it. I have been interested in trying to write my own programs and don't even know where to start. I have never written any software before and was wondering if anyone could give me some recommendations on any books or other good websites that... (2 Replies)
Discussion started by: LittleWoman815
2 Replies

7. UNIX for Dummies Questions & Answers

getting started

hi world, I am trying to learn how to program in c, I've gotten a few books and have been reading them, one even came with bloodshed dev-c compiler, it is not working, every time I build the hello world program it always comes back saying " G__~1.EXE: installation problem, cannot exec `cpp': No... (1 Reply)
Discussion started by: jsayres
1 Replies

8. UNIX for Dummies Questions & Answers

Getting Started

Hello guys and dolls, first post happening here... Wanting to know where to start with Unix. Which Unix option/package is best for an absolute beginner and has a well documented, easy to grasp user guide(s). I have dabbled in some programming (basic PHP) and I have an old desktop pc which I... (6 Replies)
Discussion started by: TheUltimateNoob
6 Replies

9. UNIX for Dummies Questions & Answers

how to cancel a cronjob if the cronjob still running

hi everyone I'm newbie in this forum hope I can get some help here :) I have a command in crontab that executed every 1 minute sometime this command need more than 1 minute to finish the problem is, the crontab execute this command although it's not finish processing yet and causing the system... (7 Replies)
Discussion started by: 2j4h
7 Replies

10. Shell Programming and Scripting

How to get started with Unix

I'm new in UNIX learning. Can you please guide me. How to get start and then step by step things in Unix. (I know all basic commands) (5 Replies)
Discussion started by: Varsha katre
5 Replies
SoTimerSensor(3)						       Coin							  SoTimerSensor(3)

NAME
SoTimerSensor - The SoTimerSensor class is a sensor which will trigger at given intervals. Use sensors of this class when you want a job repeated at a certain interval, without explicitly needing to reschedule the sensor (i.e. SoTimerSensor automatically re-schedules itself after it has been triggered). SYNOPSIS
#include <Inventor/sensors/SoTimerSensor.h> Inherits SoTimerQueueSensor. Public Member Functions SoTimerSensor (void) SoTimerSensor (SoSensorCB *func, void *data) virtual ~SoTimerSensor (void) void setBaseTime (const SbTime &base) const SbTime & getBaseTime (void) const void setInterval (const SbTime &interval) const SbTime & getInterval (void) const virtual void schedule (void) virtual void unschedule (void) void reschedule (const SbTime &schedtime) Additional Inherited Members Detailed Description The SoTimerSensor class is a sensor which will trigger at given intervals. Use sensors of this class when you want a job repeated at a certain interval, without explicitly needing to reschedule the sensor (i.e. SoTimerSensor automatically re-schedules itself after it has been triggered). SoTimerSensor instances is commonly used to trigger animation updates at a constant framerate. Constructor &; Destructor Documentation SoTimerSensor::SoTimerSensor (void) Default constructor. Sets up an interval of 1/30th of a second. SoTimerSensor::SoTimerSensor (SoSensorCB *func, void *data) Constructor taking as parameters the sensor callback function and the userdata which will be passed the callback. See also: setFunction(), setData() SoTimerSensor::~SoTimerSensor (void) [virtual] Destructor. Member Function Documentation void SoTimerSensor::setBaseTime (const SbTime &baseref) Set the base trigger time. If you use this method, the trigger times will be on intervals from the given value. Without an explicitly set base time, the next trigger invocation after a trigger has happened will be on the current time plus the interval time. Note that this will of course cause the timer to drift. See also: getBaseTime() const SbTime & SoTimerSensor::getBaseTime (void) const Returns the base trigger time. See also: setBaseTime() void SoTimerSensor::setInterval (const SbTime &intervalref) Sets the time interval between each time the sensor triggers. See also: getInterval() const SbTime & SoTimerSensor::getInterval (void) const Returns the timer trigger interval. See also: setInterval() void SoTimerSensor::schedule (void) [virtual] Overrides the virtual schedule() method to be able to set up the base time, if this was not done by the user. If no base time was set, base time will then equal the current time. See also: unschedule(), isScheduled() Reimplemented from SoTimerQueueSensor. void SoTimerSensor::unschedule (void) [virtual] Overrides the virtual unschedule() method to handle unschedule() calls during triggering. Reimplemented from SoTimerQueueSensor. void SoTimerSensor::reschedule (const SbTime &schedtime) Set new trigger time based on the given schedule time, and schedules the sensor for triggering. Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoTimerSensor(3)
All times are GMT -4. The time now is 02:03 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy