search for: no_error

Displaying 20 results from an estimated 31 matches for "no_error".

Did you mean: io_error
2013 Aug 21
2
[PATCH 1/3] Rationalise whitespace to 4 space indentation with no trailing spaces
...ME, - SvcCtrlHandler - ); - - if (!gSvcStatusHandle) { - SvcReportEvent(TEXT("RegisterServiceCtrlHandler")); - return; - } - - gSvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS; - gSvcStatus.dwServiceSpecificExitCode = 0; - - ReportSvcStatus ( - SERVICE_START_PENDING, - NO_ERROR, - 3000 - ); - - SvcInit ( - dwArgc, - lpszArgv - ); + gSvcStatusHandle = RegisterServiceCtrlHandler ( + SVCNAME, + SvcCtrlHandler + ); + + if (!gSvcStatusHandle) { + SvcReportEvent(TEXT("RegisterServiceCtrlHandler")); + return; + } + + gSv...
2013 Aug 29
5
[PATCH 1/6] Rationalise whitespace to 4 space indentation with no trailing spaces
...ME, - SvcCtrlHandler - ); - - if (!gSvcStatusHandle) { - SvcReportEvent(TEXT("RegisterServiceCtrlHandler")); - return; - } - - gSvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS; - gSvcStatus.dwServiceSpecificExitCode = 0; - - ReportSvcStatus ( - SERVICE_START_PENDING, - NO_ERROR, - 3000 - ); - - SvcInit ( - dwArgc, - lpszArgv - ); + gSvcStatusHandle = RegisterServiceCtrlHandler ( + SVCNAME, + SvcCtrlHandler + ); + + if (!gSvcStatusHandle) { + SvcReportEvent(TEXT("RegisterServiceCtrlHandler")); + return; + } + + gSv...
2005 Nov 23
0
Some code change suggestions of thenwin32-service package
...> Subject: [Win32utils-devel] Some code change suggestions of > thenwin32-service package > > > Hi, > > I''d like to suggest some code modifications and tests. > > In service.c > line # 50 : Commet out 1 line > // SetTheServiceStatus(SERVICE_RUNNING, NO_ERROR, 0, 0); > > line # 260 : Insert 4 lines > if(rb_respond_to(self,rb_intern("service_init"))){ > rb_funcall(self,rb_intern("service_init"),0); > } > SetTheServiceStatus(SERVICE_RUNNING, NO_ERROR, 0, 0); > > In Ruby source > Insert...
2014 Sep 21
1
error receiving a fax ... but with a fax that was received without problems
Dear all, When receiving a fax, the extension is "spawned", despite nothing but positive messages (see below) The sending fax considers it a success & the verbose output of asterisk gives a "FAX_SUCCESS" and a "NO_ERROR" error in the ReceiveFax command. The problem is that all the next steps (conversion of the fax to pdf & sending it to a mailbox) are never executed. When I do this manually, there seems nothing wrong with the received file .... Any hints ? Asterisk output: * -- *Executing [502 at...
2010 Jul 12
1
Fax for Asterisk, capable of receiving from website but not from fax machine !!
..._EVT_HW_CLOSE st: WT_HW_CLS rt: WCLSNCLS pbx1*CLI> -- Channel 'DAHDI/1-1' fax session '53', [ 040.489798 ], STAT_SES_COMPLETE pbx1*CLI> -- Channel 'DAHDI/1-1' fax session '53' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 2, resolution: '204x196', transfer rate: '14400', remoteSID: 'FAX' pbx1*CLI> -- Executing [receive at fax-rx:21] System("DAHDI/1-1", "/usr/local/bin/fax2mail -p -f "/var/spool/asterisk/fax/2010-05-18_03:59:42_" --cid-number --c...
2011 Feb 21
1
Dialplan execution stops on app call even with TryExec (Am I missing something simple?)
...re? Below is a sample call where this happened: The last log line for this channel/call is: [Feb 21 09:10:53] VERBOSE[13730] res_fax_digium.c: -- Channel 'SIP/Level3_sip_peer_mcqueen-00002c3d' FAX session '228' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 8, resolution: '204x196', transfer rate: '9600', remoteSID: 'TIME' The context it's executing in is: [ext-fax-voicenation] exten => s,1,Noop(Receiving Fax for: ${FROM_DID} From: ${CALLERID(all)}) exten => s,n(receivefax),StopPlaytones exten => s,n...
2005 Nov 11
1
[Fwd: Thanks for win32-service]
Nice. :) -------------- next part -------------- An embedded message was scrubbed... From: Jamey Cribbs <cribbsj at oakwood.org> Subject: Thanks for win32-service Date: Fri, 11 Nov 2005 11:33:13 -0500 Size: 2505 Url: http://rubyforge.org/pipermail/win32utils-devel/attachments/20051111/5b46cd4f/Thanksforwin32-service.eml
2010 Apr 09
2
res fax help
...11] NOTICE[30809]: res_fax.c:906 generic_fax_exec: Channel 'DAHDI/1-1' did not return a frame; probably hung up. -- Channel 0/1, span 1 got hangup, cause 102 -- Channel 'DAHDI/1-1' FAX session '20' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 1, resolution: '204x98', transfer rate: '14400', remoteSID: '<numberredacted>' == Spawn extension (macro-fax_rcv, s, 3) exited non-zero on 'DAHDI/1-1' in macro 'fax_rcv' It appears to be dropping out of my macro fax_rcv at that point...
2005 Nov 26
1
Another patch of win32-service for nice startup.
...} + // wait for sevice initialization + for(i=1;TRUE;i++) + { + if(WaitForSingleObject(hStartEvent, 1000) == WAIT_OBJECT_0) + break; + + SetTheServiceStatus(SERVICE_START_PENDING, 0, i, 1000); + } + // The service has started. SetTheServiceStatus(SERVICE_RUNNING, NO_ERROR, 0, 0); @@ -241,9 +252,9 @@ } #endif - // Create Thread for service main - hThread = CreateThread(NULL,0,ThreadProc,0,0,&ThreadId); - if(hThread == INVALID_HANDLE_VALUE){ + // Create the event to signal the service to start. + hStartEvent = CreateEvent(NULL, TRUE, FALSE,...
2006 Dec 07
0
Fwd: win32-service problems with patch
...Event, 1000) == WAIT_OBJECT_0) - break; - - SetTheServiceStatus(SERVICE_START_PENDING, 0, i, 1000); + // no service to stop, no service handle to notify, + // nothing to do but exit + return; } // The service has started. SetTheServiceStatus(SERVICE_RUNNING, NO_ERROR, 0, 0); + SetEvent(hStartEvent); + // Main loop for the service. while(WaitForSingleObject(hStopEvent, 1000) != WAIT_OBJECT_0) { } + // Main loop for the service. + while(WaitForSingleObject(hStopCompletedEvent, 1000) != WAIT_OBJECT_0) + { + OutputDebugString(TEXT(&qu...
2011 Jun 29
1
dialplan execution stops after ReceiveFax
...ou can see, the received fax file should be processed by a bash-script, but after the call hangs up, the script is never executed. The console log shows: ====== -- Channel 'CAPI/ISDN1#02/38444421-5' FAX session '4' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 1, resolution: '204x98', transfer rate: '9600', remoteSID: '4932123847885' == Spawn extension (macro-faxin, s, 11) exited non-zero on 'CAPI/ISDN1#02/12345-5' in macro 'faxin' == Spawn extension (capi-in, 12345, 1) exited non-zero on 'CAPI...
2010 Feb 05
6
Still on spandsp/app_fax and T.38
This message is pointed directly to Steve Underwood. I tought it would not be nice to directly email him with a question that interests a good part of the Asterisk community, so here it is. :) Steve, remember a few days ago when we discussed about issues on Asterisk 1.6.1.13 and T.38 fax reception? Well I opened an issue on Mantis (https://issues.asterisk.org/view.php?id=16756) and turns out it
2009 Jul 09
3
Re: Install LiveZilla In wine
...the addresses > + * Flags [In] which types of addresses > + * Reserved [In] should be null > + * AdapterAddresses [In/Out] ptr to a buffer to receive addresses > + * SizePointer [In/Out] ptr to a variable with the size of the buffer pointed to > + * > + * RETURNS > + * Success: NO_ERROR > + * Failure: error code from winerror.h > + * > + * FIXME > + * Stub, returns ERROR_CALL_NOT_IMPLEMENTED > + */ > +ULONG WINAPI GetAdaptersAddresses( ULONG Family, ULONG Flags, PVOID Reserved, > + /*PIP_ADAPTER_ADDRESSES*/PVOID AdapterAddresses, PULONG SizePointer) > +{ &g...
2014 Mar 10
3
Oddity with FFA
Hi all, For the most part, we are finding that Fax for Asterisk works pretty well. However, we have seen some wierdness that we'd like to try to fix. Once in a while, we will get a partial result report for a given fax but when we look at the actual .tiff image, it looks to be complete. This is causing our users to not get a positive acknowledgement when they send the fax. Is there
2018 May 17
2
AMI status events with res_fax_spandsp.so
...: 1763210xxxx LocalStationID: 1763210xxxx FileName: /tmp/faxes/1526583220391_merged.tiff FaxStatus with res_fax_digium.so Event: FaxStatus Privilege: call,all Channel: Local/1952253xxxx at from-internal-user-00000001;1 FAX Session: 1 Operating Mode: FAX_TRANSMITTING Result: RSLT_IN_PROGRESS Error: NO_ERROR Call Duration: 12.088 ECM Mode: yes Data Rate: 14400 Image Resolution: 204x196 Image Encoding: ENC_MMR Page Size: LT Document Number: 1 Page Number: 1 File Name: '/tmp/faxes/1526583612555_merged.tiff' Tx Pages: 0 Tx Bytes: 512 Total Tx Lines: 0 Rx Pages: 0 Rx Bytes: 0 Total Rx Lines: 0 Tota...
2005 Nov 22
1
Win32 Service Timeout command
> -----Original Message----- > From: Jamey Cribbs [mailto:cribbsj at oakwood.org] > Sent: Tuesday, November 22, 2005 2:44 PM > To: Berger, Daniel > Subject: Win32 Service Timeout command > > > Hi, Dan. I have a quick question. Is there a way to set a timeout > variable when starting/creating a win32 service using your package? > When I attempt to start a
2009 Apr 01
19
Install LiveZilla In wine
http://www.ushost.com.br/wine/livezilla.jpg http://www.ushost.com.br/wine/error.txt Would you like to chat client livezilla run on linux and can not run in wine, because it is on. Net can someone help me? --> http://bugs.winehq.org/show_bug.cgi?id=14574 I tried to do what it says in this FAQ and also had no success. : /
1999 Sep 14
2
DBase File locking issues
Hi All, I am experiencing issues with the use of DBase files on a Samba 2.0.5a share, that appear to be due to locking problems. Basically, I have test programs for both DOS and Win32 that does nothing but append records to a DBase database (DBF/MDX files). If more than one client PC is appending to this file, data loss occurs. I get random data loss, with records lost, and index file
2011 Jun 19
3
Problem with ReceiveFAX app from FFA
...est, cause 16 pbx3*CLI> [Jun 18 12:54:30] NOTICE[11967]: res_fax.c:980 generic_fax_exec: Channel 'DAHDI/1-1' did not return a frame; probably hung up. pbx3*CLI> -- Channel 'DAHDI/1-1' FAX session '7' is complete, result: 'SUCCESS' (FAX_SUCCESS), error: 'NO_ERROR', pages: 2, resolution: '204x196', transfer rate: '12000', remoteSID: '' pbx3*CLI> == Spawn extension (fax-rx, receive, 20) exited non-zero on 'DAHDI/1-1' pbx3*CLI> q931_hangup: other hangup pbx3*CLI> NEW_HANGUP DEBUG: Calling q931_hangup, ourstate Dis...
2019 Jul 25
9
[Bug 111218] New: Segmentation fault in nv50_ir::NVC0LegalizeSSA::handleDIV when dividing result of textureSize
...er (ctx=0x55555578aed0, prog=0x5555557b6fd0) at ../src/mesa/state_tracker/st_glsl_to_tgsi.cpp:7461 #14 0x00007ffff30b5729 in _mesa_glsl_link_shader (ctx=ctx at entry=0x55555578aed0, prog=prog at entry=0x5555557b6fd0) at ../src/mesa/program/ir_to_mesa.cpp:3174 #15 0x00007ffff3000f8d in link_program (no_error=<optimized out>, shProg=<optimized out>, ctx=<optimized out>) at ../src/mesa/main/shaderapi.c:1206 #16 link_program_error (ctx=0x55555578aed0, shProg=0x5555557b6fd0) at ../src/mesa/main/shaderapi.c:1286 #17 0x00005555555553f2 in test_compile () #18 0x000055555555586b in main () I...