X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Ftrigger.h;h=1d47f3f09b62d89d024a250287fea5fb30b80035;hb=296ed880132c5d3f20d84b1ffea9959d8d6be76b;hp=521b150b1bec64983df52749c5a7399f147e8c9d;hpb=f85f8ebbfac946c19b3c6eb0f4170f579d0a4d25;p=openvswitch diff --git a/ovsdb/trigger.h b/ovsdb/trigger.h index 521b150b..1d47f3f0 100644 --- a/ovsdb/trigger.h +++ b/ovsdb/trigger.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2009 Nicira Networks +/* Copyright (c) 2009, 2011 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,18 +21,17 @@ struct ovsdb; struct ovsdb_trigger { - struct list node; /* !result: in struct ovsdb "triggers" list; - * result: in completion list. */ - struct list *completion; /* Completion list. */ + struct ovsdb_session *session; /* Session that owns this trigger. */ + struct list node; /* !result: in session->db->triggers; + * result: in session->completions. */ struct json *request; /* Database request. */ struct json *result; /* Result (null if none yet). */ long long int created; /* Time created. */ long long int timeout_msec; /* Max wait duration. */ }; -void ovsdb_trigger_init(struct ovsdb *, struct ovsdb_trigger *, - struct json *request, struct list *completion, - long long int now); +void ovsdb_trigger_init(struct ovsdb_session *, struct ovsdb_trigger *, + struct json *request, long long int now); void ovsdb_trigger_destroy(struct ovsdb_trigger *); bool ovsdb_trigger_is_complete(const struct ovsdb_trigger *);