Wakeups limit exceeded

We've been getting a crash on an app under development which is producing logs with the message: "45001 wakeups over the last 174 seconds (258 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds".


We have narrowed down the cause of our crash to some temporary debug code that was firing more-than-usual numbers of analytics events. Our analytics system uses AWS Kinesis Firehose: https://github.com/aws-amplify/aws-sdk-ios/tree/master/AWSKinesis


Obviously we can fix by disabling the debug code, but we'd like to have a better understanding of the problem so that we can make our code (or the AWS code) more robust. Additionally, we know of at least one end user that has experienced similar issues on a released title and we were unable to help them get our product working on their device - I now suspect their problems may have been related.


Basically, I don't know what a wakeup is in this context, so I therefore don't understand how to go about controlling the number that we trigger. It must refer to something other than ordinary multi-threading activity, because 150 thread switches per second is such a low limit that it would effectively prohibit multi-threading (the limit is only 2.5 per frame at 60fps!). I also don't think it can refer to background execution because our app doesn't do any background execution and the crashes are not associated with multitasking at all.


Can anyone tell me what a wakeup is in this context? And maybe give me advice to help me find the code that is causing them?

Can anyone tell me what a wakeup is in this context?

I’ve been wondering about this myself, so I spent some time digging into the origin of this number. This concept comes from the kernel, and you can look at how it’s calculated in the Darwin open source. Specifically, the droid you’re looking for here is the interrupt_wakeups as dispatch by the SENDING_NOTIFICATION__THIS_PROCESS_IS_CAUSING_TOO_MANY_WAKEUPS routine (you couldn’t get more descriptive than that!) in the osfmk/kern/task.c [1] and incremented in thread_unblock in osfmk/kern/sched_prim.c. In short, it seems to count the number of times that a blocked thread was unblocked because of an ‘interrupt’ [2].

And maybe give me advice to help me find the code that is causing them?

In situations like this, the System Trace instrument is your friend.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

[1] The links here are to the latest kernel source currently available, which is for macOS 10.14.1 and thus roughly corresponds to iOS 12.1. I’ve no reason to believe this has changed in the 2019 OS releases.

[2] In sneer quotes because interrupts are a complex thing in XNU.

Thanks for the response. To update on this:


  • I tried the System Trace instrument and was able to view the wakeups that occurred, but I still couldn't work out what the ultimate cause of the wakeups was. If I had to guess now after digging into the AWS kinesis code I'd say GCD or NSURLSession seem the most likely sources.
  • We did eventually get a more normal crash report (as opposed to the microstackshots report with the wakeups alert). The crash report led us to find a race condition in our analytics code (one thread wrote to an NSMutableArray while another thread read from it).
  • After fixing the race condition we could no longer reproduce any crashes. This leads me to believe that the wakeups alert is a bit of a red herring. Reading around the kernel code that eskimo linked to, it looks like the wakeups count can either be fatal or be a warning. I now suspect that it was just a warning that didn't have anything to do with the crashes we were experiencing.
  • I also found that our application had some code that was intended to prevent excessive uploading of analytics, but it had muddled milliseconds and seconds, so it wasn't effective. After verifying that crashes were no longer reproducible based on the race condition fix alone, we then fixed this bug. So, hopefully we've fixed the wakeups count too but we haven't really verified that.
As @eskimo say, wakeup is because of 'interrupt', but:
  1. MUST be asyn interrupt, include IQR, FIR. Soft interrupt or pageout is not 'wakeup'. Timer counter is the most common case.

  2. A task's wakeup is include all of its threads. So timer in different threads will increase your wakeup, otherwise maybe not.

There are cases I found:
  1. NSTimer, CADisplayLink

  2. dispatch_after

  3. semaphores contains wait_time or lock contains wait_time

There is also an debug case for me:

When you include OpenGLES or Metal, xcode will inject 2 threads watching draw call command. You can disable this feature in scheme, https://developer.apple.com/documentation/metal/frame_capture_debugging_tools/enabling_frame_capture. After that, all goes ok.


This is the code of getting wakeup count in your app, not only in the instrument. May help you:

Code Block c#include <mach/task.h>#include <mach/mach.h>BOOL GetSystemWakeup(NSInteger *interrupt_wakeup, NSInteger *timer_wakeup) {  struct task_power_info info = {0};  mach_msg_type_number_t count = TASK_POWER_INFO_COUNT;  kern_return_t ret = task_info(current_task(), TASK_POWER_INFO, (task_info_t)&info, &count);  if (ret == KERN_SUCCESS) {    if (interrupt_wakeup) {      *interrupt_wakeup = info.task_interrupt_wakeups;    }    if (timer_wakeup) {      *timer_wakeup = info.task_timer_wakeups_bin_1 + info.task_timer_wakeups_bin_2;    }    return true;  }  else {    if (interrupt_wakeup) {      *interrupt_wakeup = 0;    }    if (timer_wakeup) {      *timer_wakeup = 0;    }    return false;  }}


I try to reproduce a crash cause by wakeups limit exceed, sample code below:

    for (int i = 0; i < 500; i++) {
        NSThread *thread = [[NSThread alloc] initWithBlock:^{
            [[NSThread currentThread] setName:[NSString stringWithFormat:@"%d", i]];
            NSRunLoop *runLoop = [NSRunLoop currentRunLoop];
            [runLoop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];
            CADisplayLink *link4 = [CADisplayLink displayLinkWithTarget:self selector:@selector(threadCadisplayLink)];
            //            link4.frameInterval = 60;
            [link4 addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
            [runLoop run];
        }];
        [thread start];
    }
- (void)threadCadisplayLink {
    NSInteger index = arc4random()%100;
    NSObject *obj = [NSObject new];
    dispatch_async(dispatch_get_global_queue(0, 0), ^{
        self.info[@(index)] = obj;
    });
}

I get wake up times every second:

    static NSInteger old_interrupt_wakeup;
    static NSInteger old_timer_wakeup;
    static NSInteger old_idle_wakeup;
    [NSTimer scheduledTimerWithTimeInterval:1 repeats:true block:^(NSTimer * _Nonnull timer) {
        NSInteger interrupt_wakeup;
        NSInteger timer_wakeup;
        NSInteger idle_wakeup;
        rm_system_wakeup(&interrupt_wakeup, &timer_wakeup, &idle_wakeup);
        NSLog(@"interrupt_wakeup: %ld timer_wakeup:%ld idle_wakeup: %ld", interrupt_wakeup - old_interrupt_wakeup, timer_wakeup - old_timer_wakeup, idle_wakeup - old_idle_wakeup);
        old_interrupt_wakeup = interrupt_wakeup;
        old_timer_wakeup = timer_wakeup;
        old_idle_wakeup = idle_wakeup;
    }];

rm_system_wakeup is same as @Daniel-Duan said

I get interrupt_wakeup about 300000 every second, but fail to get Demo app crash.

2023-01-17 13:48:42.576934+0800 Demo[44926:1519725] interrupt_wakeup: 29684 timer_wakeup:5 idle_wakeup: 0
2023-01-17 13:48:43.577225+0800 Demo[44926:1519725] interrupt_wakeup: 30008 timer_wakeup:5 idle_wakeup: 10780509616
2023-01-17 13:48:44.577003+0800 Demo[44926:1519725] interrupt_wakeup: 30006 timer_wakeup:4 idle_wakeup: 0
2023-01-17 13:48:45.577459+0800 Demo[44926:1519725] interrupt_wakeup: 29505 timer_wakeup:3 idle_wakeup: 0
2023-01-17 13:48:46.577329+0800 Demo[44926:1519725] interrupt_wakeup: 30004 timer_wakeup:2 idle_wakeup: 0

Another question is what the difference between Crash with WAKEUPS subtype and wakeup event with a wakeups_resource-***.ips file, is wakeups_resource-***.ips means a crash happened?

I try to reproduce a crash cause by wakeups limit exceed

AFAIK hitting this ‘limit’ won’t actually trigger a crash. It generates a diagnostic report that looks a lot like a crash report but is not actually one. You can confirm that by reading the fine print. If you have a modern example, post it here and I’ll take a look. See Posting a Crash Report for advice on how to post it.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

I do experienced a crash, and I get device log from Xcode, the log type is Crash, and the detail is here:

Date/Time:        2023-01-17 12:01:55.292 +0800
End time:         2023-01-17 12:02:41.600 +0800
OS Version:       iPhone OS 16.2 (Build 20C5032e)
Architecture:     arm64e
Report Version:   40
Incident Identifier: 3860EFDF-BDD0-4303-BFCD-80FC03B0C801
Share With Devs:  Yes

Data Source:      Microstackshots
Shared Cache:     0DAAB138-6739-3028-ACF6-D15437B11B3F slid base address 0x19fbf8000, slide 0x1fbf8000

Command:          myAppName
Path:             /private/var/containers/Bundle/Application/8D383D95-DF47-4200-9151-549D1ACB9D7C/myAppName.app/myAppName
Identifier:       com.***.myAppName
Version:          8.7.80 (1)
Is First Party:   No
Beta Identifier:  481E9E73-4DBC-4704-8D9D-3D6CD279AEA1
Resource Coalition ID: 459
Architecture:     arm64
PID:              12311

Event:            wakeups
Action taken:     none
Wakeups:          45001 wakeups over the last 46 seconds (972 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45001
Wakeups duration: 46s
Duration:         46.31s
Duration Sampled: 44.53s
Steps:            12

Hardware model:   iPhone11,8
Active cpus:      6
HW page size:     16384
VM page size:     16384

OS Cryptex File Extents: 7595

Heaviest stack for the target process:
  7  ??? (libsystem_pthread.dylib + 2968) [0x1f4978b98]
  5  ??? (libsystem_pthread.dylib + 3576) [0x1f4978df8]
  5  ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 113836) [0x12e91bcac]
  4  ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 60964) [0x12e90ee24]
  4  ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 57596) [0x12e90e0fc]
  4  ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
  4  ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 17816) [0x12e904598]
  2  ??? (<68A58000-B5B1-3E03-A403-CDC010277494> + 26560) [0x12df727c0]
  2  ??? (libsystem_c.dylib + 165544) [0x1ae01f6a8]
  2  ??? (dyld + 25264) [0x1c5b412b0]
  1  ??? (dyld + 18184) [0x1c5b3f708]


