From: sapier Date: Wed, 13 Nov 2013 20:49:50 +0000 (+0100) Subject: Add missing RequestQueue doc X-Git-Tag: 0.4.8~33 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eadc9431592f1e21a9211c3487334cd31ed54db1;p=oweals%2Fminetest.git Add missing RequestQueue doc --- diff --git a/src/util/thread.h b/src/util/thread.h index 70d41aeb9..6258a09a1 100644 --- a/src/util/thread.h +++ b/src/util/thread.h @@ -150,6 +150,13 @@ public: std::list > callers; }; +/** + * Notes for RequestQueue usage + * @param Key unique key to identify a request for a specific resource + * @param T ? + * @param Caller unique id of calling thread + * @param CallerData data passed back to caller + */ template class RequestQueue {