Sponsored Content
Full Discussion: Autsys Job start_times issue
Top Forums UNIX for Advanced & Expert Users Autsys Job start_times issue Post 302582082 by abhi_duke on Thursday 15th of December 2011 12:21:20 AM
Old 12-15-2011
I found the problem for the above mentioned issue. The time in autosys server was out of sync.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issue with cron job

Hi, I have a script which I am able to run from command line. When I put this in cron, it fails and gives the following message: ld.so.1: /d00/documentum/product/5.2.5/bin/dmbasic: fatal: libdmcl40.so: open failed: No such file or directory The ksh script looks like this: # Set this... (1 Reply)
Discussion started by: nattynatty
1 Replies

2. Shell Programming and Scripting

Issue with cron job -Please help

Hi , I have an issue with cron job that i have scheduled today. The problem is that when i run this script in command prompt it work good giving me the desired results but if i schedule this to run using cron job it failes giving a "syntax error in line 11 :$"..... Can anyone look into this and... (6 Replies)
Discussion started by: bsandeep_80
6 Replies

3. UNIX for Dummies Questions & Answers

Cron job issue

This is regarding my cron job. My cron entry 30 * * * 1-5,0 /work1/informix/sample/script1.sh 31 * * * 1-5,0 /work1/informix/sample/script2.sh Every 30 mins script1.sh is run. (mon thru friday and sunday) Every 30 mins script2.sh is run. (mon thru friday and sunday) This is based on the... (3 Replies)
Discussion started by: kenkanya
3 Replies

4. Shell Programming and Scripting

Job Scheduling Issue

Hi Guys, I am new to Unix, Please tell me how to schedule a job to be executed on saturday,sunday and on friday night 8:00 PM onwards. and also how to change the password of oracle user every year through unix? Please help me to resolve this issue... Regards, Mahesh Raghunandanan (1 Reply)
Discussion started by: mraghunandanan
1 Replies

5. Shell Programming and Scripting

cron job issue

Hi , I want to run script every minute so i added . cron entry as below usning crontab -e looks like */1 * * * * sh /home/sai/http_sim/http_start.sh but cron job is not running ? any way to start the cron or something ? Thanks, Raghavendra (2 Replies)
Discussion started by: raghavendra.nsn
2 Replies

6. Shell Programming and Scripting

Background job issue

How to bring a backgroud job say sample_script.sh to foreground (4 Replies)
Discussion started by: rafa_fed2
4 Replies

7. Shell Programming and Scripting

Issue in running job

I have a parameter A its value is given below A= 'Hi Hello' When I am trying to use this parameter in my script to call the job,its giving me invalid parameters due to space between Hi & Hello -param A=$A param A=Hi Hello. in above since there space after hi it will give invalid... (9 Replies)
Discussion started by: ginrkf
9 Replies

8. Shell Programming and Scripting

Autosys job scheduling issue,

Hi Friends, There is an Autosys scheduled job that runs on the second day of the month, and it is using the Business day calendar. So when the month starts on a weekend or there is a holiday at the beginning of the month the second business day and second day of the month obviously do not... (1 Reply)
Discussion started by: Aditya_001
1 Replies

9. UNIX for Beginners Questions & Answers

Cron Job Issue

Dear Members Seeking you help on my issue. this script need to run on every end of month.i configured as below. but it runs everyday. why 0 9 28-31 * * ] && /usr/bin/bash /u01///scripts/e.sh (3 Replies)
Discussion started by: ded325
3 Replies

10. UNIX for Beginners Questions & Answers

Cron Job Issue

My Friends I want to run a script only at the end of month.but i tried below cront entry its not working. pls help 0 9 28-31 ] && /usr/bin/bash /u01/app/scripts/CX-eom.shOs Details: AIX 7.1.0.0 Please use CODE tags as required by forum rules! (5 Replies)
Discussion started by: ded325
5 Replies
GLWAITSYNC(3G)							    OpenGL 3.3							    GLWAITSYNC(3G)

NAME
glWaitSync - instruct the GL server to block until the specified sync object becomes signaled C SPECIFICATION
void glWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout); PARAMETERS
sync Specifies the sync object whose status to wait on. flags A bitfield controlling the command flushing behavior. flags may be zero. timeout Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED. DESCRIPTION
glWaitSync causes the GL server to block and wait until sync becomes signaled. sync is the name of an existing sync object upon which to wait. flags and timeout are currently not used and must be set to zero and the special value GL_TIMEOUT_IGNORED, respectively[1]. glWaitSync will always wait no longer than an implementation-dependent timeout. The duration of this timeout in nanoseconds may be queried by calling glGet() with the parameter GL_MAX_SERVER_WAIT_TIMEOUT. There is currently no way to determine whether glWaitSync unblocked because the timeout expired or because the sync object being waited on was signaled. If an error occurs, glWaitSync does not cause the GL server to block. NOTES
glWaitSync is available only if the GL version is 3.2 or higher. ERRORS
GL_INVALID_OPERATION is generated if sync is not the name of a sync object. GL_INVALID_VALUE is generated if flags is not zero. GL_INVALID_VALUE is generated if timeout is not GL_TIMEOUT_IGNORED. SEE ALSO
glFenceSync(), glClientWaitSync() COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/. NOTES
1. flags and timeout are placeholders for anticipated future extensions of sync object capabilities. They must have these reserved values in order that existing code calling glWaitSync operate properly in the presence of such extensions. OpenGL 3.3 03/08/2011 GLWAITSYNC(3G)
All times are GMT -4. The time now is 02:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy