Displaying 2 results from an estimated 2 matches for "action_t".
2010 Aug 20
0
[PATCH 1/2] Implement APEI ERST feature to Xen
...+ * INJection) interpreter framework.
+ */
+
+#define APEI_EXEC_PRESERVE_REGISTER 0x1
+
+int apei_exec_ctx_init(struct apei_exec_context *ctx,
+ struct apei_exec_ins_type *ins_table,
+ u32 instructions,
+ struct acpi_whea_header *action_table,
+ u32 entries)
+{
+ if (!ctx)
+ return -EINVAL;
+
+ ctx->ins_table = ins_table;
+ ctx->instructions = instructions;
+ ctx->action_table = action_table;
+ ctx->entries = entries;
+ return 0;
+}
+
+int __apei_exe...
2002 Oct 05
2
ogg123 remote interface
...sprintf (dest, "%02li:%05.2f", min, sec);
}
-------------- next part --------------
diff -urN -X diff.ignore ogg123.orig/buffer.c ogg123/buffer.c
--- ogg123.orig/buffer.c Sat Oct 5 14:40:18 2002
+++ ogg123/buffer.c Sat Oct 5 14:52:04 2002
@@ -153,13 +153,6 @@
}
-void free_action (action_t *action)
-{
- free(action);
-}
-
-
-
int compute_dequeue_size (buf_t *buf, int request_size)
{
int next_action_pos;
@@ -542,12 +535,6 @@
/* Note: Even if curfill is still 0, nothing bad will happen here */
- /* For simplicity, the number of bytes played must satisfy
- th...