This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread 10 (Thread 0x7790d18006c0 (LWP 145629) "prog"): | |
#0 0x00007790db99f335 in __GI___clock_nanosleep (clock_id=clock_id@entry=0, flags=flags@entry=0, req=0x7790d17fa010, rem=0x7790d17fa020) at ../sysdeps/unix/sysv/linux/clock_nanosleep.c:48 | |
#1 0x00007790db9aa3e7 in __GI___nanosleep (req=<optimized out>, rem=<optimized out>) at ../sysdeps/unix/sysv/linux/nanosleep.c:25 | |
#2 0x0000631608891a8c in core.thread.osthread.Thread.sleep(core.time.Duration) () | |
#3 0x00006316088b87f0 in core.internal.spinlock.SpinLock.yield(ulong) shared () | |
#4 0x00006316088b879a in core.internal.spinlock.SpinLock.lock() shared () | |
#5 0x00006316088c4343 in core.internal.gc.impl.conservative.gc.ConservativeGC.runLocked!(core.internal.gc.impl.conservative.gc.ConservativeGC.mallocNoSync(ulong, uint, ref ulong, const(TypeInfo)), core.internal.gc.impl.conservative.gc.mallocTime, core.internal.gc.impl.conservative.gc.numMallocs, ulong, uint, ulong, const(TypeInfo)).runLocked(ref ulong, ref uint, ref ulong, ref const(TypeInfo)) () | |
#6 0x000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.algorithm : remove, sort; | |
import std.range : SortedRange; | |
void fastRemove(ref SortedRange!(int[]) list, const int[] itemsToRemove) | |
{ | |
foreach (removeItem; itemsToRemove) | |
{ | |
ulong index = list.lowerBound(removeItem).length; | |
if (index < hashes.length && list[index] == removeItem) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
CRITICAL_SECTION criticalSection; | |
LONG ExceptionHandler(EXCEPTION_POINTERS *ExceptionInfo) { | |
asm("int $0x03"); | |
return EXCEPTION_CONTINUE_SEARCH; | |
} | |
DWORD ThreadFunction(void*) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7ff88aec4bdd: cc int3 | |
7ff88aec4bde: cc int3 | |
7ff88aec4bdf: cc int3 | |
- 7ff88aec4be0: 40 53 rex push rbx | |
- 7ff88aec4be2: 48 83 ec 20 sub rsp,0x20 | |
+ 7ff88aec4be0: 40 e9 5a 01 0d b6 rex jmp 0x7ff840f94d40 | |
7ff88aec4be6: 48 8b d9 mov rbx,rcx | |
7ff88aec4be9: e8 1a 00 00 00 call 0x7ff88aec4c08 | |
7ff88aec4bee: b2 01 mov dl,0x1 | |
@@ -154985,8 +154984,8 @@ Disassembly of section .text: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -43860,8 +43860,8 @@ Disassembly of section .data: | |
2368d: cc int3 | |
2368e: cc int3 | |
2368f: cc int3 | |
- 23690: 48 8d a4 24 00 00 00 lea rsp,[rsp+0x0] | |
- 23697: 00 | |
+ 23690: 40 e9 da 22 b8 f6 rex jmp 0xf6ba5970 | |
+ 23696: 00 00 add BYTE PTR [rax],al | |
23698: 49 89 d0 mov r8,rdx | |
2369b: 89 ca mov edx,ecx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+imp.AcquireSRWLockExclusive | |
+imp.AcquireSRWLockShared | |
+imp.ChangeTimerQueueTimer | |
+imp.CheckRemoteDebuggerPresent | |
+imp.CloseClipboard | |
+imp.CloseHandle | |
imp.CoInitialize | |
imp.CompareStringEx | |
imp.CreateEventExW | |
+imp.CreateEventW |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;void FileMetaDataProvider::setFileItem() | |
;{ | |
1e220: push r15 | |
1e222: push r14 | |
1e224: push r13 | |
1e226: push r12 | |
1e228: push rbp | |
1e229: push rbx | |
1e22a: mov rbx,rdi | |
1e22d: sub rsp,0xa8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;void FileMetaDataProvider::setFileItem() | |
;{ | |
1e220: push r15 | |
1e222: push r14 | |
1e224: push r13 | |
1e226: push r12 | |
1e228: push rbp | |
1e229: push rbx | |
1e22a: mov rbx,rdi | |
1e22d: sub rsp,0xa8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/packages/drawer/src/views/DrawerView.tsx b/packages/drawer/src/views/DrawerView.tsx | |
index 19363aad..f53897c4 100644 | |
--- a/packages/drawer/src/views/DrawerView.tsx | |
+++ b/packages/drawer/src/views/DrawerView.tsx | |
@@ -343,5 +343,7 @@ export default function DrawerView({ navigation, ...rest }: Props) { | |
const styles = StyleSheet.create({ | |
content: { | |
flex: 1, | |
+ maxHeight: '100%', | |
+ overflow: 'clip' as any, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
670530 | |
690230 | |
697990 | |
832440 | |
984700 | |
1066560 | |
1079080 | |
1164900 | |
1193480 | |
1205280 |
NewerOlder