Powerstats for:   myAppName [12311]
UUID:             05F57403-591C-3442-849C-D4867211251B
Path:             /private/var/containers/Bundle/Application/8D383D95-DF47-4200-9151-549D1ACB9D7C/myAppName.app/myAppName
Identifier:       com.***.myAppName
Version:          8.7.80 (1)
Is First Party:   No
Beta Identifier:  481E9E73-4DBC-4704-8D9D-3D6CD279AEA1
Resource Coalition ID: 459
Architecture:     arm64
Footprint:        368 KB -> 524.98 MB (+524.62 MB)
Pageins:          38292 pages
Start time:       2023-01-17 12:01:56.922 +0800
End time:         2023-01-17 12:02:41.450 +0800
Num samples:      12 (100%)
Primary state:    5 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS User Initiated, Requested Thread QoS User Initiated, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 12 samples Active
Power Source:     0 samples on Battery, 12 samples on AC
  7   start_wqthread + 7 (libsystem_pthread.dylib + 2968) [0x1f4978b98]
    5   _pthread_wqthread + 287 (libsystem_pthread.dylib + 3576) [0x1f4978df8]
      5   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 113836) [0x12e91bcac]
        4   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 60964) [0x12e90ee24]
          4   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 57596) [0x12e90e0fc]
            4   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
              4   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 17816) [0x12e904598]
                2   ??? (<68A58000-B5B1-3E03-A403-CDC010277494> + 26560) [0x12df727c0]
                  2   backtrace_symbols + 119 (libsystem_c.dylib + 165544) [0x1ae01f6a8]
                    2   dyld4::APIs::dladdr + 211 (dyld + 25264) [0x1c5b412b0]
                      1   dyld3::MachOLoaded::findClosestSymbol const + 488 (dyld + 18184) [0x1c5b3f708]
                      1   dyld3::MachOLoaded::findClosestSymbol const + 440 (dyld + 18136) [0x1c5b3f6d8]
                1   ??? (myAppName + 204096536) [0x110398418]
                  1   ??? (myAppName + 160731632) [0x10da3d1f0]
                    1   ??? (myAppName + 160731436) [0x10da3d12c]
                      1   ??? (myAppName + 160727416) [0x10da3c178]
                        1   ??? (myAppName + 160731112) [0x10da3cfe8]
                          1   -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 211 (CoreFoundation + 646080) [0x1a6a49bc0]
                            1   __NSDICTIONARY_IS_CALLING_OUT_TO_A_BLOCK__ + 23 (CoreFoundation + 79240) [0x1a69bf588]
                              1   ??? (myAppName + 160775036) [0x10da47b7c]
                                1   ??? (myAppName + 160729444) [0x10da3c964]
                                  1   +[_NSJSONReader validForJSON:depth:allowFragments:] + 319 (Foundation + 176808) [0x1a0d9c2a8]
                                    1   __NSArrayEnumerate + 275 (CoreFoundation + 23120) [0x1a69b1a50]
                                      1   -[NSArray countByEnumeratingWithState:objects:count:] + 167 (CoreFoundation + 23976) [0x1a69b1da8]
                                        1   -[NSArray getObjects:range:] + 115 (CoreFoundation + 24184) [0x1a69b1e78]
                                          1   -[_NSCallStackArray objectAtIndex:] + 119 (Foundation + 836432) [0x1a0e3d350]
                                            1   backtrace_symbols + 119 (libsystem_c.dylib + 165544) [0x1ae01f6a8]
                                              1   dyld4::APIs::dladdr + 211 (dyld + 25264) [0x1c5b412b0]
                                                1   dyld3::MachOLoaded::findClosestSymbol const + 416 (dyld + 18112) [0x1c5b3f6c0]
                1   ??? (myAppName + 129341428) [0x10bc4d7f4]
                  1   ??? (myAppName + 212086676) [0x110b36f94]
                    1   ??? (myAppName + 212088144) [0x110b37550]
                      1   ??? (myAppName + 212087236) [0x110b371c4]
                        1   -[NSAllDescendantPathsEnumerator nextObject] + 95 (Foundation + 451276) [0x1a0ddf2cc]
                          1   -[NSAllDescendantPathsEnumerator nextObject] + 95 (Foundation + 451276) [0x1a0ddf2cc]
                            1   lstat + 8 (libsystem_kernel.dylib + 11504) [0x1e4332cf0]
        1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 67312) [0x12e9106f0]
          1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
            1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 17816) [0x12e904598]
              1   nw_endpoint_resolver_start_next_child + 3859 (Network + 4709820) [0x1a720fdbc]
                1   nw_endpoint_handler_start + 1031 (Network + 4851656) [0x1a72327c8]
                  1   nw_endpoint_handler_path_change + 13987 (Network + 4820412) [0x1a722adbc]
                    1   -[NWConcrete_nw_endpoint_flow startWithHandler:] + 5667 (Network + 10921824) [0x1a77fc760]
                      1   nw_endpoint_flow_setup_protocols + 3631 (Network + 10791068) [0x1a77dc89c]
                        1   nw_endpoint_flow_attach_protocols + 9051 (Network + 10806856) [0x1a77e0648]
                          1   nw_endpoint_flow_attach_socket_protocol + 371 (Network + 10882896) [0x1a77f2f50]
                            1   nw_socket_add_input_handler + 1339 (Network + 9299620) [0x1a76706a4]
                              1   nw_tcp_set_callbacks + 8 (Network + 9020796) [0x1a762c57c]
                                1   
    2   _pthread_wqthread + 227 (libsystem_pthread.dylib + 3516) [0x1f4978dbc]
      2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 110180) [0x12e91ae64]
        2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 107624) [0x12e91a468]
          1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 130752) [0x12e91fec0]
            1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 37336) [0x12e9091d8]
              1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
                1   ??? (myAppName + 29761292) [0x105d55f0c]
                  1   ??? (myAppName + 29762280) [0x105d562e8]
                    1   ??? (myAppName + 29836268) [0x105d683ec]
                      1   ??? (myAppName + 29833928) [0x105d67ac8]
                        1   ??? (myAppName + 29831696) [0x105d67210]
                          1   ??? (myAppName + 29809796) [0x105d61c84]
                            1   ??? (myAppName + 29661904) [0x105d3dad0]
                              1   -[NSKeyedUnarchiver decodeObjectForKey:] + 215 (Foundation + 312764) [0x1a0dbd5bc]
                                1   _decodeObject + 263 (Foundation + 134640) [0x1a0d91df0]
                                  1   _decodeObjectBinary + 2435 (Foundation + 302744) [0x1a0dbae98]
                                    1   -[NSDictionary initWithCoder:] + 175 (Foundation + 135628) [0x1a0d921cc]
                                      1   -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1655 (Foundation + 140668) [0x1a0d9357c]
                                        1   _decodeObjectBinary + 735 (Foundation + 301044) [0x1a0dba7f4]
                                          1   __CFBinaryPlistCreateObject + 43 (CoreFoundation + 673496) [0x1a6a506d8]
                                            1   __CFBinaryPlistCreateObjectFiltered + 1039 (CoreFoundation + 83392) [0x1a69c05c0]
                                              1   ____CFBinaryPlistCreateObjectFiltered_block_invoke + 215 (CoreFoundation + 1191572) [0x1a6acee94]
                                                1   CFDictionarySetValue + 339 (CoreFoundation + 663760) [0x1a6a4e0d0]
                                                  1   __CFBasicHashAddValue + 107 (CoreFoundation + 140488) [0x1a69ce4c8]
                                                    1   __CFBasicHashRehash + 207 (CoreFoundation + 137080) [0x1a69cd778]
                                                      1   _malloc_zone_calloc_instrumented_or_legacy + 227 (libsystem_malloc.dylib + 112876) [0x1b4f158ec]
                                                        1   ??? (myAppName + 30178884) [0x105dbbe44]
                                                          1   backtrace + 43 (libsystem_c.dylib + 71632) [0x1ae0087d0]
                                                            1   _thread_stack_pcs + 23 (libsystem_c.dylib + 81436) [0x1ae00ae1c]
                                                              1   pthread_stack_frame_decode_np + 8 (libsystem_pthread.dylib + 25764) [0x1f497e4a4]
                                                                1   
          1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 33984) [0x12e9084c0]
            1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 37336) [0x12e9091d8]
              1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
                1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 17816) [0x12e904598]
                  1   ??? (myAppName + 133371360) [0x10c0255e0]
                    1   ??? (myAppName + 133394552) [0x10c02b078]
                      1   ??? (myAppName + 133407644) [0x10c02e39c]
                        1   ??? (myAppName + 133296852) [0x10c0132d4]
                          1   ??? (myAppName + 133299224) [0x10c013c18]
                            1   ??? (myAppName + 133295108) [0x10c012c04]
                              1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 96372) [0x12e917874]
                                1   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
                                  1   ??? (myAppName + 133295492) [0x10c012d84]
                                    1   ??? (myAppName + 133292520) [0x10c0121e8]
                                      1   ??? (myAppName + 133346024) [0x10c01f2e8]
                                        1   ??? (myAppName + 206697432) [0x1106133d8]
                                          1   ??? (myAppName + 98299884) [0x109eb2fec]
                                            1   ??? (myAppName + 98299564) [0x109eb2eac]
                                              1   ??? (myAppName + 98275256) [0x109eacfb8]
                                                1   ??? (myAppName + 98276760) [0x109ead598]
                                                  1   ??? (myAppName + 98285220) [0x109eaf6a4]
                                                    1   ??? (myAppName + 98303808) [0x109eb3f40]
                                                      1   objc_getAssociatedObject + 80 (libobjc.A.dylib + 11500) [0x19fcb2cec]
  2   start + 2527 (dyld + 88416) [0x1c5b50960]
    2   ??? (myAppName + 165584) [0x10411c6d0]
      2   UIApplicationMain + 339 (UIKitCore + 3808620) [0x1a8f22d6c]
        2   -[UIApplication _run] + 887 (UIKitCore + 3809544) [0x1a8f23108]
          2   GSEventRunModal + 163 (GraphicsServices + 4968) [0x1e0aa4368]
            2   CFRunLoopRunSpecific + 611 (CoreFoundation + 528084) [0x1a6a2ced4]
              2   __CFRunLoopRun + 2035 (CoreFoundation + 507992) [0x1a6a28058]
                2   __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 15 (CoreFoundation + 632568) [0x1a6a466f8]
                  2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 90948) [0x12e916344]
                    2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 92160) [0x12e916800]
                      2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 24652) [0x12e90604c]
                        2   ??? (<B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0> + 17816) [0x12e904598]
                          1   ??? (myAppName + 126533908) [0x10b9a0114]
                            1   ??? (myAppName + 133511580) [0x10c04799c]
                              1   ??? (myAppName + 133511952) [0x10c047b10]
                                1   ??? (myAppName + 50551028) [0x1071298f4]
                                  1   ??? (myAppName + 133512116) [0x10c047bb4]
                                    1   ??? (myAppName + 133516568) [0x10c048d18]
                                      1   ??? (myAppName + 133517268) [0x10c048fd4]
                                        1   _CF_forwarding_prep_0 + 95 (CoreFoundation + 557904) [0x1a6a34350]
                                          1   ___forwarding___ + 975 (CoreFoundation + 130360) [0x1a69cbd38]
                                            1   ??? (myAppName + 136756732) [0x10c35fdfc]
                                              1   ??? (myAppName + 136757236) [0x10c35fff4]
                                                1   +[NSString stringWithFormat:] + 67 (Foundation + 110396) [0x1a0d8bf3c]
                                                  1   _CFStringCreateWithFormatAndArgumentsAux2 + 43 (CoreFoundation + 533908) [0x1a6a2e594]
                                                    1   _CFStringCreateWithFormatAndArgumentsReturningMetadata + 183 (CoreFoundation + 547880) [0x1a6a31c28]
                                                      1   __CFStringAppendFormatCore + 9059 (CoreFoundation + 330932) [0x1a69fccb4]
                                                        1   __CFStringAppendBytes + 847 (CoreFoundation + 536724) [0x1a6a2f094]
                                                          1   __CFStringChangeSizeMultiple + 52 (CoreFoundation + 559480) [0x1a6a34978]
                                                            1   
                          1   ??? (myAppName + 64571180) [0x107e8872c]
                            1   ??? (myAppName + 64610004) [0x107e91ed4]
                              1   ??? (myAppName + 64619128) [0x107e94278]
                                1   ??? (myAppName + 64610372) [0x107e92044]
                                  1   ??? (myAppName + 64623348) [0x107e952f4]
                                    1   ??? (myAppName + 64628004) [0x107e96524]
                                      1   ??? (myAppName + 64637016) [0x107e98858]
                                        1   ??? (myAppName + 129855152) [0x10bccaeb0]
                                          1   _CFStringCreateWithFormatAndArgumentsAux2 + 43 (CoreFoundation + 533908) [0x1a6a2e594]
                                            1   _CFStringCreateWithFormatAndArgumentsReturningMetadata + 183 (CoreFoundation + 547880) [0x1a6a31c28]
                                              1   __CFStringAppendFormatCore + 11071 (CoreFoundation + 332944) [0x1a69fd490]
                                                1   _NSDescriptionWithLocaleFunc + 79 (Foundation + 107084) [0x1a0d8b24c]
                                                  1   ??? (myAppName + 51854624) [0x107267d20]
                                                    1   ??? (myAppName + 51882244) [0x10726e904]
                                                      1   ??? (myAppName + 51884188) [0x10726f09c]
                                                        1   ??? (myAppName + 51884188) [0x10726f09c]
                                                          1   ??? (myAppName + 51884188) [0x10726f09c]
                                                            1   ??? (myAppName + 51884188) [0x10726f09c]
                                                              1   ??? (myAppName + 51883564) [0x10726ee2c]
                                                                1   -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 211 (CoreFoundation + 646080) [0x1a6a49bc0]
                                                                  1   __NSDICTIONARY_IS_CALLING_OUT_TO_A_BLOCK__ + 23 (CoreFoundation + 79240) [0x1a69bf588]
                                                                    1   ??? (myAppName + 51889712) [0x107270630]
                                                                      1   ??? (myAppName + 51889528) [0x107270578]
                                                                        1   -[__NSCFString appendFormat:] + 127 (CoreFoundation + 664232) [0x1a6a4e2a8]
                                                                          1   _CFStringAppendFormatAndArgumentsAux2 + 75 (CoreFoundation + 658376) [0x1a6a4cbc8]
                                                                            1   __CFStringAppendFormatCore + 8907 (CoreFoundation + 330780) [0x1a69fcc1c]
                                                                              1   CFStringAppendCharacters + 563 (CoreFoundation + 592376) [0x1a6a3c9f8]
                                                                                1   __CFStringChangeSizeMultiple + 2284 (CoreFoundation + 561712) [0x1a6a35230]
                                                                                  1   
  2   start_wqthread + 0 (libsystem_pthread.dylib + 2960) [0x1f4978b90]
    1   
    1   
  1   start + 2387 (dyld + 88276) [0x1c5b508d4]
    1   dyld4::prepare + 1119 (dyld + 93584) [0x1c5b51d90]
      1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
        1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
          1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
            1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
              1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
                1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
                  1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
                    1   dyld4::JustInTimeLoader::loadDependents + 299 (dyld + 179584) [0x1c5b66d80]
                      1   dyld4::JustInTimeLoader::loadDependents + 163 (dyld + 179448) [0x1c5b66cf8]
                        1   dyld3::MachOFile::forEachDependentDylib block_pointer) const + 171 (dyld + 35260) [0x1c5b439bc]
                          1   dyld3::MachOFile::forEachLoadCommand block_pointer) const + 295 (dyld + 19672) [0x1c5b3fcd8]
                            1   invocation function for block in dyld3::MachOFile::forEachDependentDylib block_pointer) const + 147 (dyld + 345544) [0x1c5b8f5c8]
                              1   dyld4::Loader::matchesPath const + 0 (dyld + 58896) [0x1c5b49610]
                                1   

  Binary Images:
           0x1040f4000 -                ???  com.***.myAppName 8.7.80 (1) <05F57403-591C-3442-849C-D4867211251B>  /private/var/containers/Bundle/Application/8D383D95-DF47-4200-9151-549D1ACB9D7C/myAppName.app/myAppName
           0x12df6c000 -                ???  ???                                       <68A58000-B5B1-3E03-A403-CDC010277494>
           0x12e900000 -                ???  ???                                       <B0EC474F-20EF-3FAE-A896-9A28DC0D4DB0>
           0x19fcb0000 -        0x19fcf3e1f  libobjc.A.dylib                           <79BC93BC-DF0F-300A-BD7B-07DCB2E13482>  /usr/lib/libobjc.A.dylib
           0x1a0d71000 -        0x1a16bafff  Foundation                                <56AF6625-58AC-36E0-8235-C12A697943B2>  /System/Library/Frameworks/Foundation.framework/Foundation
           0x1a69ac000 -        0x1a6d91fff  CoreFoundation                            <9436801C-5ED8-35BA-8928-1D4219C3CEE1>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x1a6d92000 -        0x1a7b3ffff  Network                                   <3E12AE68-D2E3-3591-A84F-547569B95F49>  /System/Library/Frameworks/Network.framework/Network
           0x1a8b81000 -        0x1aa362fff  UIKitCore                                 <E14E4CB2-4A84-359D-A8BA-8A361A209123>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1adff7000 -        0x1ae076ff7  libsystem_c.dylib                         <8D15526C-68B9-3467-A696-93B73F828312>  /usr/lib/system/libsystem_c.dylib
           0x1b4efa000 -        0x1b4f1dffb  libsystem_malloc.dylib                    <0A64CB16-7B2F-3A3E-A1B2-8A1A74FE19F0>  /usr/lib/system/libsystem_malloc.dylib
           0x1c5b3b000 -        0x1c5bbe057  dyld                                      <0CB66EF9-B6EB-3630-8E86-73FEBD2C573F>  /usr/lib/dyld
           0x1e0aa3000 -        0x1e0aabfff  GraphicsServices                          <EE18D681-97AC-3FE8-BA47-8613EA5C5BD6>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
           0x1e4330000 -        0x1e4366fe3  libsystem_kernel.dylib                    <FF838F0A-18B8-3A3C-A26A-2C556B705B21>  /usr/lib/system/libsystem_kernel.dylib
           0x1f4978000 -        0x1f4983fff  libsystem_pthread.dylib                   <1EC34ADC-AC7E-3C28-A7DD-0956EA86C52C>  /usr/lib/system/libsystem_pthread.dylib
