Displaying 20 results from an estimated 32866 matches for "wait".
2010 May 09
1
Emule Crash every day
...no class object {0968e258-16c7-4dba-aa86-462dd61e31a3} could be created for context 0x1
err:ole:CoGetClassObject class {0968e258-16c7-4dba-aa86-462dd61e31a3} not registered
err:ole:CoGetClassObject no class object {0968e258-16c7-4dba-aa86-462dd61e31a3} could be created for context 0x1
err:ntdll:RtlpWaitForCriticalSection section 0x151b25c "?" wait timed out in thread 0009, blocked by 0024, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x151b25c "?" wait timed out in thread 0009, blocked by 0024, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x1...
2013 Jun 28
0
Server 2012 - 64bit NTPD Crash
....031199 setuptcp: try to bind to 127.0.0.1 port 3493
0.031199 listening on 127.0.0.1 port 3493
0.046800 Connected to UPS [sspro]: blazer_usb-sspro
0.046800 Can't open c:\Program Files
(x86)\NUT\sbin\..\etc/upsd.users: No
such file or directory
0.062400 mainloop: wait for 4 filedescriptors
0.062400 mainloop: wait for 4 filedescriptors
0.062400 mainloop: wait for 4 filedescriptors
0.078001 mainloop: wait for 4 filedescriptors
0.078001 UPS [sspro]: dump is done
0.078001 mainloop: wait for 4 filedescriptors
2.106025 mainloo...
2013 Jun 28
1
FW: Server 2012 - 64bit UPSD Crash
....031199 setuptcp: try to bind to 127.0.0.1 port 3493
0.031199 listening on 127.0.0.1 port 3493
0.046800 Connected to UPS [sspro]: blazer_usb-sspro
0.046800 Can't open c:\Program Files
(x86)\NUT\sbin\..\etc/upsd.users: No
such file or directory
0.062400 mainloop: wait for 4 filedescriptors
0.062400 mainloop: wait for 4 filedescriptors
0.062400 mainloop: wait for 4 filedescriptors
0.078001 mainloop: wait for 4 filedescriptors
0.078001 UPS [sspro]: dump is done
0.078001 mainloop: wait for 4 filedescriptors
2.106025 mainloo...
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...ovie-8.swf.trace \
mouse-scaled.as \
mouse-scaled.stas \
diff --git a/test/custom/mouse-movie-below-movie-5.swf.act b/test/custom/mouse-movie-below-movie-5.swf.act
deleted file mode 100644
index e1639d5..0000000
--- a/test/custom/mouse-movie-below-movie-5.swf.act
+++ /dev/null
@@ -1,17 +0,0 @@
-wait 300
-move 50, 50
-wait 300
-down
-wait 300
-move 140, 140
-wait 300
-move 50, 50
-wait 300
-up
-wait 300
-down
-wait 300
-move 140, 140
-wait 300
-up
-wait 300
diff --git a/test/custom/mouse-movie-below-movie-6.swf.act b/test/custom/mouse-movie-below-movie-6.swf.act
deleted file mode 100644
index e...
2015 Mar 31
0
upstart CentOS vs upstart Ubuntu is there any difference between them?
...detailBroker start/running, process 3749
pdoneLoginProctor start/running, process 3716
All the processes has been started at OS boot, that's fine.
This is the output from CentOS server:
# CentOS 6.6
root at staging:/etc/init# initctl list
// rest of processes goes here
pdoneVendorBroker stop/waiting
repToolBroker stop/waiting
emailBroker stop/waiting
cmeBroker stop/waiting
messageBroker stop/waiting
shareEventHandler stop/waiting
edetailBroker stop/waiting
pdoneLoginProctor stop/waiting
None processes has been started after OS boot, and that's wrong. Why? What
I'm missing here? Can...
2004 Mar 30
5
Caller entered digits ignored during wait....
Greetings,
Below is part of the contents of my extensions.conf file.
exten => s,1,Wait,1 ; Wait a second before
answering.
exten => s,2,Answer
exten => s,3,ResponseTimeout,10 ; Set the amount of
time the user
; has to
make a selection.
exten => s,4,DigitTimeout,...
2006 Nov 16
6
DTrace hooks for CPU caps
Hello DTracers,
The CPU caps project (http://www.opensolaris.org/os/project/rm/rctls/cpu-caps/)
introduces kernel "wait queues" where threads may be placed to enforce caps.
I would like to make this visible through DTrace and to add two new probes to
the sched provider with the following semantics:
cpucaps-sleep Probe that fires immediately before the current thread is
placed on a wait queue. The lwpsinfo_t...
2007 Apr 18
2
[PATCH] Simplify smp_call_function*() by using common implementation
...===========================================
--- a/arch/i386/kernel/smp.c
+++ b/arch/i386/kernel/smp.c
@@ -515,14 +515,26 @@ void unlock_ipi_call_lock(void)
static struct call_data_struct *call_data;
-static void __smp_call_function(void (*func) (void *info), void *info,
- int nonatomic, int wait)
+
+static int __smp_call_function_mask(cpumask_t mask,
+ void (*func)(void *), void *info,
+ int wait)
{
struct call_data_struct data;
- int cpus = num_online_cpus() - 1;
+ cpumask_t allbutself;
+ int cpus;
+
+ /* Can deadlock when called with interrupts disabled */
+ WARN_ON(irqs...
2007 Apr 18
2
[PATCH] Simplify smp_call_function*() by using common implementation
...===========================================
--- a/arch/i386/kernel/smp.c
+++ b/arch/i386/kernel/smp.c
@@ -515,14 +515,26 @@ void unlock_ipi_call_lock(void)
static struct call_data_struct *call_data;
-static void __smp_call_function(void (*func) (void *info), void *info,
- int nonatomic, int wait)
+
+static int __smp_call_function_mask(cpumask_t mask,
+ void (*func)(void *), void *info,
+ int wait)
{
struct call_data_struct data;
- int cpus = num_online_cpus() - 1;
+ cpumask_t allbutself;
+ int cpus;
+
+ /* Can deadlock when called with interrupts disabled */
+ WARN_ON(irqs...
2009 May 07
3
[PATCH] ocfs2_cluster_lock: code cleanup for redundant assignment
In fs/ocfs2/dlmglue.c:ocfs2_cluster_lock(), after label 'out:' the code is:
1373 if (wait && arg_flags & OCFS2_LOCK_NONBLOCK &&
1374 mw.mw_mask & (OCFS2_LOCK_BUSY|OCFS2_LOCK_BLOCKED)) {
1375 wait = 0;
1376 if (lockres_remove_mask_waiter(lockres, &mw))
1377 ret = -EAGAIN;
1378...
2002 May 07
3
openssh 3.1 and rsync dont work
...H
Version: 3.1p1
Platform: ix86
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: ssh
AssignedTo: openssh-unix-dev@mindrot.org
Programs that set a SIGCHLD handler before calling ssh wreak havoc on the
waitpid() calls within entropy.c and ssh-rand-helper. Entropy.c should set
the
SIGCHLD handler to SIG_DFL before calling ssh-rand-helper to avoid SIGCHLD
conflicts.
This was noticed when our ssh version was upgraded to 3.1. Our local rsync
processes were failing with the following output from SSH:
Co...
2010 Jul 04
1
Ubuntu DomU does not finish booting up.
...eduler
crond
[ OK ]
* Restarting OpenBSD Secure Shell server sshd
----
xend.log
[2010-07-04 13:14:30 9855] DEBUG (XendDomainInfo:1891)
XendDomainInfo.handleShutdownWatch
[2010-07-04 13:14:30 9855] DEBUG (DevController:139) Waiting for devices
tap2.
[2010-07-04 13:14:30 9855] DEBUG (DevController:139) Waiting for devices
vif.
[2010-07-04 13:14:30 9855] DEBUG (DevController:144) Waiting for 0.
[2010-07-04 13:14:30 9855] DEBUG (DevController:628)
hotplugStatusCallback /local/domain/0/backend/vif/32/0/hotplug-status.
[2010-07...
2014 May 15
2
[RFC PATCH v1 08/16] drm/radeon: use common fence implementation for fences
...eturn false;
>>>>> + }
>>>>> +
>>>>> + fence->fence_wake.flags = 0;
>>>>> + fence->fence_wake.private = NULL;
>>>>> + fence->fence_wake.func = radeon_fence_check_signaled;
>>>>> + __add_wait_queue(&fence->rdev->fence_queue, &fence->fence_wake);
>>>>> + fence_get(f);
>>>> That looks like a race condition to me. The fence needs to be added
>>>> to the wait queue before the check, not after.
>>>>
>>>> Apar...
2006 Sep 14
4
WAIT FOR DIGIT not working
Hello all,
I have been trying to solve this problem for days, with no luck.
When I run an AGI script from my extensions.conf, it seems no matter what I do, the "WAIT FOR DIGIT" command will not work. The system just flies past it without waiting a single millisecond, and of course my script crashes because it doesn't have the input it needs. I have run 3 different versions of Asterisk in the hopes of clearing this up, and presently am on 1.2.12.1.
M...
2014 Jan 20
1
Read factory0x7f32f4005940 was pretty quick last time, waiting for them
...er agents.
Then the call drops or the caller hangs up unable to hear.
I could see following lines inside full log
----------------------------------------------------------------------------------
[Jan 20 15:21:35] DEBUG[14982] audiohook.c: Write factory 0x7f32f4005940
was pretty quick last time, waiting for them.
[Jan 20 15:21:35] DEBUG[14988] audiohook.c: Write factory 0x7f32dc00a0d0
was pretty quick last time, waiting for them.
[Jan 20 15:21:35] DEBUG[15013] audiohook.c: Write factory 0x7f32f0016660
was pretty quick last time, waiting for them.
[Jan 20 15:21:35] DEBUG[14988] audiohook.c: Writ...
2011 Jul 29
2
special recursive filter
Hi,
I have a question about a special recursive filter problem.
What I have:
- given variables:
x: time series with rather randomly occuring '0' and '1'
wait: non negative integer
- a working but ineffectiv implementation (see below)
How the implementation works (what I want):
The filter should drill holes of distance 'wait' between the '1' in x, e.g.
x = 1 0 1 1 0 1 0 1 0 1 0 1 1 1 1
wait = 2
desired result:
result = 1 0 0 1 0 0 0...
2014 Jun 02
1
[RFC PATCH v1.3 08/16 1/2] drm/radeon: add timeout argument to radeon_fence_wait_seq
Am 02.06.2014 15:14, schrieb Maarten Lankhorst:
> This makes it possible to wait for a specific amount of time,
> rather than wait until infinity.
>
> Signed-off-by: Maarten Lankhorst <maarten.lankhorst at canonical.com>
> ---
> Splitted out version, I've noticed that I forgot to convert
> radeon_fence_wait_empty to long r, fixed.
> drivers/gpu...
2007 Jun 14
0
(no subject)
...)
XENBUS: Device with no driver: device/console/0
Freeing unused kernel memory: 196k freed
softcursor: no version for "struct_module" found: kernel tainted.
SCSI subsystem initialized
register_blkdev: cannot get major 8 for sd
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 1 seconds for /sys/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 2 seconds for /sys/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 4 seconds for /sys/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: N...
2005 Jan 24
4
Auto callout - reminder - is it possible?
I'm trying to get a script working on a website to send out automatic
email reminders to customers reminding them monthly to change furnace
filters. I haven't got one running successfully, yet.
That made me think - could it be done with a phone call using Asterisk?
A monthly automated phone call to remind people to change their furnace
filter?
I have no ability to figure this out
2010 Oct 28
0
Ragnarok Online french Client
...fixme:dinput:SysMouseAImpl_Acquire Clipping cursor to (0,0)-(1920,1200)
fixme:ddraw:IDirectDrawImpl_RestoreAllSurfaces (0x21e050): Stub
fixme:imm:ImmReleaseContext (0x30020, 0x119e18): stub
fixme:d3d_surface:IWineD3DBaseSurfaceImpl_Blt Can't handle WINEDDBLT_ASYNC flag right now.
err:ntdll:RtlpWaitForCriticalSection section 0x7d75b0 "?" wait timed out in thread 001b, blocked by 0023, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7d75b0 "?" wait timed out in thread 001b, blocked by 0023, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7d7...