diff options
author | Rider Linden <rider@lindenlab.com> | 2016-06-10 12:33:39 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2016-06-10 12:33:39 -0700 |
commit | 1e803a6bd7a89f60407a1fd2b2697d9e5dd23467 (patch) | |
tree | a544d88e891fb3701d13f60f6bc208e14dba7954 /indra/llmessage | |
parent | 26b1c020c8a8d240144dadae1285c14213cb1232 (diff) |
MAINT-6486: Be sure that all the script queue functions hit all objects and scripts in those objects. Convert from responders and callbacks to coroutines.
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/llassetstorage.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llmessage/llassetstorage.h b/indra/llmessage/llassetstorage.h index 4be677a4b0..0f23754096 100644 --- a/indra/llmessage/llassetstorage.h +++ b/indra/llmessage/llassetstorage.h @@ -181,6 +181,10 @@ protected: // Map of known bad assets typedef std::map<LLUUID,U64,lluuid_less> toxic_asset_map_t; +// *TODO: these typedefs are passed into the VFS via a legacy C function pointer +// future project would be to convert these to C++ callables (std::function<>) so that +// we can use bind and remove the userData parameter. +// typedef void (*LLGetAssetCallback)(LLVFS *vfs, const LLUUID &asset_id, LLAssetType::EType asset_type, void *user_data, S32 status, LLExtStat ext_status); |