Displaying 7 results from an estimated 7 matches for "482,13".
Did you mean:
482,12
2012 Nov 14
0
[PATCH] x86/nmi: self_nmi() should not unconditionally enable interrupts
...rrent callers have interrupts enabled, making the
code currently safe but dangerous. Also, fix a trailing whitespace issue.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
diff -r 8b93ac0c93f3 -r f3adcb7d84ea xen/arch/x86/nmi.c
--- a/xen/arch/x86/nmi.c
+++ b/xen/arch/x86/nmi.c
@@ -482,13 +482,14 @@ void nmi_watchdog_tick(struct cpu_user_r
* 8-3 and 8-4 in IA32 Reference Manual Volume 3. We send the IPI to
* our own APIC ID explicitly which is valid.
*/
-void self_nmi(void)
+void self_nmi(void)
{
+ unsigned long flags;
u32 id = get_apic_id();
- local_irq_disabl...
2001 Nov 20
2
patch to enable faster mirroring of large filesystems
...t f,FILE *fp)
+{
+ return send_file_list_proc(f,get_stdio,fp);
+}
struct file_list *recv_file_list(int f)
{
--- main.c.orig Fri Nov 2 14:48:47 2001
+++ main.c Thu Nov 8 18:01:37 2001
@@ -23,6 +23,8 @@
struct stats stats;
+static FILE *src_list_fp;
+
extern int verbose;
@@ -480,11 +482,13 @@
extern int cvs_exclude;
extern int delete_mode;
extern int delete_excluded;
+ extern int source_list;
if (cvs_exclude)
add_cvs_excludes();
if (delete_mode && !delete_excluded)
send_exclude_list(f_out);
- flist = send_file_list(f_out,argc,argv);
+ flist = (so...
2007 Feb 06
0
Branch 'interpreter' - 8 commits - libswfdec/swfdec_bits.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h libswfdec/swfdec_edittext.c libswfdec/swfdec_image.c libswfdec/swfdec_image.h libswfdec/swfdec_pattern.c libswfdec/swfdec_sprite.c test/dump.c
...db95f092791ed1e81ad2d2e4f9e3fb345d6f79
Author: Benjamin Otte <otte@gnome.org>
Date: Sun Feb 4 18:39:22 2007 +0100
Merge branch 'master' into interpreter
Conflicts:
libswfdec/swfdec_image.c
diff --cc libswfdec/swfdec_bits.c
index f3ea7c4,5013e49..21172f2
@@@ -482,13 -450,13 +482,13 @@@
g = swfdec_bits_get_u8 (bits);
b = swfdec_bits_get_u8 (bits);
- return SWF_COLOR_COMBINE (r, g, b, 0xff);
+ return SWFDEC_COLOR_COMBINE (r, g, b, 0xff);
}
-unsigned int
+SwfdecColor
swfdec_bits_get_rgba (SwfdecBits * bits)
{
- int r, g, b, a;
+ u...
2010 Sep 08
0
Correction to vec-subset speed patch
...ECALL(call, _("only 0's may be mixed with negative subscripts"));
}
}
- else return positiveSubscript(s, ns, nx);
- return R_NilValue;
+ else /* min == 0 */
+ return nonnegativeSubscript(s, ns, nx);
}
typedef SEXP (*StringEltGetter)(SEXP x, int i);
@@ -482,13 +500,14 @@
static SEXP
stringSubscript(SEXP s, int ns, int nx, SEXP names,
- StringEltGetter strg, int *stretch, Rboolean in, SEXP call)
+ StringEltGetter strg, int *stretch, SEXP call)
{
SEXP indx, indexnames;
int i, j, nnames, sub, extra;
int canstretch = *stretch;
/...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...new;
@@ -443,7 +455,7 @@ static void doneprogressbar(void *data)
#define IBUFSIZE 4096
static SEXP in_do_download(SEXP args)
{
- SEXP scmd, sfile, smode;
+ SEXP scmd, sfile, smode, sheaders;
const char *url, *file, *mode;
int quiet, status = 0, cacheOK;
#ifdef Win32
@@ -470,10 +482,13 @@ static SEXP in_do_download(SEXP args)
if(!isString(smode) || length(smode) != 1)
error(_("invalid '%s' argument"), "mode");
mode = CHAR(STRING_ELT(smode, 0));
- cacheOK = asLogical(CAR(args));
+ cacheOK = asLogical(CAR(args)); args = CDR(args);...
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...db95f092791ed1e81ad2d2e4f9e3fb345d6f79
Author: Benjamin Otte <otte@gnome.org>
Date: Sun Feb 4 18:39:22 2007 +0100
Merge branch 'master' into interpreter
Conflicts:
libswfdec/swfdec_image.c
diff --cc libswfdec/swfdec_bits.c
index f3ea7c4,5013e49..21172f2
@@@ -482,13 -450,13 +482,13 @@@
g = swfdec_bits_get_u8 (bits);
b = swfdec_bits_get_u8 (bits);
- return SWF_COLOR_COMBINE (r, g, b, 0xff);
+ return SWFDEC_COLOR_COMBINE (r, g, b, 0xff);
}
-unsigned int
+SwfdecColor
swfdec_bits_get_rgba (SwfdecBits * bits)
{
- int r, g, b, a;
+ u...
2007 Dec 20
0
13 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_xml.c libswfdec/swfdec_xml_node.c test/trace
...t;);
commit 6205c8de468e18e130e423fffdec6d7e5391ecae
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date: Thu Dec 20 13:30:55 2007 +0200
Expand array2 test somewhat and make it work correctly in version 5
diff --git a/test/trace/array2-5.swf b/test/trace/array2-5.swf
index 50d48ba..c14828b 100644
Binary files a/test/trace/array2-5.swf and b/test/trace/array2-5.swf differ
diff --git a/test/trace/array2-5.swf.trace b/test/trace/array2-5.swf.trace
index 6768915..3aa5771 100644
--- a/test/trace/array2-5.swf.trace
+++ b/test/trace/array2-5.swf.trace
@@ -1,569 +1,576 @@
-[, , , , , , , ,...