So I think this is the cause of the crash.

the log type is Crash

This is not a crash report. Consider this snippet:

Action taken:     none

If this were a crash report, it’d have something more fatal there, like terminated.

If the Xcode UI is misleading you into thinking it’s a crash, I’d appreciate you filing a bug about that, with a copy of this diagnostic report and screen shot of the misleading UI.

Please post your bug number, just for the record.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

I agree that the log is not a crash report, but I did experienced a crash as a user, and the app process termination can be corroborated by my app logs. So I think there must be a crash log, and I suspect the wakeups cause the crash.

Hi,

We encountered the same with our app: Event: wakeups Action taken: none

Even though the log shows the above, the app crashes on the device.

Date/Time:        2023-02-24 13:16:08.650 +0000
End time:         2023-02-24 13:17:01.390 +0000
OS Version:       iPhone OS 16.2 (Build 20C65)
Architecture:     arm64
Report Version:   40
Incident Identifier: C4C37C58-DC80-4F38-83A9-AC76D2DFC437

Data Source:      Microstackshots
Shared Cache:     A8961A8A-23D6-3780-8DB0-24D1E44B44FD slid base address 0x19f25c000, slide 0x1f25c000

Command:          Kaltura
Path:             /private/var/containers/Bundle/Application/6EB57591-3141-4B01-BBDD-F88E8EDE7FE6/Kaltura.app/Kaltura
Identifier:       com.kaltura.kme.native.app
Version:          1.9 (0)
Is First Party:   No
Beta Identifier:  A7919540-707D-4B8E-8722-F1AD372FBB3B
Resource Coalition ID: 495
Architecture:     arm64
PID:              2147

