Skip to content

Commit

Permalink
[Core] Fix a bug about releasing the task (Samsung#6333)
Browse files Browse the repository at this point in the history
Signed-off-by: Hwankyu Jhun <[email protected]>
  • Loading branch information
hjhun authored and bshsqa committed Sep 25, 2024
1 parent 3f42995 commit 6b7c440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tizen.Core/Interop/Interop.TizenCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ internal static partial class TizenCore
internal static extern ErrorCode TaskCreate(string name, bool useThread, out IntPtr handle);

// int tizen_core_task_destroy(tizen_core_task_h task);
[DllImport(Libraries.TizenCore, EntryPoint = "tizen_core_task_create")]
[DllImport(Libraries.TizenCore, EntryPoint = "tizen_core_task_destroy")]
internal static extern ErrorCode TaskDestroy(IntPtr handle);

// int tizen_core_task_run(tizen_core_task_h task);
Expand Down

0 comments on commit 6b7c440

Please sign in to comment.