search for: skipfil

Displaying 4 results from an estimated 4 matches for "skipfil".

Did you mean: skipfile
2012 Jul 02
0
[klibc:master] [BUILTIN] Merge SKIPFUNC/ SKIPFILE and only clear SKIPFUNC when leaving dotcmd
...bc/klibc.git;a=commit;h=21b878467fc1d46f8155e0f5ada315d741869262 Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Sat, 9 Jul 2011 22:05:22 +0800 Committer: maximilian attems <max at stro.at> CommitDate: Mon, 2 Jul 2012 10:45:36 +0200 [klibc] [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving dotcmd Currently upon leaving a dotcmd the evalskip state is reset so if a continue/break statement is used within a dot script it would have no effect outside of the dot script. This is inconsistent with other shells. This patch is based on one by Jilles Tj...
2012 Oct 05
0
2.0.2 klibc release
...upport H. Peter Anvin (1): [klibc] 2.0.1 released, next version is 2.0.2 Harald van Dijk (1): [klibc] [ARITH] Avoid imaxdiv when only one of the results is wanted Herbert Xu (3): [klibc] [BUILTIN] Eliminate unnecessary promotion in echocmd [klibc] [BUILTIN] Merge SKIPFUNC/SKIPFILE and only clear SKIPFUNC when leaving dotcmd [klibc] [VAR] Sanitise environment variable names on entry Jim Meyering (4): [klibc] [MEMALLOC] Avoid gcc warning: variable 'oldstackp' set but not used [klibc] [MEMALLOC] Avoid clang warning about dead store to "size&quot...
2006 Jan 27
0
patch for bugs in vorbis-tools-1.1.1
...tart += copy; diff -u -r X/VORBIS-TOOLS-1.1.1/OGG123/OGG123.C VORBIS-TOOLS-1.1.1/OGG123/OGG123.C --- X/VORBIS-TOOLS-1.1.1/OGG123/OGG123.C 2005-06-03 11:15:09.000000000 +0100 +++ VORBIS-TOOLS-1.1.1/OGG123/OGG123.C 2006-01-21 01:25:30.000000000 +0100 @@ -104,7 +104,7 @@ else sig_request.skipfile = 1; - sig_request.cancel = 1; + /*sig_request.cancel = 1;*/ sig_request.last_ctrl_c = now; break; diff -u -r X/VORBIS-TOOLS-1.1.1/OGG123/STATUS.C VORBIS-TOOLS-1.1.1/OGG123/STATUS.C --- X/VORBIS-TOOLS-1.1.1/OGG123/STATUS.C 2005-06-03 11:15:09.000000000 +0100 +++ VORBIS-TOOLS-1....
2002 Oct 05
2
ogg123 remote interface
...backs_t decoder_callbacks; + void *decoder_callbacks_arg; - /* Flags and counters galore */ - int eof = 0, eos = 0, ret; - int nthc = 0, ntimesc = 0; - int next_status = 0; - static int status_interval = 0; - - /* Reset all of the signal flags */ - sig_request.cancel = 0; - sig_request.skipfile = 0; - sig_request.exit = 0; - sig_request.pause = 0; - + char *convbuffer; + int convsize = AUDIO_CHUNK_SIZE; + + convbuffer = malloc(convsize); + if (convbuffer == NULL) { + status_error(_("Error: Out of memory in control_default().\n")); + exit(1); + } + /*...