Event:            wakeups
Action taken:     none
Wakeups:          45002 wakeups over the last 53 seconds (853 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45002
Wakeups duration: 53s
Duration:         52.74s
Duration Sampled: 20.89s
Steps:            4

Hardware model:   iPhone10,6
Active cpus:      6
HW page size:     16384
VM page size:     16384

OS Cryptex File Extents: 48985

Heaviest stack for the target process:
  2  ??? (libsystem_pthread.dylib + 5768) [0x1ee6a7688]
  2  ??? (libsystem_pthread.dylib + 12384) [0x1ee6a9060]
  1  ??? (libEmbeddedSystemAUs.dylib + 646620) [0x208099ddc]
  1  ??? (libAudioToolboxUtility.dylib + 7456) [0x1c43b5d20]
  1  ??? (libAudioToolboxUtility.dylib + 9680) [0x1c43b65d0]
  1  ??? (libEmbeddedSystemAUs.dylib + 45868) [0x20800732c]
  1  ??? (libEmbeddedSystemAUs.dylib + 11876) [0x207ffee64]
  1  ??? (libEmbeddedSystemAUs.dylib + 8664) [0x207ffe1d8]
  1  ??? (libEmbeddedSystemAUs.dylib + 72276) [0x20800da54]
  1  ??? (libEmbeddedSystemAUs.dylib + 96284) [0x20801381c]
  1  ??? (AudioToolboxCore + 965408) [0x1b07bcb20]
  1  ??? (AudioToolboxCore + 489624) [0x1b0748898]
  1  ??? (AudioToolboxCore + 1907412) [0x1b08a2ad4]
  1  ??? (AudioToolboxCore + 491712) [0x1b07490c0]
  1  ??? (AudioToolboxCore + 966636) [0x1b07bcfec]
  1  ??? (libEmbeddedSystemAUs.dylib + 48876) [0x208007eec]
  1  ??? (libEmbeddedSystemAUs.dylib + 146556) [0x20801fc7c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1186404) [0x102dd1a64]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1186152) [0x102dd1968]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1127092) [0x102dc32b4]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1124532) [0x102dc28b4]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2075468) [0x102eaab4c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2468292) [0x102f0a9c4]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2468688) [0x102f0ab50]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2057424) [0x102ea64d0]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2080140) [0x102eabd8c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2097540) [0x102eb0184]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2149360) [0x102ebcbf0]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2150024) [0x102ebce88]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2156080) [0x102ebe630]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2160104) [0x102ebf5e8]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2851416) [0x102f68258]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1029548) [0x102dab5ac]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2858700) [0x102f69ecc]


Powerstats for:   Kaltura [2147]
UUID:             D37E4053-21AD-3FF4-A786-63D3018713B3
Path:             /private/var/containers/Bundle/Application/6EB57591-3141-4B01-BBDD-F88E8EDE7FE6/Kaltura.app/Kaltura
Identifier:       com.kaltura.kme.native.app
Version:          1.9 (0)
Is First Party:   No
Beta Identifier:  A7919540-707D-4B8E-8722-F1AD372FBB3B
Resource Coalition ID: 495
Architecture:     arm64
Footprint:        21.80 MB -> 63.30 MB (+41.50 MB)
Pageins:          10 pages
Start time:       2023-02-24 13:16:40.003 +0000
End time:         2023-02-24 13:17:00.897 +0000
Num samples:      4 (100%)
Primary state:    1 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS User Interactive, Requested Thread QoS User Interactive, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 4 samples Active
Power Source:     4 samples on Battery, 0 samples on AC
  2  thread_start + 7 (libsystem_pthread.dylib + 5768) [0x1ee6a7688]
    2  _pthread_start + 115 (libsystem_pthread.dylib + 12384) [0x1ee6a9060]
      1  void* caulk::thread_proxy > >(void*) + 559 (libEmbeddedSystemAUs.dylib + 646620) [0x208099ddc]
        1  MSHMIGDispatchMessage + 35 (libAudioToolboxUtility.dylib + 7456) [0x1c43b5d20]
          1  mshMIGPerform + 259 (libAudioToolboxUtility.dylib + 9680) [0x1c43b65d0]
            1  _XPerformIO + 335 (libEmbeddedSystemAUs.dylib + 45868) [0x20800732c]
              1  AURemoteIO::PerformIO + 1195 (libEmbeddedSystemAUs.dylib + 11876) [0x207ffee64]
                1  ausdk::AUBase::DoRender + 1287 (libEmbeddedSystemAUs.dylib + 8664) [0x207ffe1d8]
                  1  AURemoteIO::RenderBus + 191 (libEmbeddedSystemAUs.dylib + 72276) [0x20800da54]
                    1  AUConverterBase::RenderBus + 843 (libEmbeddedSystemAUs.dylib + 96284) [0x20801381c]
                      1  acv2::_AudioConverterFillComplexBuffer(OpaqueAudioConverter*, unsigned int*, AudioBufferList*, AudioStreamPacketDescription**, void*), void*, unsigned int*, AudioBufferList*, AudioStreamPacketDescription*, AudioStreamPacketDependencyInfo*) + 435 (AudioToolboxCore + 965408) [0x1b07bcb20]
                        1  acv2::AudioConverterChain::ProduceOutput>, ACBaseAudioSpan&) + 155 (AudioToolboxCore + 489624) [0x1b0748898]
                          1  acv2::CBRConverter::ProduceOutput + 47 (AudioToolboxCore + 1907412) [0x1b08a2ad4]
                            1  acv2::AudioConverterChain::ObtainInput + 831 (AudioToolboxCore + 491712) [0x1b07490c0]
                              1  caulk::expected caulk::function_ref>::functor_invoker(caulk::details::erased_callable (ACAudioSpan&)> const&, ACAudioSpan&) + 179 (AudioToolboxCore + 966636) [0x1b07bcfec]
                                1  AUInputFormatConverter2::InputProc + 155 (libEmbeddedSystemAUs.dylib + 48876) [0x208007eec]
                                  1  ausdk::AUInputElement::PullInput + 171 (libEmbeddedSystemAUs.dylib + 146556) [0x20801fc7c]
                                    1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1186404) [0x102dd1a64]
                                      1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1186152) [0x102dd1968]
                                        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1127092) [0x102dc32b4]
                                          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1124532) [0x102dc28b4]
                                            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2075468) [0x102eaab4c]
                                              1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2468292) [0x102f0a9c4]
                                                1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2468688) [0x102f0ab50]
                                                  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2057424) [0x102ea64d0]
                                                    1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2080140) [0x102eabd8c]
                                                      1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2097540) [0x102eb0184]
                                                        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2149360) [0x102ebcbf0]
                                                          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2150024) [0x102ebce88]
                                                            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2156080) [0x102ebe630]
                                                              1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2160104) [0x102ebf5e8]
                                                                1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2851416) [0x102f68258]
                                                                  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1029548) [0x102dab5ac]
                                                                    1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 2858700) [0x102f69ecc]
                                                                      1  
      1  void* caulk::thread_proxy > >(void*) + 535 (libEmbeddedSystemAUs.dylib + 646596) [0x208099dc4]
        1  mach_msg + 19 (libsystem_kernel.dylib + 5640) [0x1df5da608]
          1  mach_msg_overwrite + 383 (libsystem_kernel.dylib + 76828) [0x1df5ebc1c]
            1  mach_msg2_trap + 8 (libsystem_kernel.dylib + 4372) [0x1df5da114]
              1  
  1  start_wqthread + 7 (libsystem_pthread.dylib + 5756) [0x1ee6a767c]
    1  _pthread_wqthread + 223 (libsystem_pthread.dylib + 6932) [0x1ee6a7b14]
      1  _dispatch_worker_thread2 + 159 (libdispatch.dylib + 300308) [0x1accfd514]
        1  _dispatch_root_queue_drain + 615 (libdispatch.dylib + 298600) [0x1accfce68]
          1  _dispatch_client_callout + 15 (libdispatch.dylib + 411592) [0x1acd187c8]
            1  _dispatch_call_block_and_release + 23 (libdispatch.dylib + 407632) [0x1acd17850]
              1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 157620) [0x10331e7b4]
                1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 2012948) [0x1034e3714]
                  1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 2012456) [0x1034e3528]
                    1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 2015252) [0x1034e4014]
                      1  +[NSISO8601DateFormatter stringFromDate:timeZone:formatOptions:] + 67 (Foundation + 796900) [0x1a03268e4]
                        1  -[NSISO8601DateFormatter stringForObjectValue:] + 71 (Foundation + 724608) [0x1a0314e80]
                          1  CFDateFormatterCreateStringWithAbsoluteTime + 183 (CoreFoundation + 592388) [0x1a5e90a04]
                            1  __cficu_udat_format + 63 (CoreFoundation + 569280) [0x1a5e8afc0]
                              1  udat_format + 355 (libicucore.A.dylib + 2056944) [0x1ae3682f0]
                                1  icu::DateFormat::format const + 123 (libicucore.A.dylib + 1067652) [0x1ae276a84]
                                  1  icu::SimpleDateFormat::format const + 79 (libicucore.A.dylib + 1864836) [0x1ae339484]
                                    1  icu::SimpleDateFormat::_format const + 687 (libicucore.A.dylib + 1865556) [0x1ae339754]
                                      1  icu::SimpleDateFormat::subFormat const + 631 (libicucore.A.dylib + 1866376) [0x1ae339a88]
                                        1  icu::SimpleDateFormat::tzFormat const + 35 (libicucore.A.dylib + 1872516) [0x1ae33b284]
                                          1  std::__1::mutex::lock + 11 (libc++.1.dylib + 58524) [0x1b385b49c]
                                            1  _pthread_mutex_firstfit_lock_slow$VARIANT$armv81 + 243 (libsystem_pthread.dylib + 12920) [0x1ee6a9278]
                                              1  __psynch_mutexwait + 8 (libsystem_kernel.dylib + 8220) [0x1df5db01c]
                                                1  
  1  start + 2095 (dyld + 81392) [0x1c2b45df0]
    1  main (:0 in Kaltura + 629300) [0x100525a34]
      1  static AppDelegate.$main (AppDelegate.swift:12) (AppDelegate.swift:12 in Kaltura + 628936) [0x1005258c8]
        1  static UIApplicationDelegate.main (:0) (:0 in Kaltura + 629056) [0x100525940]
          1  UIApplicationMain + 99 (libswiftUIKit.dylib + 180800) [0x1ae137240]
            1  UIApplicationMain + 311 (UIKitCore + 3625632) [0x1a82262a0]
              1  -[UIApplication _run] + 867 (UIKitCore + 3626536) [0x1a8226628]
                1  GSEventRunModal + 159 (GraphicsServices + 6532) [0x1dc07b984]
                  1  CFRunLoopRunSpecific + 583 (CoreFoundation + 506712) [0x1a5e7bb58]
                    1  __CFRunLoopRun + 2095 (CoreFoundation + 488616) [0x1a5e774a8]
                      1  __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 11 (CoreFoundation + 604200) [0x1a5e93828]
                        1  _dispatch_main_queue_callback_4CF$VARIANT$armv81 + 35 (libdispatch.dylib + 285584) [0x1accf9b90]
                          1  _dispatch_main_queue_drain + 887 (libdispatch.dylib + 286488) [0x1accf9f18]
                            1  _dispatch_client_callout + 15 (libdispatch.dylib + 411592) [0x1acd187c8]
                              1  _dispatch_call_block_and_release + 23 (libdispatch.dylib + 407632) [0x1acd17850]
                                1  thunk for @escaping @callee_guaranteed -> () (:0) (:0 in Kaltura + 82988) [0x1004a042c]
                                  1  closure #1 in ui (Utils.swift:19) (Utils.swift:19 in Kaltura + 969268) [0x100578a34]
                                    1  closure #1 in closure #1 in RoomLoginViewController.configure (RoomLoginViewController.swift:65) (RoomLoginViewController.swift:65 in Kaltura + 236604) [0x1004c5c3c]
                                      1  RoomLoginViewController.onLoginResponseSuccess (RoomLoginViewController.swift:163) (RoomLoginViewController.swift:163 in Kaltura + 246100) [0x1004c8154]
                                        1  -[UIViewController presentViewController:animated:completion:] + 139 (UIKitCore + 823908) [0x1a7f7a264]
                                          1  -[UIViewController _presentViewController:animated:completion:] + 159 (UIKitCore + 824300) [0x1a7f7a3ec]
                                            1  -[UIViewController _performCoordinatedPresentOrDismiss:animated:] + 363 (UIKitCore + 3012372) [0x1a8190714]
                                              1  __63-[UIViewController _presentViewController:animated:completion:]_block_invoke + 87 (UIKitCore + 3146668) [0x1a81b13ac]
                                                1  -[UIViewController _presentViewController:withAnimationController:completion:] + 1527 (UIKitCore + 3148360) [0x1a81b1a48]
                                                  1  -[UIPresentationController initWithPresentedViewController:presentingViewController:] + 151 (UIKitCore + 1526088) [0x1a8025948]
                                                    1  -[_UIFullscreenPresentationController _setPresentedViewController:] + 67 (UIKitCore + 1526820) [0x1a8025c24]
                                                      1  -[UIViewController view] + 19 (UIKitCore + 102776) [0x1a7eca178]
                                                        1  -[UIViewController loadViewIfRequired] + 707 (UIKitCore + 103500) [0x1a7eca44c]
                                                          1  -[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] + 79 (UIKitCore + 3505172) [0x1a8208c14]
                                                            1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 37700) [0x102005344]
                                                              1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 199292) [0x103328a7c]
                                                                1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 199216) [0x103328a30]
                                                                  1  @objc RoomDetailsViewController.configure (:0) (:0 in Kaltura + 1640052) [0x10061c674]
                                                                    1  RoomDetailsViewController.configure (RoomDetailsViewController.swift:408) (RoomDetailsViewController.swift:408 in Kaltura + 1634592) [0x10061b120]
                                                                      1  RoomDetailsViewController.configureCollectionView (RoomDetailsViewController.swift:488) (RoomDetailsViewController.swift:488 in Kaltura + 1637712) [0x10061bd50]
                                                                        1  UIViewController.add (UIViewController+Ext.swift:122) (UIViewController+Ext.swift:122 in Kaltura + 865104) [0x10055f350]
                                                                          1  -[UIViewController _endAppearanceTransition:] + 211 (UIKitCore + 2145188) [0x1a80bcba4]
                                                                            1  -[UIViewController __viewDidAppear:] + 159 (UIKitCore + 2145528) [0x1a80bccf8]
                                                                              1  -[UIViewController _setViewAppearState:isAnimating:] + 1127 (UIKitCore + 51588) [0x1a7ebd984]
                                                                                1  _CF_forwarding_prep_0 + 91 (CoreFoundation + 534252) [0x1a5e826ec]
                                                                                  1  ___forwarding___ + 771 (CoreFoundation + 125344) [0x1a5e1e9a0]
                                                                                    1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 29404) [0x1020032dc]
                                                                                      1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 29968) [0x102003510]
                                                                                        1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 258572) [0x10203b20c]
                                                                                          1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 258468) [0x10203b1a4]
                                                                                            1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 818456) [0x1023a3d18]
                                                                                              1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 101140) [0x1022f4b14]
                                                                                                1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 80208) [0x1022ef950]
                                                                                                  1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 78880) [0x1022ef420]
                                                                                                    1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 822880) [0x1023a4e60]
                                                                                                      1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 601384) [0x10236ed28]
                                                                                                        1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 599288) [0x10236e4f8]
                                                                                                          1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 1031404) [0x1023d7cec]
                                                                                                            1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 1068676) [0x1023e0e84]
                                                                                                              1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 1065664) [0x1023e02c0]
                                                                                                                1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 1031404) [0x1023d7cec]
                                                                                                                  1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 746180) [0x1023922c4]
                                                                                                                    1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 745504) [0x102392020]
                                                                                                                      1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 48680) [0x1022e7e28]
                                                                                                                        1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 714584) [0x10238a758]
                                                                                                                          1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 290692) [0x102042f84]
                                                                                                                            1  Sequence.forEach + 491 (libswiftCore.dylib + 764800) [0x19fe56b80]
                                                                                                                              1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 295416) [0x1020441f8]
                                                                                                                                1  ??? (<7F268751-A9B7-3041-8F24-C4174A0847B7> + 290972) [0x10204309c]
                                                                                                                                  1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 825092) [0x1023a5704]
                                                                                                                                    1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 818456) [0x1023a3d18]
                                                                                                                                      1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 101140) [0x1022f4b14]
                                                                                                                                        1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 80208) [0x1022ef950]
                                                                                                                                          1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 78880) [0x1022ef420]
                                                                                                                                            1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 822880) [0x1023a4e60]
                                                                                                                                              1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 746180) [0x1023922c4]
                                                                                                                                                1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 745504) [0x102392020]
                                                                                                                                                  1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 48680) [0x1022e7e28]
                                                                                                                                                    1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 720664) [0x10238bf18]
                                                                                                                                                      1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 720332) [0x10238bdcc]
                                                                                                                                                        1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 720712) [0x10238bf48]
                                                                                                                                                          1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 925340) [0x1023bde9c]
                                                                                                                                                            1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 591816) [0x10236c7c8]
                                                                                                                                                              1  ??? (<C0B16658-3BF8-38C7-8C4E-804E2A522AE1> + 925956) [0x1023be104]
                                                                                                                                                                1  __swift_instantiateCanonicalPrespecializedGenericMetadata + 31 (libswiftCore.dylib + 3143816) [0x1a009b888]
                                                                                                                                                                  1  _swift_getGenericMetadata + 160 (libswiftCore.dylib + 3265636) [0x1a00b9464]

  Binary Images:
           0x10048c000 -                ???  com.kaltura.kme.native.app 1.9 (0) <D37E4053-21AD-3FF4-A786-63D3018713B3>  /private/var/containers/Bundle/Application/6EB57591-3141-4B01-BBDD-F88E8EDE7FE6/Kaltura.app/Kaltura
           0x101ffc000 -                ???  ???                                <7F268751-A9B7-3041-8F24-C4174A0847B7>
           0x1022dc000 -                ???  ???                                <C0B16658-3BF8-38C7-8C4E-804E2A522AE1>
           0x102cb0000 -                ???  ???                                <15098F3A-4403-3B64-B5E2-78E2EEA9B957>
           0x1032f8000 -                ???  ???                                <B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7>
           0x19fd9c000 -        0x1a0232fff  libswiftCore.dylib                 <CB51D10E-2DD3-3297-86A6-45DFDCCFA017>  /usr/lib/swift/libswiftCore.dylib
           0x1a0264000 -        0x1a0b0ffff  Foundation                         <50C2EC83-ADF0-3911-A0E0-FC6E4E0C0E60>  /System/Library/Frameworks/Foundation.framework/Foundation
           0x1a5e00000 -        0x1a61ccfff  CoreFoundation                     <18E3CD08-C5BD-329B-AADA-4684E60F8805>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x1a7eb1000 -        0x1a958efff  UIKitCore                          <55D36A14-98DE-3A42-810E-220DE725A53B>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1accb4000 -        0x1acd37fff  libdispatch.dylib                  <694EC4A0-7CF4-3E50-947D-79A142B4D0DD>  /usr/lib/system/libdispatch.dylib
           0x1ae10b000 -        0x1ae171fff  libswiftUIKit.dylib                <6950BB54-B087-3C30-867B-F5103119B2BD>  /usr/lib/swift/libswiftUIKit.dylib
           0x1ae172000 -        0x1ae3f4ff3  libicucore.A.dylib                 <27E4EEE9-24D6-3711-98CC-AC4A10925BCB>  /usr/lib/libicucore.A.dylib
           0x1b06d1000 -        0x1b095afff  AudioToolboxCore                   <732E01E2-455A-310D-8B0D-D7A75F80ABD0>  /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
           0x1b384d000 -        0x1b38a8ffb  libc++.1.dylib                     <B54829E2-B4A4-3983-B657-EE24B70AF82B>  /usr/lib/libc++.1.dylib
           0x1c2b32000 -        0x1c2bac00b  dyld                               <F328B8FD-5C49-3ECE-9A63-A51B44ACDE0C>  /usr/lib/dyld
           0x1c43b4000 -        0x1c43e5fff  libAudioToolboxUtility.dylib       <6A921BE6-32E6-38DD-9B87-9602C1A7C241>  /usr/lib/libAudioToolboxUtility.dylib
           0x1dc07a000 -        0x1dc082fff  GraphicsServices                   <F95D4333-EEE4-390A-A45E-6FFEE32FF0B0>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
           0x1df5d9000 -        0x1df60eff7  libsystem_kernel.dylib             <C80F1A62-8C47-3E23-A2EE-39FA49F6DEED>  /usr/lib/system/libsystem_kernel.dylib
           0x1ee6a6000 -        0x1ee6b6fff  libsystem_pthread.dylib            <4788AFBF-1FFE-34CE-8B6E-01370302F0CA>  /usr/lib/system/libsystem_pthread.dylib
           0x207ffc000 -        0x2080f6ffb  libEmbeddedSystemAUs.dylib         <D5170042-F740-3017-9168-711061B4B89C>  /System/Library/Frameworks/AudioToolbox.framework/libEmbeddedSystemAUs.dylib
