libcore: "tag" -> "enum"

This commit is contained in:
Patrick Walton
2012-01-19 15:56:54 -08:00
parent c5a407b11b
commit 97ed871fc1
9 changed files with 20 additions and 20 deletions

View File

@@ -179,7 +179,7 @@ Tag: task_result
Indicates the manner in which a task exited
*/
tag task_result {
enum task_result {
/* Variant: tr_success */
tr_success;
/* Variant: tr_failure */
@@ -191,7 +191,7 @@ Tag: task_notification
Message sent upon task exit to indicate normal or abnormal termination
*/
tag task_notification {
enum task_notification {
/* Variant: exit */
exit(task, task_result);
}