X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fthreading%2Fthread.h;h=0e21639af9b3a96104d946318afb7ad64ff15683;hb=4d0fd6b5f3ff1aa34321aea7d710fb888decd97c;hp=535e700e036bee30d8e5ac2c039da1f911bc713c;hpb=6e3411d394aefb0b2ef194bf3bd5cc7f70091d84;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/devel-api/threading/thread.h b/dali/devel-api/threading/thread.h index 535e700..0e21639 100644 --- a/dali/devel-api/threading/thread.h +++ b/dali/devel-api/threading/thread.h @@ -2,7 +2,7 @@ #define __DALI_THREAD_H__ /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,7 +21,6 @@ // INTERNAL INCLUDES #include - /** * The top level DALi namespace */ @@ -66,9 +65,9 @@ private: /** * Helper for the thread calling the entry function. - * @param[in] This A pointer to the current RenderThread object + * @param[in] This A pointer to the current thread object */ - static void* InternalThreadEntryFunc( void* This ); + static void InternalThreadEntryFunc( Thread& This ); // Undefined Thread( const Thread& ); @@ -79,6 +78,7 @@ private: struct ThreadImpl; ThreadImpl* mImpl; + }; }