Date/Time:        2023-02-24 12:49:16 +0000
End time:         2023-02-24 12:49:52 +0000
OS Version:       iPhone OS 13.2 (Build 17B5068e)
Architecture:     arm64
Report Version:   29
Incident Identifier: 0195F7E3-42A2-4E77-82C6-491BB4684429

Data Source:      Microstackshots
Shared Cache:     0x283e0000 4815826B-F927-313E-80F4-410DA528AA89

Command:          Kaltura
Path:             /private/var/containers/Bundle/Application/29617BD1-E23E-412E-BEA0-8E29722855E0/Kaltura.app/Kaltura
Identifier:       com.kaltura.kme.native.app
Version:          1.9 (0)
Beta Identifier:  F8A365A4-6301-4ECC-8D66-46784D660782
PID:              675

Event:            wakeups
Action taken:     none
Wakeups:          45001 wakeups over the last 36 seconds (1256 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45001
Wakeups duration: 36s
Duration:         35.83s
Duration Sampled: 35.26s
Steps:            8

Hardware model:   iPhone8,1
Active cpus:      2


Heaviest stack for the target process:
  5  ??? (libsystem_pthread.dylib + 45520) [0x1a858e1d0]
  3  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 389860) [0x1075cf2e4]
  2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 384572) [0x1075cde3c]
  2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 388872) [0x1075cef08]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3833636) [0x107917f24]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3829152) [0x107916da0]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3962848) [0x1079377e0]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3942556) [0x10793289c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4033156) [0x107948a84]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3997940) [0x1079400f4]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4073952) [0x1079529e0]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 292808) [0x1075b77c8]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 291420) [0x1075b725c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3848532) [0x10791b954]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4009324) [0x107942d6c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4009324) [0x107942d6c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3848532) [0x10791b954]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3826300) [0x10791627c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 387852) [0x1075ceb0c]
  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 410516) [0x1075d4394]
  1  ??? (libsystem_pthread.dylib + 14696) [0x1a8586968]


