Преглед изворни кода

Added async_uninit() to simplify failure paths.

tags/v0.9.3
Michael Brown пре 17 година
родитељ
комит
6601a7da6a
2 измењених фајлова са 37 додато и 0 уклоњено
  1. 36
    0
      src/core/async.c
  2. 1
    0
      src/include/gpxe/async.h

+ 36
- 0
src/core/async.c Прегледај датотеку

@@ -93,6 +93,42 @@ aid_t async_init ( struct async *async, struct async_operations *aop,
93 93
 	return async->aid;
94 94
 }
95 95
 
96
+/**
97
+ * Uninitialise an asynchronous operation
98
+ *
99
+ * @v async		Asynchronous operation
100
+ *
101
+ * Abandon an asynchronous operation without signalling the parent.
102
+ * You may do this only during the period between calling async_init()
103
+ * and returning to the parent for the first time.  It is designed to
104
+ * simplify the error paths of asynchronous operations that themselves
105
+ * spawn further asynchronous operations.
106
+ *
107
+ * An example may help:
108
+ *
109
+ *     int start_something ( ..., struct async *parent ) {
110
+ *         struct my_data_structure *myself;
111
+ *
112
+ *         ... allocate memory for myself ...
113
+ *
114
+ *         async_init ( &myself->async, &my_async_operations, parent );
115
+ *         if ( ( rc = start_child_operation ( ..., &myself->async ) ) != 0 ) {
116
+ *             async_uninit ( &myself->async );
117
+ *             return rc;
118
+ *         }
119
+ *
120
+ *         return 0;
121
+ *     }
122
+ *
123
+ * It is valid to call async_uninit() on an asynchronous operation
124
+ * that has not yet been initialised (i.e. a zeroed-out @c struct @c
125
+ * async).
126
+ */
127
+void async_uninit ( struct async *async ) {
128
+	if ( async->parent )
129
+		list_del ( &async->siblings );
130
+}
131
+
96 132
 /**
97 133
  * SIGCHLD 'ignore' handler
98 134
  *

+ 1
- 0
src/include/gpxe/async.h Прегледај датотеку

@@ -138,6 +138,7 @@ extern struct async_operations orphan_async_operations;
138 138
 
139 139
 extern aid_t async_init ( struct async *async, struct async_operations *aop,
140 140
 			  struct async *parent );
141
+extern void async_uninit ( struct async *async );
141 142
 extern void async_ignore_signal ( struct async *async, enum signal signal );
142 143
 extern void async_signal ( struct async *async, enum signal signal );
143 144
 extern void async_signal_children ( struct async *async, enum signal signal );

Loading…
Откажи
Сачувај