X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fthreading%2Fthread.h;h=176aa810d038b1b833624453527cdd4868b4e73b;hb=7de4420e973684c55992624fb93b361a9a2fcda3;hp=535e700e036bee30d8e5ac2c039da1f911bc713c;hpb=2f8cc65e1dab6e1d2d76d908e2b34ce39f8c69a1;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..176aa81 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) 2018 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 */ @@ -31,7 +30,7 @@ namespace Dali /* * @brief Abstract class for thread functionality. Can be used for worker threads. */ -class DALI_IMPORT_API Thread +class DALI_CORE_API Thread { public: @@ -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; + }; }