Powerstats for:   Kaltura [675]
Bundle ID:        com.kaltura.kme.native.app
Adam ID:          0
Is first party:   No
App version:      1.9
Build version:    0
Is Beta:          No
Share with Devs:  No
UUID:             D37E4053-21AD-3FF4-A786-63D3018713B3
Path:             /private/var/containers/Bundle/Application/29617BD1-E23E-412E-BEA0-8E29722855E0/Kaltura.app/Kaltura
Architecture:     arm64
Footprint:        8976 KB -> 41.84 MB (+33.08 MB)
Pageins:          23 pages
Start time:       2023-02-24 12:49:17 +0000
End time:         2023-02-24 12:49:52 +0000
Num samples:      8 (100%)
CPU Time:         0.769s
Primary state:    2 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS Default, Requested Thread QoS Default, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 0 samples Active, 8 samples Unknown
Power Source:     0 samples on Battery, 0 samples on AC, 8 samples Unknown
  5  ??? (libsystem_pthread.dylib + 45520) [0x1a858e1d0]
    3  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 389860) [0x1075cf2e4]
      2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 384572) [0x1075cde3c]
        2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 388872) [0x1075cef08]
          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3833636) [0x107917f24]
            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3829152) [0x107916da0]
              1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3962848) [0x1079377e0]
                1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3942556) [0x10793289c]
                  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4033156) [0x107948a84]
                    1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3997940) [0x1079400f4]
                      1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4073952) [0x1079529e0]
                        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 292808) [0x1075b77c8]
                          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 291420) [0x1075b725c]
                            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3848532) [0x10791b954]
                              1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4009324) [0x107942d6c]
                                1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 4009324) [0x107942d6c]
                                  1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3848532) [0x10791b954]
                                    1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 3826300) [0x10791627c]
                                      1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 387852) [0x1075ceb0c]
                                        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 410516) [0x1075d4394]
                                          1  ??? (libsystem_pthread.dylib + 14696) [0x1a8586968]
          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 390768) [0x1075cf670]
            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1774952) [0x107721568]
              1  ??? (libsystem_pthread.dylib + 62368) [0x1a85923a0]
      1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 384660) [0x1075cde94]
        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 387420) [0x1075ce95c]
          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 333956) [0x1075c1884]
            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 410880) [0x1075d4500]
              1  ??? (libsystem_pthread.dylib + 19776) [0x1a8587d40]
                1  ??? (libsystem_kernel.dylib + 150708) [0x1a8669cb4]
                  1  
    2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 409548) [0x1075d3fcc]
      2  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1175116) [0x10768ee4c]
        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1176776) [0x10768f4c8]
          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 392396) [0x1075cfccc]
            1  
        1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 1176764) [0x10768f4bc]
          1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 410848) [0x1075d44e0]
            1  ??? (<15098F3A-4403-3B64-B5E2-78E2EEA9B957> + 411140) [0x1075d4604]
              1  ??? (libsystem_kernel.dylib + 147696) [0x1a86690f0]
                1  
  1  ??? (libdyld.dylib + 4976) [0x1a8674370]
    1  ??? (Kaltura + 629300) [0x104d89a34]
      1  ??? (Kaltura + 628936) [0x104d898c8]
        1  ??? (Kaltura + 629056) [0x104d89940]
          1  ??? (libswiftUIKit.dylib + 46740) [0x1dcd03694]
            1  ??? (UIKitCore + 10492344) [0x1ac8d99b8]
              1  ??? (GraphicsServices + 13096) [0x1b2740328]
                1  ??? (CoreFoundation + 669856) [0x1a87e98a0]
                  1  ??? (CoreFoundation + 672668) [0x1a87ea39c]
                    1  ??? (CoreFoundation + 693160) [0x1a87ef3a8]
                      1  ??? (libdispatch.dylib + 57744) [0x1a84f1190]
                        1  ??? (libdispatch.dylib + 377220) [0x1a853f184]
                          1  ??? (libdispatch.dylib + 374288) [0x1a853e610]
                            1  ??? (Kaltura + 82988) [0x104d0442c]
                              1  ??? (Kaltura + 969268) [0x104ddca34]
                                1  ??? (Kaltura + 236604) [0x104d29c3c]
                                  1  ??? (Kaltura + 246100) [0x104d2c154]
                                    1  ??? (UIKitCore + 4176120) [0x1ac2d38f8]
                                      1  ??? (UIKitCore + 4175504) [0x1ac2d3690]
                                        1  ??? (UIKitCore + 4176956) [0x1ac2d3c3c]
                                          1  ??? (UIKitCore + 4175680) [0x1ac2d3740]
                                            1  ??? (UIKitCore + 4164516) [0x1ac2d0ba4]
                                              1  ??? (UIKitCore + 3174968) [0x1ac1df238]
                                                1  ??? (UIKitCore + 3225632) [0x1ac1eb820]
                                                  1  ??? (UIKitCore + 4100852) [0x1ac2c12f4]
                                                    1  ??? (UIKitCore + 4099056) [0x1ac2c0bf0]
                                                      1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 197896) [0x107be8508]
                                                        1  ??? (<B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7> + 197564) [0x107be83bc]
                                                          1  ??? (UIKitCore + 4098360) [0x1ac2c0938]
                                                            1  ??? (UIKitCore + 4095660) [0x1ac2bfeac]
                                                              1  ??? (UIKitCore + 6962676) [0x1ac57bdf4]
                                                                1  ??? (UIKitCore + 6951428) [0x1ac579204]
                                                                  1  ??? (UIFoundation + 35480) [0x1abdffa98]
                                                                    1  ??? (UIFoundation + 444032) [0x1abe63680]
                                                                      1  ??? (UIFoundation + 443468) [0x1abe6344c]
                                                                        1  ??? (UIKitCore + 6973596) [0x1ac57e89c]
                                                                          1  ??? (UIKitCore + 6971832) [0x1ac57e1b8]
                                                                            1  ??? (UIFoundation + 35480) [0x1abdffa98]
                                                                              1  ??? (UIFoundation + 444032) [0x1abe63680]
                                                                                1  ??? (UIFoundation + 443468) [0x1abe6344c]
                                                                                  1  ??? (UIKitCore + 14960724) [0x1acd1c854]
                                                                                    1  ??? (UIFoundation + 35480) [0x1abdffa98]
                                                                                      1  ??? (UIFoundation + 443468) [0x1abe6344c]
                                                                                        1  ??? (UIKitCore + 6968060) [0x1ac57d2fc]
                                                                                          1  ??? (UIKitCore + 13981788) [0x1acc2d85c]
                                                                                            1  ??? (UIKitCore + 13979068) [0x1acc2cdbc]
                                                                                              1  ??? (UIKitCore + 13980364) [0x1acc2d2cc]
                                                                                                1  ??? (UIKitCore + 13990896) [0x1acc2fbf0]
                                                                                                  1  ??? (UIKitCore + 6914300) [0x1ac5700fc]
                                                                                                    1  ??? (UIKitCore + 13991088) [0x1acc2fcb0]
                                                                                                      1  ??? (UIKitCore + 13980616) [0x1acc2d3c8]
                                                                                                        1  ??? (CoreUI + 494876) [0x1b5653d1c]
                                                                                                          1  ??? (CoreUI + 509928) [0x1b56577e8]
                                                                                                            1  ??? (CoreUI + 512240) [0x1b56580f0]
                                                                                                              1  ??? (CoreUI + 342696) [0x1b562eaa8]
                                                                                                                1  ??? (CoreFoundation + 827004) [0x1a880fe7c]
                                                                                                                  1  ??? (CoreFoundation + 826224) [0x1a880fb70]
                                                                                                                    1  
  1  ??? (libsystem_pthread.dylib + 49088) [0x1a858efc0]
    1  ??? (libdispatch.dylib + 72544) [0x1a84f4b60]
      1  ??? (libdispatch.dylib + 117964) [0x1a84ffccc]
        1  ??? (libdispatch.dylib + 123956) [0x1a8501434]
          1  ??? (libsystem_kernel.dylib + 158188) [0x1a866b9ec]
            1  
  1  ??? (libsystem_pthread.dylib + 48968) [0x1a858ef48]
    1  ??? (libdispatch.dylib + 71536) [0x1a84f4770]
      1  ??? (libdispatch.dylib + 69540) [0x1a84f3fa4]
        1  ??? (libdispatch.dylib + 18436) [0x1a84e7804]
          1  ??? (libdispatch.dylib + 377220) [0x1a853f184]
            1  ??? (libdispatch.dylib + 374288) [0x1a853e610]
              1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 67180) [0x1058e866c]
                1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 67644) [0x1058e883c]
                  1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 42296) [0x1058e2538]
                    1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 130600) [0x1058f7e28]
                      1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 128820) [0x1058f7734]
                        1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 128512) [0x1058f7600]
                          1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 129396) [0x1058f7974]
                            1  ??? (<EA02BE72-BA6B-377F-9F93-2B5E075C1ECF> + 128960) [0x1058f77c0]
                              1  ??? (libsystem_kernel.dylib + 162708) [0x1a866cb94]
                                1  

  Binary Images:
           0x104cf0000 -                ???  Kaltura                 <D37E4053-21AD-3FF4-A786-63D3018713B3>  /private/var/containers/Bundle/Application/29617BD1-E23E-412E-BEA0-8E29722855E0/Kaltura.app/Kaltura
           0x1058d8000 -                ???  ???                     <EA02BE72-BA6B-377F-9F93-2B5E075C1ECF>
           0x107570000 -                ???  ???                     <15098F3A-4403-3B64-B5E2-78E2EEA9B957>
           0x107bb8000 -                ???  ???                     <B79E97F5-D988-345C-B1AC-EA2DBB1B3EF7>
           0x1a84e3000 -        0x1a8557fff  libdispatch.dylib       <009C06E1-2D2B-30EB-9DA7-A8298BFB42E2>  /usr/lib/system/libdispatch.dylib
           0x1a8583000 -        0x1a8593fff  libsystem_pthread.dylib <0C9035FD-1E74-3FFA-AEE4-640D5016A7E3>  /usr/lib/system/libsystem_pthread.dylib
           0x1a8645000 -        0x1a8672fff  libsystem_kernel.dylib  <39C1B6BD-29D6-3FD3-B413-A728CE7994A8>  /usr/lib/system/libsystem_kernel.dylib
           0x1a8673000 -        0x1a86a4fff  libdyld.dylib           <40BED7C0-BAAD-36D4-A714-0FF05C0BB69E>  /usr/lib/system/libdyld.dylib
           0x1a8746000 -        0x1a8abafff  CoreFoundation          <E925BCD9-1D3E-3670-88AF-A87501AE0569>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x1abdf7000 -        0x1abed7fff  UIFoundation            <AD45A4BD-760A-334C-BBC7-65CCF13BEADE>  /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
           0x1abed8000 -        0x1acf98fff  UIKitCore               <6040703B-B9A1-3BDF-8E0D-59AC7EB289C6>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1b273d000 -        0x1b2745fff  GraphicsServices        <35FEDE68-0A17-3B74-97E6-03FF81EBCE6B>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
           0x1b55db000 -        0x1b5690fff  CoreUI                  <FEEB4A6B-26C5-3635-B1C8-5A45DEE224AF>  /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
           0x1dccf8000 -        0x1dcd0ffff  libswiftUIKit.dylib     <216079DD-F57C-367E-9B37-30367211871B>  /usr/lib/swift/libswiftUIKit.dylib

Logs taken from the device, not running with the Xcode.

Wakeups limit exceeded
 
 
Q