diff --git a/apps/file_manager/folder.cpp b/apps/file_manager/folder.cpp index b993de9..cdc9060 100644 --- a/apps/file_manager/folder.cpp +++ b/apps/file_manager/folder.cpp @@ -77,9 +77,6 @@ EsError FSDirEnumerate(Folder *folder) { EsDirectoryChild *buffer = nullptr; ptrdiff_t _entryCount = EsDirectoryEnumerateChildren(STRING(folder->path), &buffer); - // TODO. - EsSleep(5000); - if (!ES_CHECK_ERROR(_entryCount)) { for (intptr_t i = 0; i < _entryCount; i++) { FolderAddEntry(folder, buffer[i].name, buffer[i].nameBytes, &buffer[i]); diff --git a/desktop/desktop.cpp b/desktop/desktop.cpp index d8d6e80..943592f 100644 --- a/desktop/desktop.cpp +++ b/desktop/desktop.cpp @@ -580,6 +580,7 @@ void WindowTabDestroy(WindowTab *tab) { if (container->taskBarButton) { container->taskBarButton->exiting = true; container->taskBarButton->containerWindow = nullptr; + EsElementStartTransition(container->taskBarButton, ES_TRANSITION_FADE_OUT, ES_ELEMENT_TRANSITION_HIDE_AFTER_COMPLETE); EsElementRelayout(container->taskBarButton->parent); // The button is destroyed by ReorderItemAnimate, once the exit animation completes. } @@ -599,6 +600,7 @@ void WindowTabDestroy(WindowTab *tab) { tab->applicationInstance = nullptr; tab->exiting = true; tab->SetStyle(ES_STYLE_WINDOW_TAB_INACTIVE); + EsElementStartTransition(tab, ES_TRANSITION_FADE_OUT, ES_ELEMENT_TRANSITION_HIDE_AFTER_COMPLETE); container->openTabs.FindAndDelete(tab, true); EsElementRelayout(container->tabBand); // The tab is destroyed by ReorderItemAnimate, once the exit animation completes. diff --git a/kernel/files.cpp b/kernel/files.cpp index 5ee77b0..15e939c 100644 --- a/kernel/files.cpp +++ b/kernel/files.cpp @@ -84,7 +84,7 @@ struct { bool shutdown; volatile uint64_t totalHandleCount; - volatile uint64_t fileSystemsUnmounting; + volatile uintptr_t fileSystemsUnmounting; KEvent fileSystemUnmounted; } fs = { .fileSystemUnmounted = { .autoReset = true }, diff --git a/kernel/module.h b/kernel/module.h index 24e86cc..9a80cb5 100644 --- a/kernel/module.h +++ b/kernel/module.h @@ -285,7 +285,7 @@ bool KEventWait(KEvent *event, uint64_t timeoutMs = ES_WAIT_NO_TIMEOUT); // See struct KWriterLock { // One writer or many readers. K_PRIVATE LinkedList blockedThreads; - volatile int64_t state; // -1: exclusive; >0: shared owners. + volatile intptr_t state; // -1: exclusive; >0: shared owners. #ifdef DEBUG_BUILD volatile Thread *exclusiveOwner; #endif diff --git a/kernel/windows.cpp b/kernel/windows.cpp index a361742..7fb0baa 100644 --- a/kernel/windows.cpp +++ b/kernel/windows.cpp @@ -50,7 +50,7 @@ struct Window { Process *owner; void *apiWindow; EmbeddedWindow *embed; - volatile uint64_t handles; + volatile uint32_t handles; EsObjectID id; // Location: