Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macOS Big Sur crashes #2274

Closed
AndreaCCIE opened this issue Nov 12, 2020 · 80 comments
Closed

macOS Big Sur crashes #2274

AndreaCCIE opened this issue Nov 12, 2020 · 80 comments
Labels

Comments

@AndreaCCIE
Copy link

AndreaCCIE commented Nov 12, 2020

  1. Describe your problem;
    After having upgraded to macOS Big Sur, the configurator is very unstable.
    Is does crash often while on the PIDs tab, but it happens even on other tabs

  2. Include ways to reproduce the problem;
    Open the configurator, go to the PIDs tab and play with sliders/drop down

  3. Provide as much information as possible about your hardware and software, including:

  • what hardware / software you are using;
    MacBook Pro 13 2018 (irrelevant)

  • the version of all the software used;
    macOS Big Sur 20B29
    Betaflight Configurator both stable 10.7.0 and 10.8.0 v202011041226

@Martivip
Copy link

i have the same issue with random crashes

@mikeller
Copy link
Member

Hmm, I can't reproduce the crashes with MacOS 11.0.1 and Betaflight configurator 10.7.0 on a VM, which is all that I have at the moment. Somebody with actual Apple hardware will have to see if they can reproduce / fix.
It could also be a case of simply having to wait for the next release of NW.js, which should include fixes for any instabilities in MacOS Big Sur.

@ljholland
Copy link

ljholland commented Nov 16, 2020

I'm having the same problem. It seems you can eventually get in and make changes but BF crashes or locks up.

Update - version 10.7.0 of Betaflight
Macbook Pro 2013

It usually crashes immediately on startup. After a few restarts, it will stay alive. Same with connect - it crashes after connecting and also during many actions. However, I've seen that the changes made are saving to the quad.

@Alex-g-by
Copy link

Same problem. Betaflight configurator 10.7.0 crashes after macOS update.
Mac mini (Late 2014), Big Sur 11.0.1

@sn0opy
Copy link

sn0opy commented Nov 17, 2020

Found this line in an nwjs Helper diagnostic report:

Wakeups: 45001 wakeups over the last 92 seconds (491 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds

The moment this appeared, BFC just locked up and didn't let me do anything anymore. I doubt a full stacktrace would help here, but it looks like it's caused by nw.js not being fully compatible with Big sur yet. So basically what @mikeller said.

@sn0opy
Copy link

sn0opy commented Nov 17, 2020

There's a possible workaround as I was not able to reproduce the issue anymore after running the following command

codesign --remove-signature /Applications/Betaflight\ Configurator.app/Contents/Frameworks/nwjs\ Framework.framework/Helpers/nwjs\ Helper\ \(Renderer\).app

VScode is suffering from a very similar issue. Someone posted the above (for Vscode though) workaround fixing the issue.
microsoft/vscode#105446

@McGiverGim
Copy link
Member

If all of you can confirm this workaround, we can add it to the Mac OS notes while we find a better fix.

@ljholland
Copy link

@McGiverGim - confirmed. I'm not seeing any more crashing after running that command.

@McGiverGim McGiverGim added the BUG label Nov 18, 2020
@McGiverGim
Copy link
Member

If it matters, what I see in internet is that some parts of our nw framework have it's own signature, that is invalid. The above command removes them.

The perfect solution will be replace this signature by our own, but at this moment we don't have a certificate for that.

@mikeller
Copy link
Member

@McGiverGim: I guess another way to work around this will be to remove the signature on NW.js as part of the build process.
Still no appetite to pay Apple money for their protection racket - if they start giving out free certificates for community driven non-profit open source projects like Betaflight I am all on board.

@McGiverGim
Copy link
Member

Good idea. I don't have a Mac to test it.
I suppose we need to run the codesign command before building it and test if it works. If it works we can add it to the pipeline or to the gulpfile.

@sael17
Copy link

sael17 commented Nov 23, 2020

After having upgraded to macOS Big Sur, my VS Code C++ compiler stopped working. I can not run any of my recent or old projects and files. The problem occurs every time I try to Run Build Task or just Run.
macOS Big Sur 11.0.1 in MacBook Pro(2020)

I attached some images for easier comprehension, sorry if I didn't explain it well, I'm just a beginner :D

Screen Shot 2020-11-22 at 11 48 28 PM

Screen Shot 2020-11-22 at 11 49 18 PM

Screen Shot 2020-11-22 at 11 50 20 PM

@AndreaCCIE
Copy link
Author

There's a possible workaround as I was not able to reproduce the issue anymore after running the following command

codesign --remove-signature /Applications/Betaflight\ Configurator.app/Contents/Frameworks/nwjs\ Framework.framework/Helpers/nwjs\ Helper\ \(Renderer\).app

VScode is suffering from a very similar issue. Someone posted the above (for Vscode though) workaround fixing the issue.
microsoft/vscode#105446

I still have random crashes after this command.

@AndreaCCIE
Copy link
Author

Actually, nwjs still runs even after the configurator crashes or gets closed:

Screenshot 2020-11-23 at 11 34 40

@mikeller
Copy link
Member

@sael17: This is an entirely unrelated problem, and not pertaining to configurator at all. Please open a new issue at https://github.com/betaflight/betaflight/issues.

@Autocrit
Copy link

Betaflight Configurator is also unstable on an M1 MacBook Air (it can crash on opening, closing or when running, but is still usable some of the time). As it's running Big Sur it could be the same problem and could be NW.js related. Kiss GUI has also crashed with the report showing nwjs.

@mikeller
Copy link
Member

@AndreaCCIE: Looks like code signing is a red herring - the NW.js apps that we are using are not signed in the first place:

mikeller@iMac betaflight-configurator % git checkout 10.7.0
Note: switching to '10.7.0'.
mikeller@iMac betaflight-configurator % rm -r apps
mikeller@iMac betaflight-configurator % yarn gulp apps
yarn run v1.22.5
$ gulp apps
[...]
[12:47:13] Finished 'apps' after 57 s
✨  Done in 59.11s.
mikeller@iMac betaflight-configurator % for file in ./apps/betaflight-configurator/osx64/betaflight-configurator.app/Contents/Frameworks/nwjs\ Framework.framework/Helpers/*.app; do codesign -d ${file}; done
./apps/betaflight-configurator/osx64/betaflight-configurator.app/Contents/Frameworks/nwjs Framework.framework/Helpers/nwjs Helper (GPU).app: code object is not signed at all
./apps/betaflight-configurator/osx64/betaflight-configurator.app/Contents/Frameworks/nwjs Framework.framework/Helpers/nwjs Helper (Plugin).app: code object is not signed at all
./apps/betaflight-configurator/osx64/betaflight-configurator.app/Contents/Frameworks/nwjs Framework.framework/Helpers/nwjs Helper (Renderer).app: code object is not signed at all
./apps/betaflight-configurator/osx64/betaflight-configurator.app/Contents/Frameworks/nwjs Framework.framework/Helpers/nwjs Helper.app: code object is not signed at all
mikeller@iMac betaflight-configurator % 

@Autocrit
Copy link

Autocrit commented Nov 28, 2020

Rebuilding with nw.js version 0.50.1 and node.js 15.3.0, as well as doing codesign --deep --force --remove-signature betaflight-configurator.app for good measure, the app seems to open, PID sliders work, and it closes without crashing so far. Big Sur with M1.

@TahoeEd
Copy link

TahoeEd commented Dec 1, 2020

MacBook Air 2019 Big Sur 11.0.1 I am having similar issues however when going into the Setup tab I get this graphic and the program locks up.
Screen Shot 2020-11-30 at 6 18 14 PM

@9dc
Copy link

9dc commented Dec 14, 2020

Even after doing what @Autocrit said, i still get random crashes :/

MacBook Pro M1 Big Sur

@SPCORRIV
Copy link

MacBook Pro (Retina, 13-inch, Early 2015)
Big Sur
Issues.

  1. Disconnects and reconnects randomly
  2. Screens freeze cant disconnect.
  3. Screen freezes random images on setup page
    Thanks

@SebastianKumor
Copy link

Hello, I get this error when running configurator.
image

@mikeller
Copy link
Member

@SebastianKumo: This is normal if you used a development version of configurator, and then switched back to the stable version running on an older version of NW.js. Delete your NW.js application settings at ~/Library/Application Support/betaflight-configurator and you'll be fine.

@SebastianKumor
Copy link

@mikeller the newest master with updated NW.js works for me on macOS big sur without crashes or any other glitches I experienced on 10.7.0

@mikeller
Copy link
Member

Thanks @SebastianKumor for the feedback!

@SebastianKumor
Copy link

SebastianKumor commented Dec 26, 2020

@mikeller just had a friend with M1 chip mac confirm that the fix works on M1 big sur mac as well

@9dc
Copy link

9dc commented Dec 27, 2020

Thanks! Its working perfectly again.

@kenthinson
Copy link

Hello @mikeller is the new version with nwjs update available as a built binary or do I need to build it? Thanks! Right now on my M1 Mac I get crashes and nwjs is using 200% CPU in a left over zombie process after the crash. I assume the merge you did is related.

@haslinghuis
Copy link
Member

haslinghuis commented May 17, 2021

Yes biliion (in dutch terms) F405 is still topping but this is big number I did not expect either as we have about 591K active users in last week. In development I flash multiple times within an hour. Should compare OSX and behavior with Windows and Linux. Also want to mention https://web.dev/serial/ .
As we are using Nw.js and chrome Api I and have a very slow transition to Vue.js I wonder if Electron could make things easier.

@mikeller
Copy link
Member

mikeller commented Jun 9, 2021

@barts83eu: Looks like the version of NW.js that we are using might not be stable yet on M1 - we might want to look into updating to a newer version before the next release, if one can be found that works with the libraries used by us.

@mikeller
Copy link
Member

mikeller commented Jun 9, 2021

@barts83eu: Hopefully the problems on M1 Macs should be fixed with #2507.

@haslinghuis
Copy link
Member

haslinghuis commented Jun 20, 2021

I am saving for a new apple computer. M1 is half a year old. So when I'm done saving should an M2 be available?

@kevinsumner
Copy link
Contributor

I'm on an M1 with not-quite-latest macOS (11.4 (20F71)) and the v20210801.3383 nightly seems to be stable for me, although there are some other, milder bug.

@haslinghuis
Copy link
Member

@kevinsumner
Copy link
Contributor

@haslinghuis just tried v20210802.3387 -- similar results as v20210801.3383, generally good. Using a spare flight controller, I browsed through the configuration tabs and changed a few settings to exercise the build.

Only obvious issue I've seen on the v20210802.3387 build is Notification Center entry shows up as nwjs instead of Betaflight Configurator. This looks like a regression from the v20210801.3383 build. I wouldn't expect this to be M1-specific, though.

@haslinghuis
Copy link
Member

haslinghuis commented Aug 3, 2021

Thanks for testing!
What do you mean with Notification Center entry?
NWjs 0.55.0 targets some OSX issues specifally. However did not read the release notes any further than that.

@kevinsumner
Copy link
Contributor

With v20210802.3387 (bad): Screen Shot 2021-08-03 at 1 14 40 PM
With v20210801.3383 (good): Screen Shot 2021-08-03 at 1 14 33 PM

@haslinghuis
Copy link
Member

haslinghuis commented Aug 3, 2021

I can spin a build with 0.54.1 if you like to test? You can use the same URL above to get it.

@kevinsumner
Copy link
Contributor

Yup, I can do that!

@kevinsumner
Copy link
Contributor

v20210803.3405 seems to fix the Notifications regression while also maintaining stability.

@lebed2045
Copy link

I can confirm I also had same issue with 105% CPU process nwjs after betaflight crash. I didn't even realized that something wrong until start noticing that laptop is always hot and battery dies out significantly faster than usual. MacbookAir m1 OSX 11.4

@kevinsumner
Copy link
Contributor

kevinsumner commented Aug 31, 2021

@lebed2045 have you tried a recent nightly build or is that behavior on the current "stable" release?

@lebed2045
Copy link

@haslinghuis
Copy link
Member

@sebastiaanluca
Copy link

sebastiaanluca commented Sep 22, 2021

Same issue here on Big Sur 11.4 (20F71). Sometimes doesn't even open at all.

The nightly doesn't crash, but minimizes to the dock when switching spaces 😅

@sebus066
Copy link

hello betaflight configurator crash on Mac os monterey.
I give you the message of the crash.


Translated Report (Full Report Below)

Process: nwjs [1493]
Path: /Applications/Betaflight Configurator.app/Contents/MacOS/nwjs
Identifier: com.nw-builder.betaflight-configurator
Version: Version 10.7.1 (10.7.1)
Code Type: X86-64 (Translated)
Parent Process: launchd [1]
User ID: 501

Date/Time: 2021-11-10 10:17:07.7442 +0100
OS Version: macOS 12.0.1 (21A559)
Report Version: 12
Anonymous UUID: F11EB038-CBC7-53D3-C34D-2A9F331C0642

Time Awake Since Boot: 1700 seconds

System Integrity Protection: enabled

Crashed Thread: 2 StackSamplingProfiler

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: 0x0000000000000001, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY

Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process: exc handler [1493]

VM Region Info: 0 is not in any region. Bytes before following region: 4299423744
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
UNUSED SPACE AT START
--->
__TEXT 100440000-1004ac000 [ 432K] r-x/rwx SM=COW ...ts/MacOS/nwjs

Thread 0:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 0x100584930 ???
1 0x1005dc51c ???
2 dyld 0x2008756e7 objc::StringHashTable::tryGetIndex(char const*) const + 25
3 dyld 0x20087579d objc::ObjectHashTable::forEachObject(char const*, void (unsigned long long, unsigned short, bool&) block_pointer) const + 25
4 dyld 0x200872cfa dyld4::APIs::_dyld_for_each_objc_class(char const*, void (void*, bool, bool*) block_pointer) + 178
5 libobjc.A.dylib 0x7ff80993966f getClass_impl(char const*) + 133
6 libobjc.A.dylib 0x7ff8099395a8 getClassExceptSomeSwift(char const*) + 15
7 libobjc.A.dylib 0x7ff80993945e look_up_class + 70
8 Foundation 0x7ff80a896e22 NSClassFromString + 194
9 Foundation 0x7ff80a8a5964 _decodeObjectBinary + 2003
10 Foundation 0x7ff80a8a7a5a -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1752
11 Foundation 0x7ff80a8bfde0 -[NSArray(NSArray) initWithCoder:] + 161
12 Foundation 0x7ff80a8a5cee _decodeObjectBinary + 2909
13 Foundation 0x7ff80a8a5077 _decodeObject + 152
14 Foundation 0x7ff80a8a4f62 -[NSKeyedUnarchiver decodeObjectForKey:] + 162
15 Foundation 0x7ff80a8a4ddb -[NSKeyedUnarchiver decodeObjectOfClasses:forKey:] + 391
16 QuartzCore 0x7ff8110337f6 -[LKNSArrayCodingProxy initWithCoder:] + 124
17 Foundation 0x7ff80a8a5cee _decodeObjectBinary + 2909
18 Foundation 0x7ff80a8a5077 _decodeObject + 152
19 Foundation 0x7ff80a8a4f62 -[NSKeyedUnarchiver decodeObjectForKey:] + 162
20 Foundation 0x7ff80a8a4ddb -[NSKeyedUnarchiver decodeObjectOfClasses:forKey:] + 391
21 QuartzCore 0x7ff81103257f -[NSCoder(CACoderAdditions) CA_decodeObjectForKey:] + 59
22 QuartzCore 0x7ff81103222e CAObject_initWithCoder + 306
23 QuartzCore 0x7ff811031fb5 -[CALayer initWithCoder:] + 28
24 Foundation 0x7ff80a8a5cee _decodeObjectBinary + 2909
25 Foundation 0x7ff80a8a7a5a -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1752
26 Foundation 0x7ff80a8a6b6f -[NSDictionary(NSDictionary) initWithCoder:] + 174
27 Foundation 0x7ff80a8a5cee _decodeObjectBinary + 2909
28 Foundation 0x7ff80a8a5077 _decodeObject + 152
29 Foundation 0x7ff80a8a4f62 -[NSKeyedUnarchiver decodeObjectForKey:] + 162
30 Foundation 0x7ff80a8a4ddb -[NSKeyedUnarchiver decodeObjectOfClasses:forKey:] + 391
31 QuartzCore 0x7ff8110317c9 -[CAPackage _readFromArchiveData:options:error:] + 201
32 QuartzCore 0x7ff811031667 -[CAPackage _initWithData:type:options:error:] + 159
33 QuartzCore 0x7ff8110315b0 +[CAPackage packageWithData:type:options:error:] + 61
34 CoreUI 0x7ff811387749 -[CUIThemeFacet _makeLayerFromCAPackageData] + 159
35 CoreUI 0x7ff811378d09 -[CUIThemeFacet updateLayer:effects:] + 498
36 CoreUI 0x7ff8113873ee CUICoreThemeRenderer::CreateOrUpdateVisualEffectLayer(CUIDescriptor const*, CALayer**) + 244
37 CoreUI 0x7ff8113767d0 CUICoreThemeRenderer::CreateOrUpdateLayer(CUIDescriptor const*, CALayer**) + 938
38 CoreUI 0x7ff8113763a8 CUIRenderer::CreateOrUpdateLayer(__CFDictionary const*, CALayer**) + 200
39 AppKit 0x7ff80c4c1bce -[NSCompositeAppearance _callCoreUIWithBlock:options:requireBezelTintColor:] + 398
40 AppKit 0x7ff80c4dc395 -[NSAppearance _createOrUpdateLayer:options:] + 79
41 AppKit 0x7ff80cbdbe69 makeMaterialLayerWithCoreUIOptions + 98
42 AppKit 0x7ff80c609512 -[NSVisualEffectView _updateMaterialLayer] + 308
43 AppKit 0x7ff80c6092c2 -[NSVisualEffectView updateLayer] + 162
44 AppKit 0x7ff80c588d19 _NSViewUpdateLayer + 98
45 AppKit 0x7ff80c4a4665 +[NSAppearance _performWithCurrentAppearance:usingBlock:] + 66
46 AppKit 0x7ff80c6e4c3d __30-[_NSViewBackingLayer display]_block_invoke + 113
47 AppKit 0x7ff80c4e1020 -[NSFocusStack performWithFocusView:inWindow:usingBlock:] + 92
48 AppKit 0x7ff80c5886d2 -[_NSViewBackingLayer display] + 383
49 QuartzCore 0x7ff81103c679 CA::Layer::display_if_needed(CA::Transaction*) + 867
50 QuartzCore 0x7ff81118c17b CA::Context::commit_transaction(CA::Transaction*, double, double*) + 717
51 QuartzCore 0x7ff81101e2fa CA::Transaction::commit() + 704
52 AppKit 0x7ff80c8ea495 -[_NSFullScreenTransitionOverlayWindow positionLayersForEnter:reduced:] + 1155
53 AppKit 0x7ff80c8ea4df -[_NSFullScreenTransitionOverlayWindow startEnterFullScreenAnimationWithDuration:reduced:completionHandler:] + 56
54 AppKit 0x7ff80ce13912 -[_NSEnterFullScreenTransitionController _startFullScreenTransition] + 201
55 AppKit 0x7ff80ce1406f -[_NSEnterFullScreenTransitionController _doSucceededToEnterFullScreen] + 694
56 AppKit 0x7ff80ce14bae __65-[_NSEnterFullScreenTransitionController _performEnterFullScreen]_block_invoke + 417
57 AppKit 0x7ff80c8abc2e __NSFullScreenDockConnectionSendEnterForSpace_block_invoke + 135
58 libxpc.dylib 0x7ff8097e46d5 _xpc_connection_reply_callout + 36
59 libxpc.dylib 0x7ff8097e465d _xpc_connection_call_reply_async + 69
60 libdispatch.dylib 0x7ff8098e7d2f _dispatch_client_callout3 + 8
61 libdispatch.dylib 0x7ff809901e5e _dispatch_mach_msg_async_reply_invoke + 383
62 libdispatch.dylib 0x7ff8098f4518 _dispatch_main_queue_callback_4CF + 759
63 CoreFoundation 0x7ff809ba53b8 CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE + 9
64 CoreFoundation 0x7ff809b669a6 __CFRunLoopRun + 2760
65 CoreFoundation 0x7ff809b65809 CFRunLoopRunSpecific + 567
66 HIToolbox 0x7ff812bd23e1 RunCurrentEventLoopInMode + 292
67 HIToolbox 0x7ff812bd2137 ReceiveNextEventCommon + 587
68 HIToolbox 0x7ff812bd1ed5 _BlockUntilNextEventMatchingListInModeWithFilter + 70
69 AppKit 0x7ff80c4b78f0 _DPSNextEvent + 886
70 AppKit 0x7ff80c4b5f5c -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1411
71 nwjs Framework 0x116c00680 0x113658000 + 56264320
72 nwjs Framework 0x11719f62a 0x113658000 + 62158378
73 nwjs Framework 0x116c005b9 0x113658000 + 56264121
74 AppKit 0x7ff80c4a8359 -[NSApplication run] + 586
75 nwjs Framework 0x1171a79ac 0x113658000 + 62192044
76 nwjs Framework 0x1171a5f52 0x113658000 + 62185298
77 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
78 nwjs Framework 0x1171061a9 0x113658000 + 61530537
79 nwjs Framework 0x116c087d3 0x113658000 + 56297427
80 nwjs Framework 0x1149271cb 0x113658000 + 19722699
81 nwjs Framework 0x1149290d2 0x113658000 + 19730642
82 nwjs Framework 0x114924155 0x113658000 + 19710293
83 nwjs Framework 0x1169d785d 0x113658000 + 53999709
84 nwjs Framework 0x1169d7569 0x113658000 + 53998953
85 nwjs Framework 0x119c776ac 0x113658000 + 107083436
86 nwjs Framework 0x1169d6768 0x113658000 + 53995368
87 nwjs Framework 0x11365b687 ChromeMain + 279
88 nwjs 0x100441384 main + 372
89 dyld 0x2008524fe start + 462
90 dyld 0x20084d000 ???

Thread 1:: com.apple.rosetta.exceptionserver
0 runtime 0x7ff7ffe018e4 0x7ff7ffdfd000 + 18660
1 runtime 0x7ff7ffe0e928 0x7ff7ffdfd000 + 71976
2 runtime 0x7ff7ffe100a4 0x7ff7ffdfd000 + 77988

Thread 2 Crashed:: StackSamplingProfiler
0 libunwind.dylib 0x7ff814c84ca0 libunwind::CFI_Parserlibunwind::LocalAddressSpace::decodeFDE(libunwind::LocalAddressSpace&, unsigned long, libunwind::CFI_Parserlibunwind::LocalAddressSpace::FDE_Info*, libunwind::CFI_Parserlibunwind::LocalAddressSpace::CIE_Info*) + 30
1 libunwind.dylib 0x7ff814c86ef2 libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step() + 114
2 libunwind.dylib 0x7ff814c86ef2 libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step() + 114
3 nwjs Framework 0x1171abd99 0x113658000 + 62209433
4 nwjs Framework 0x11710359d 0x113658000 + 61519261
5 nwjs Framework 0x117103489 0x113658000 + 61518985
6 nwjs Framework 0x1171048a6 0x113658000 + 61524134
7 nwjs Framework 0x1171260cb 0x113658000 + 61661387
8 nwjs Framework 0x117139f2e 0x113658000 + 61742894
9 nwjs Framework 0x117139cc1 0x113658000 + 61742273
10 nwjs Framework 0x1170daf17 0x113658000 + 61353751
11 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
12 nwjs Framework 0x1171061a9 0x113658000 + 61530537
13 nwjs Framework 0x1171579ca 0x113658000 + 61864394
14 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
15 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
16 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 3:
0 runtime 0x7ff7ffe1f814 0x7ff7ffdfd000 + 141332

Thread 4:
0 runtime 0x7ff7ffe1f814 0x7ff7ffdfd000 + 141332

Thread 5:
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x11874099e 0x113658000 + 84838814
3 nwjs Framework 0x118740ea9 0x113658000 + 84840105
4 nwjs Framework 0x118737148 0x113658000 + 84799816
5 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
6 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 6:
0 runtime 0x7ff7ffe1f814 0x7ff7ffdfd000 + 141332

Thread 7:: ThreadPoolServiceThread
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a6d9c6 kevent64 + 10
2 nwjs Framework 0x1171baae3 0x113658000 + 62270179
3 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
4 nwjs Framework 0x1171061a9 0x113658000 + 61530537
5 nwjs Framework 0x117144844 0x113658000 + 61786180
6 nwjs Framework 0x1171579ca 0x113658000 + 61864394
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 8:: ThreadPoolForegroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714faba 0x113658000 + 61831866
5 nwjs Framework 0x11714f784 0x113658000 + 61831044
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 9:: ThreadPoolBackgroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714faba 0x113658000 + 61831866
5 nwjs Framework 0x11714f6f4 0x113658000 + 61830900
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 10:: ThreadPoolBackgroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714f86e 0x113658000 + 61831278
5 nwjs Framework 0x11714f6f4 0x113658000 + 61830900
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 11:: Chrome_IOThread
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a6d9c6 kevent64 + 10
2 nwjs Framework 0x1171baae3 0x113658000 + 62270179
3 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
4 nwjs Framework 0x1171061a9 0x113658000 + 61530537
5 nwjs Framework 0x1149303d4 0x113658000 + 19760084
6 nwjs Framework 0x1171579ca 0x113658000 + 61864394
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 12:: NetworkConfigWatcher
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 CoreFoundation 0x7ff809b67d51 __CFRunLoopServiceMachPort + 319
3 CoreFoundation 0x7ff809b6640f __CFRunLoopRun + 1329
4 CoreFoundation 0x7ff809b65809 CFRunLoopRunSpecific + 567
5 Foundation 0x7ff80a8f475e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 216
6 nwjs Framework 0x1171a7531 0x113658000 + 62190897
7 nwjs Framework 0x1171a5f52 0x113658000 + 62185298
8 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
9 nwjs Framework 0x1171061a9 0x113658000 + 61530537
10 nwjs Framework 0x1171579ca 0x113658000 + 61864394
11 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
12 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
13 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 13:: CrShutdownDetector
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a654e6 read + 10
2 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
3 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
4 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 14:: NetworkConfigWatcher
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 CoreFoundation 0x7ff809b67d51 __CFRunLoopServiceMachPort + 319
3 CoreFoundation 0x7ff809b6640f __CFRunLoopRun + 1329
4 CoreFoundation 0x7ff809b65809 CFRunLoopRunSpecific + 567
5 Foundation 0x7ff80a8f475e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 216
6 nwjs Framework 0x1171a7531 0x113658000 + 62190897
7 nwjs Framework 0x1171a5f52 0x113658000 + 62185298
8 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
9 nwjs Framework 0x1171061a9 0x113658000 + 61530537
10 nwjs Framework 0x1171579ca 0x113658000 + 61864394
11 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
12 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
13 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 15:: ThreadPoolForegroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714faba 0x113658000 + 61831866
5 nwjs Framework 0x11714f784 0x113658000 + 61831044
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 16:: ThreadPoolForegroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714faba 0x113658000 + 61831866
5 nwjs Framework 0x11714f784 0x113658000 + 61831044
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 17:: ThreadPoolForegroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714faba 0x113658000 + 61831866
5 nwjs Framework 0x11714f784 0x113658000 + 61831044
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 18:: ThreadPoolForegroundWorker
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x11714f158 0x113658000 + 61829464
4 nwjs Framework 0x11714f86e 0x113658000 + 61831278
5 nwjs Framework 0x11714f784 0x113658000 + 61831044
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 19:: CompositorTileWorker1
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a67506 __psynch_cvwait + 10
2 nwjs Framework 0x11719b8f4 0x113658000 + 62142708
3 nwjs Framework 0x11864c01d 0x113658000 + 83836957
4 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
5 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
6 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 20:: ThreadPoolSingleThreadForegroundBlocking0
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x1171ade5f 0x113658000 + 62217823
4 nwjs Framework 0x11714f14a 0x113658000 + 61829450
5 nwjs Framework 0x11714faba 0x113658000 + 61831866
6 nwjs Framework 0x11714f7e4 0x113658000 + 61831140
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 21:: CacheThread_BlockFile
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a6d9c6 kevent64 + 10
2 nwjs Framework 0x1171baae3 0x113658000 + 62270179
3 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
4 nwjs Framework 0x1171061a9 0x113658000 + 61530537
5 nwjs Framework 0x1171579ca 0x113658000 + 61864394
6 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
7 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
8 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 22:: BrowserWatchdog
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x1170daee9 0x113658000 + 61353705
4 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
5 nwjs Framework 0x1171061a9 0x113658000 + 61530537
6 nwjs Framework 0x1171579ca 0x113658000 + 61864394
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 23:: ThreadPoolSingleThreadSharedBackgroundBlocking1
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x1171ade5f 0x113658000 + 62217823
4 nwjs Framework 0x11714f14a 0x113658000 + 61829450
5 nwjs Framework 0x11714f86e 0x113658000 + 61831278
6 nwjs Framework 0x11714f724 0x113658000 + 61830948
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 24:: ThreadPoolSingleThreadSharedForegroundBlocking2
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x1171ade5f 0x113658000 + 62217823
4 nwjs Framework 0x11714f14a 0x113658000 + 61829450
5 nwjs Framework 0x11714faba 0x113658000 + 61831866
6 nwjs Framework 0x11714f7b4 0x113658000 + 61831092
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 25:: Chrome_HistoryThread
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 nwjs Framework 0x1171ae005 0x113658000 + 62218245
3 nwjs Framework 0x1170daee9 0x113658000 + 61353705
4 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
5 nwjs Framework 0x1171061a9 0x113658000 + 61530537
6 nwjs Framework 0x1171579ca 0x113658000 + 61864394
7 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
8 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
9 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 26:
0 runtime 0x7ff7ffe1f814 0x7ff7ffdfd000 + 141332

Thread 27:: NetworkConfigWatcher
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 CoreFoundation 0x7ff809b67d51 __CFRunLoopServiceMachPort + 319
3 CoreFoundation 0x7ff809b6640f __CFRunLoopRun + 1329
4 CoreFoundation 0x7ff809b65809 CFRunLoopRunSpecific + 567
5 Foundation 0x7ff80a8f475e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 216
6 nwjs Framework 0x1171a7531 0x113658000 + 62190897
7 nwjs Framework 0x1171a5f52 0x113658000 + 62185298
8 nwjs Framework 0x11713a7b8 0x113658000 + 61745080
9 nwjs Framework 0x1171061a9 0x113658000 + 61530537
10 nwjs Framework 0x1171579ca 0x113658000 + 61864394
11 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
12 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
13 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 28:: Startup watchdog thread Watchdog
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a67506 __psynch_cvwait + 10
2 nwjs Framework 0x11719b997 0x113658000 + 62142871
3 nwjs Framework 0x11715a800 0x113658000 + 61876224
4 nwjs Framework 0x11719c9b7 0x113658000 + 62146999
5 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
6 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 29:: com.apple.NSEventThread
0 ??? 0x7ff899f26940 ???
1 libsystem_kernel.dylib 0x7ff809a64aba mach_msg_trap + 10
2 CoreFoundation 0x7ff809b67d51 __CFRunLoopServiceMachPort + 319
3 CoreFoundation 0x7ff809b6640f __CFRunLoopRun + 1329
4 CoreFoundation 0x7ff809b65809 CFRunLoopRunSpecific + 567
5 AppKit 0x7ff80c625cec _NSEventThread + 132
6 libsystem_pthread.dylib 0x7ff809aa1514 _pthread_start + 125
7 libsystem_pthread.dylib 0x7ff809a9d02f thread_start + 15

Thread 2 crashed with X86 Thread State (64-bit):
rax: 0x00007ff809a9d099 rbx: 0x0000000000000010 rcx: 0x00007ff814c86c06 rdx: 0x00000003055bc058
rdi: 0x0000000000000000 rsi: 0x00000003055bc028 rbp: 0x00000003055badf0 rsp: 0x00000003055bada0
r8: 0x0000000000000000 r9: 0x00007ff809aa6fe8 r10: 0x00007ff809aa6ff0 r11: 0x00007ff809aa6f2d
r12: 0x00000003055bc028 r13: 0x0000000000000000 r14: 0x00000003055bc058 r15: 0x0000000000000000
rip: 0x00007ff814c84ca0 rfl: 0x0000000000000202
tmp0: 0x00007ff814c86ed5 tmp1: 0x00007ff814c86ed5 tmp2: 0x00007ff814c86ef2

Binary Images:
0x0 - 0xffffffffffffffff ??? () <00000000-0000-0000-0000-000000000000> ???
0x20084d000 - 0x2008b8fff dyld (
) <1a6ae033-9438-33c0-8077-988fd885250a> /usr/lib/dyld
0x7ff80992c000 - 0x7ff809968fff libobjc.A.dylib () <6b22efe4-18cc-3551-90ba-d18236104790> /usr/lib/libobjc.A.dylib
0x7ff80a894000 - 0x7ff80ac4efff com.apple.Foundation (6.9) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7ff81101c000 - 0x7ff811303fff com.apple.QuartzCore (1.11) <7e85dee1-5bb8-3ac2-ad98-2552838e01ca> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7ff81134e000 - 0x7ff811493fff com.apple.coreui (2.1) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7ff80c479000 - 0x7ff80d305fff com.apple.AppKit (6.9) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7ff8097d6000 - 0x7ff80980cfff libxpc.dylib (
) <900e1f8b-6333-3e4d-b64c-751264bb7223> /usr/lib/system/libxpc.dylib
0x7ff8098e5000 - 0x7ff80992bfff libdispatch.dylib () /usr/lib/system/libdispatch.dylib
0x7ff809ae8000 - 0x7ff809fe8fff com.apple.CoreFoundation (6.9) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7ff812ba3000 - 0x7ff812e9afff com.apple.HIToolbox (2.1.1) <4163a93f-bf71-3219-80ed-6f65e9266b81> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x113658000 - 0x11d69bfff io.nwjs.nwjs.framework (80.0.3987.116) <4e534edc-9d2e-35de-ac45-1741bc7e4302> /Applications/Betaflight Configurator.app/Contents/Frameworks/nwjs Framework.framework/Versions/80.0.3987.116/nwjs Framework
0x100440000 - 0x1004abfff com.nw-builder.betaflight-configurator (Version 10.7.1) <757802d8-a86d-31ab-9ed6-3a951ca13cf6> /Applications/Betaflight Configurator.app/Contents/MacOS/nwjs
0x7ff7ffdfd000 - 0x7ff7ffe2cfff runtime (
) <9f5d65be-d8d0-3979-bb05-e651a67e785c> /usr/libexec/rosetta/runtime
0x7ff814c7f000 - 0x7ff814c89fff libunwind.dylib () /usr/lib/system/libunwind.dylib
0x7ff809a9b000 - 0x7ff809aa6fff libsystem_pthread.dylib (
) <29a2750e-f31b-3630-8761-242a6bc3e99e> /usr/lib/system/libsystem_pthread.dylib
0x7ff809a64000 - 0x7ff809a9afff libsystem_kernel.dylib (*) <12bd6f13-c452-35ee-9069-51befef29f1a> /usr/lib/system/libsystem_kernel.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 0
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)
Writable regions: Total=1.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 256K 2
Activity Tracing 256K 1
CG backing stores 2176K 4
CG image 72K 6
ColorSync 232K 26
CoreAnimation 40.7M 9
CoreGraphics 12K 2
CoreUI image data 1380K 11
Dispatch continuations 64.0M 1
Foundation 48K 2
Kernel Alloc Once 8K 1
MALLOC 128.3M 45
MALLOC guard page 192K 8
MALLOC_MEDIUM (reserved) 472.0M 4 reserved VM address space (unallocated)
Mach message 24K 6
Mach message (reserved) 4K 1 reserved VM address space (unallocated)
Rosetta Arena 4096K 2
Rosetta Generic 940K 232
Rosetta IndirectBranch 1024K 1
Rosetta JIT 128.0M 1
Rosetta Return Stack 580K 58
Rosetta Thread Context 580K 58
STACK GUARD 16K 4
Stack 178.9M 29
Stack Guard 56.1M 25
VM_ALLOCATE 9932K 31
VM_ALLOCATE (reserved) 4K 1 reserved VM address space (unallocated)
__DATA 39.6M 503
__DATA_CONST 29.3M 324
__DATA_DIRTY 1612K 210
__FONT_DATA 4K 1
__LINKEDIT 697.4M 14
__OBJC_RO 81.6M 1
__OBJC_RW 3120K 2
__TEXT 647.2M 519
__UNICODE 588K 1
dyld private memory 1024K 1
mapped file 5.0G 706
shared memory 812K 14
unshared pmap 8512K 6
=========== ======= =======
TOTAL 7.5G 2873
TOTAL, minus reserved VM space 7.1G 2873


Full Report

{"app_name":"nwjs","timestamp":"2021-11-10 10:17:08.00 +0100","app_version":"Version 10.7.1","slice_uuid":"757802d8-a86d-31ab-9ed6-3a951ca13cf6","build_version":"10.7.1","platform":1,"bundleID":"com.nw-builder.betaflight-configurator","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 12.0.1 (21A559)","incident_id":"0D6287B8-F7B4-453A-989A-6C5DAA3A2BFD","name":"nwjs"}
{
"uptime" : 1700,
"procLaunch" : "2021-11-10 10:16:49.8226 +0100",
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "MacBookPro17,1",
"procStartAbsTime" : 41337250828,
"coalitionID" : 1225,
"osVersion" : {
"train" : "macOS 12.0.1",
"build" : "21A559",
"releaseType" : "User"
},
"captureTime" : "2021-11-10 10:17:07.7442 +0100",
"incident" : "0D6287B8-F7B4-453A-989A-6C5DAA3A2BFD",
"bug_type" : "309",
"pid" : 1493,
"procExitAbsTime" : 41767115163,
"translated" : true,
"cpuType" : "X86-64",
"procName" : "nwjs",
"procPath" : "/Applications/Betaflight Configurator.app/Contents/MacOS/nwjs",
"bundleInfo" : {"CFBundleShortVersionString":"Version 10.7.1","CFBundleVersion":"10.7.1","CFBundleIdentifier":"com.nw-builder.betaflight-configurator"},
"storeInfo" : {"deviceIdentifierForVendor":"B7D78202-344C-5B04-8F73-A0131E3C0157","thirdParty":true},
"parentProc" : "launchd",
"parentPid" : 1,
"coalitionName" : "com.nw-builder.betaflight-configurator",
"crashReporterKey" : "F11EB038-CBC7-53D3-C34D-2A9F331C0642",
"sip" : "enabled",
"vmRegionInfo" : "0 is not in any region. Bytes before following region: 4299423744\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 100440000-1004ac000 [ 432K] r-x/rwx SM=COW ...ts/MacOS/nwjs",
"isCorpse" : 1,
"exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"},
"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":1493},
"vmregioninfo" : "0 is not in any region. Bytes before following region: 4299423744\n REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 100440000-1004ac000 [ 432K] r-x/rwx SM=COW ...ts/MacOS/nwjs",
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"faultingThread" : 2,
"threads" : [{"id":24165,"name":"CrBrowserMain","queue":"com.apple.main-thread","frames":[{"imageOffset":4300753200,"region":"","imageIndex":0},{"imageOffset":4301112604,"region":"","imageIndex":0},{"imageOffset":165607,"symbol":"objc::StringHashTable::tryGetIndex(char const*) const","symbolLocation":25,"imageIndex":1},{"imageOffset":165789,"symbol":"objc::ObjectHashTable::forEachObject(char const*, void (unsigned long long, unsigned short, bool&) block_pointer) const","symbolLocation":25,"imageIndex":1},{"imageOffset":154874,"symbol":"dyld4::APIs::_dyld_for_each_objc_class(char const*, void (void*, bool, bool*) block_pointer)","symbolLocation":178,"imageIndex":1},{"imageOffset":54895,"symbol":"getClass_impl(char const*)","symbolLocation":133,"imageIndex":2},{"imageOffset":54696,"symbol":"getClassExceptSomeSwift(char const*)","symbolLocation":15,"imageIndex":2},{"imageOffset":54366,"symbol":"look_up_class","symbolLocation":70,"imageIndex":2},{"imageOffset":11810,"symbol":"NSClassFromString","symbolLocation":194,"imageIndex":3},{"imageOffset":72036,"symbol":"_decodeObjectBinary","symbolLocation":2003,"imageIndex":3},{"imageOffset":80474,"symbol":"-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]","symbolLocation":1752,"imageIndex":3},{"imageOffset":179680,"symbol":"-[NSArray(NSArray) initWithCoder:]","symbolLocation":161,"imageIndex":3},{"imageOffset":72942,"symbol":"_decodeObjectBinary","symbolLocation":2909,"imageIndex":3},{"imageOffset":69751,"symbol":"_decodeObject","symbolLocation":152,"imageIndex":3},{"imageOffset":69474,"symbol":"-[NSKeyedUnarchiver decodeObjectForKey:]","symbolLocation":162,"imageIndex":3},{"imageOffset":69083,"symbol":"-[NSKeyedUnarchiver decodeObjectOfClasses:forKey:]","symbolLocation":391,"imageIndex":3},{"imageOffset":96246,"symbol":"-[LKNSArrayCodingProxy initWithCoder:]","symbolLocation":124,"imageIndex":4},{"imageOffset":72942,"symbol":"_decodeObjectBinary","symbolLocation":2909,"imageIndex":3},{"imageOffset":69751,"symbol":"_decodeObject","symbolLocation":152,"imageIndex":3},{"imageOffset":69474,"symbol":"-[NSKeyedUnarchiver decodeObjectForKey:]","symbolLocation":162,"imageIndex":3},{"imageOffset":69083,"symbol":"-[NSKeyedUnarchiver decodeObjectOfClasses:forKey:]","symbolLocation":391,"imageIndex":3},{"imageOffset":91519,"symbol":"-[NSCoder(CACoderAdditions) CA_decodeObjectForKey:]","symbolLocation":59,"imageIndex":4},{"imageOffset":90670,"symbol":"CAObject_initWithCoder","symbolLocation":306,"imageIndex":4},{"imageOffset":90037,"symbol":"-[CALayer initWithCoder:]","symbolLocation":28,"imageIndex":4},{"imageOffset":72942,"symbol":"_decodeObjectBinary","symbolLocation":2909,"imageIndex":3},{"imageOffset":80474,"symbol":"-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]","symbolLocation":1752,"imageIndex":3},{"imageOffset":76655,"symbol":"-[NSDictionary(NSDictionary) initWithCoder:]","symbolLocation":174,"imageIndex":3},{"imageOffset":72942,"symbol":"_decodeObjectBinary","symbolLocation":2909,"imageIndex":3},{"imageOffset":69751,"symbol":"_decodeObject","symbolLocation":152,"imageIndex":3},{"imageOffset":69474,"symbol":"-[NSKeyedUnarchiver decodeObjectForKey:]","symbolLocation":162,"imageIndex":3},{"imageOffset":69083,"symbol":"-[NSKeyedUnarchiver decodeObjectOfClasses:forKey:]","symbolLocation":391,"imageIndex":3},{"imageOffset":88009,"symbol":"-[CAPackage _readFromArchiveData:options:error:]","symbolLocation":201,"imageIndex":4},{"imageOffset":87655,"symbol":"-[CAPackage _initWithData:type:options:error:]","symbolLocation":159,"imageIndex":4},{"imageOffset":87472,"symbol":"+[CAPackage packageWithData:type:options:error:]","symbolLocation":61,"imageIndex":4},{"imageOffset":235337,"symbol":"-[CUIThemeFacet _makeLayerFromCAPackageData]","symbolLocation":159,"imageIndex":5},{"imageOffset":175369,"symbol":"-[CUIThemeFacet updateLayer:effects:]","symbolLocation":498,"imageIndex":5},{"imageOffset":234478,"symbol":"CUICoreThemeRenderer::CreateOrUpdateVisualEffectLayer(CUIDescriptor const*, CALayer**)","symbolLocation":244,"imageIndex":5},{"imageOffset":165840,"symbol":"CUICoreThemeRenderer::CreateOrUpdateLayer(CUIDescriptor const*, CALayer**)","symbolLocation":938,"imageIndex":5},{"imageOffset":164776,"symbol":"CUIRenderer::CreateOrUpdateLayer(__CFDictionary const*, CALayer**)","symbolLocation":200,"imageIndex":5},{"imageOffset":297934,"symbol":"-[NSCompositeAppearance _callCoreUIWithBlock:options:requireBezelTintColor:]","symbolLocation":398,"imageIndex":6},{"imageOffset":406421,"symbol":"-[NSAppearance _createOrUpdateLayer:options:]","symbolLocation":79,"imageIndex":6},{"imageOffset":7745129,"symbol":"makeMaterialLayerWithCoreUIOptions","symbolLocation":98,"imageIndex":6},{"imageOffset":1639698,"symbol":"-[NSVisualEffectView _updateMaterialLayer]","symbolLocation":308,"imageIndex":6},{"imageOffset":1639106,"symbol":"-[NSVisualEffectView updateLayer]","symbolLocation":162,"imageIndex":6},{"imageOffset":1113369,"symbol":"_NSViewUpdateLayer","symbolLocation":98,"imageIndex":6},{"imageOffset":177765,"symbol":"+[NSAppearance _performWithCurrentAppearance:usingBlock:]","symbolLocation":66,"imageIndex":6},{"imageOffset":2538557,"symbol":"__30-[_NSViewBackingLayer display]_block_invoke","symbolLocation":113,"imageIndex":6},{"imageOffset":426016,"symbol":"-[NSFocusStack performWithFocusView:inWindow:usingBlock:]","symbolLocation":92,"imageIndex":6},{"imageOffset":1111762,"symbol":"-[_NSViewBackingLayer display]","symbolLocation":383,"imageIndex":6},{"imageOffset":132729,"symbol":"CA::Layer::display_if_needed(CA::Transaction*)","symbolLocation":867,"imageIndex":4},{"imageOffset":1507707,"symbol":"CA::Context::commit_transaction(CA::Transaction*, double, double*)","symbolLocation":717,"imageIndex":4},{"imageOffset":8954,"symbol":"CA::Transaction::commit()","symbolLocation":704,"imageIndex":4},{"imageOffset":4658325,"symbol":"-[_NSFullScreenTransitionOverlayWindow positionLayersForEnter:reduced:]","symbolLocation":1155,"imageIndex":6},{"imageOffset":4658399,"symbol":"-[_NSFullScreenTransitionOverlayWindow startEnterFullScreenAnimationWithDuration:reduced:completionHandler:]","symbolLocation":56,"imageIndex":6},{"imageOffset":10070290,"symbol":"-[_NSEnterFullScreenTransitionController _startFullScreenTransition]","symbolLocation":201,"imageIndex":6},{"imageOffset":10072175,"symbol":"-[_NSEnterFullScreenTransitionController _doSucceededToEnterFullScreen]","symbolLocation":694,"imageIndex":6},{"imageOffset":10075054,"symbol":"__65-[_NSEnterFullScreenTransitionController _performEnterFullScreen]_block_invoke","symbolLocation":417,"imageIndex":6},{"imageOffset":4402222,"symbol":"__NSFullScreenDockConnectionSendEnterForSpace_block_invoke","symbolLocation":135,"imageIndex":6},{"imageOffset":59093,"symbol":"_xpc_connection_reply_callout","symbolLocation":36,"imageIndex":7},{"imageOffset":58973,"symbol":"_xpc_connection_call_reply_async","symbolLocation":69,"imageIndex":7},{"imageOffset":11567,"symbol":"_dispatch_client_callout3","symbolLocation":8,"imageIndex":8},{"imageOffset":118366,"symbol":"_dispatch_mach_msg_async_reply_invoke","symbolLocation":383,"imageIndex":8},{"imageOffset":62744,"symbol":"_dispatch_main_queue_callback_4CF","symbolLocation":759,"imageIndex":8},{"imageOffset":775096,"symbol":"CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE","symbolLocation":9,"imageIndex":9},{"imageOffset":518566,"symbol":"__CFRunLoopRun","symbolLocation":2760,"imageIndex":9},{"imageOffset":514057,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":9},{"imageOffset":193505,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":10},{"imageOffset":192823,"symbol":"ReceiveNextEventCommon","symbolLocation":587,"imageIndex":10},{"imageOffset":192213,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":70,"imageIndex":10},{"imageOffset":256240,"symbol":"_DPSNextEvent","symbolLocation":886,"imageIndex":6},{"imageOffset":249692,"symbol":"-[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":1411,"imageIndex":6},{"imageOffset":56264320,"imageIndex":11},{"imageOffset":62158378,"imageIndex":11},{"imageOffset":56264121,"imageIndex":11},{"imageOffset":193369,"symbol":"-[NSApplication run]","symbolLocation":586,"imageIndex":6},{"imageOffset":62192044,"imageIndex":11},{"imageOffset":62185298,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":56297427,"imageIndex":11},{"imageOffset":19722699,"imageIndex":11},{"imageOffset":19730642,"imageIndex":11},{"imageOffset":19710293,"imageIndex":11},{"imageOffset":53999709,"imageIndex":11},{"imageOffset":53998953,"imageIndex":11},{"imageOffset":107083436,"imageIndex":11},{"imageOffset":53995368,"imageIndex":11},{"imageOffset":13959,"symbol":"ChromeMain","symbolLocation":279,"imageIndex":11},{"imageOffset":4996,"symbol":"main","symbolLocation":372,"imageIndex":12},{"imageOffset":21758,"symbol":"start","symbolLocation":462,"imageIndex":1},{"imageOffset":0,"imageIndex":1}]},{"id":24186,"name":"com.apple.rosetta.exceptionserver","frames":[{"imageOffset":18660,"imageIndex":13},{"imageOffset":71976,"imageIndex":13},{"imageOffset":77988,"imageIndex":13}]},{"triggered":true,"id":24302,"name":"StackSamplingProfiler","threadState":{"r13":{"value":0},"rflags":{"value":514},"rax":{"value":140703290740889,"symbolLocation":0,"symbol":"pthread_getspecific"},"rosetta":{"tmp2":{"value":140703477296882},"tmp1":{"value":140703477296853},"tmp0":{"value":140703477296853}},"r14":{"value":12974800984},"rsi":{"value":12974800936},"r8":{"value":0},"rdx":{"value":12974800984},"r10":{"value":140703290781680},"r9":{"value":140703290781672},"r15":{"value":0},"rbx":{"value":16},"r11":{"value":140703290781485},"rip":{"value":140703477288096},"rbp":{"value":12974796272},"rsp":{"value":12974796192},"r12":{"value":12974800936},"rcx":{"value":140703477296134,"symbolLocation":40,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::getReg(int)"},"flavor":"x86_THREAD_STATE","rdi":{"value":0}},"frames":[{"imageOffset":23712,"symbol":"libunwind::CFI_Parserlibunwind::LocalAddressSpace::decodeFDE(libunwind::LocalAddressSpace&, unsigned long, libunwind::CFI_Parserlibunwind::LocalAddressSpace::FDE_Info*, libunwind::CFI_Parserlibunwind::LocalAddressSpace::CIE_Info*)","symbolLocation":30,"imageIndex":14},{"imageOffset":32498,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step()","symbolLocation":114,"imageIndex":14},{"imageOffset":32498,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step()","symbolLocation":114,"imageIndex":14},{"imageOffset":62209433,"imageIndex":11},{"imageOffset":61519261,"imageIndex":11},{"imageOffset":61518985,"imageIndex":11},{"imageOffset":61524134,"imageIndex":11},{"imageOffset":61661387,"imageIndex":11},{"imageOffset":61742894,"imageIndex":11},{"imageOffset":61742273,"imageIndex":11},{"imageOffset":61353751,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24303,"frames":[{"imageOffset":141332,"imageIndex":13}]},{"id":24306,"frames":[{"imageOffset":141332,"imageIndex":13}]},{"id":24325,"frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":84838814,"imageIndex":11},{"imageOffset":84840105,"imageIndex":11},{"imageOffset":84799816,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24335,"frames":[{"imageOffset":141332,"imageIndex":13}]},{"id":24350,"name":"ThreadPoolServiceThread","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":39366,"symbol":"kevent64","symbolLocation":10,"imageIndex":16},{"imageOffset":62270179,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61786180,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24351,"name":"ThreadPoolForegroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831044,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24352,"name":"ThreadPoolBackgroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61830900,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24353,"name":"ThreadPoolBackgroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831278,"imageIndex":11},{"imageOffset":61830900,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24354,"name":"Chrome_IOThread","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":39366,"symbol":"kevent64","symbolLocation":10,"imageIndex":16},{"imageOffset":62270179,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":19760084,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24355,"name":"NetworkConfigWatcher","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":523601,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":9},{"imageOffset":517135,"symbol":"__CFRunLoopRun","symbolLocation":1329,"imageIndex":9},{"imageOffset":514057,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":9},{"imageOffset":395102,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":216,"imageIndex":3},{"imageOffset":62190897,"imageIndex":11},{"imageOffset":62185298,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24356,"name":"CrShutdownDetector","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":5350,"symbol":"read","symbolLocation":10,"imageIndex":16},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24360,"name":"NetworkConfigWatcher","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":523601,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":9},{"imageOffset":517135,"symbol":"__CFRunLoopRun","symbolLocation":1329,"imageIndex":9},{"imageOffset":514057,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":9},{"imageOffset":395102,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":216,"imageIndex":3},{"imageOffset":62190897,"imageIndex":11},{"imageOffset":62185298,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24361,"name":"ThreadPoolForegroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831044,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24362,"name":"ThreadPoolForegroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831044,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24363,"name":"ThreadPoolForegroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831044,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24364,"name":"ThreadPoolForegroundWorker","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61829464,"imageIndex":11},{"imageOffset":61831278,"imageIndex":11},{"imageOffset":61831044,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24365,"name":"CompositorTileWorker1","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":16},{"imageOffset":62142708,"imageIndex":11},{"imageOffset":83836957,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24366,"name":"ThreadPoolSingleThreadForegroundBlocking0","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":62217823,"imageIndex":11},{"imageOffset":61829450,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831140,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24368,"name":"CacheThread_BlockFile","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":39366,"symbol":"kevent64","symbolLocation":10,"imageIndex":16},{"imageOffset":62270179,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24371,"name":"BrowserWatchdog","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61353705,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24375,"name":"ThreadPoolSingleThreadSharedBackgroundBlocking1","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":62217823,"imageIndex":11},{"imageOffset":61829450,"imageIndex":11},{"imageOffset":61831278,"imageIndex":11},{"imageOffset":61830948,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24377,"name":"ThreadPoolSingleThreadSharedForegroundBlocking2","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":62217823,"imageIndex":11},{"imageOffset":61829450,"imageIndex":11},{"imageOffset":61831866,"imageIndex":11},{"imageOffset":61831092,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24378,"name":"Chrome_HistoryThread","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":62218245,"imageIndex":11},{"imageOffset":61353705,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24380,"frames":[{"imageOffset":141332,"imageIndex":13}]},{"id":24381,"name":"NetworkConfigWatcher","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":523601,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":9},{"imageOffset":517135,"symbol":"__CFRunLoopRun","symbolLocation":1329,"imageIndex":9},{"imageOffset":514057,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":9},{"imageOffset":395102,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":216,"imageIndex":3},{"imageOffset":62190897,"imageIndex":11},{"imageOffset":62185298,"imageIndex":11},{"imageOffset":61745080,"imageIndex":11},{"imageOffset":61530537,"imageIndex":11},{"imageOffset":61864394,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24382,"name":"Startup watchdog thread Watchdog","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":13574,"symbol":"__psynch_cvwait","symbolLocation":10,"imageIndex":16},{"imageOffset":62142871,"imageIndex":11},{"imageOffset":61876224,"imageIndex":11},{"imageOffset":62146999,"imageIndex":11},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]},{"id":24418,"name":"com.apple.NSEventThread","frames":[{"imageOffset":140705711417664,"imageIndex":0},{"imageOffset":2746,"symbol":"mach_msg_trap","symbolLocation":10,"imageIndex":16},{"imageOffset":523601,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":319,"imageIndex":9},{"imageOffset":517135,"symbol":"__CFRunLoopRun","symbolLocation":1329,"imageIndex":9},{"imageOffset":514057,"symbol":"CFRunLoopRunSpecific","symbolLocation":567,"imageIndex":9},{"imageOffset":1756396,"symbol":"_NSEventThread","symbolLocation":132,"imageIndex":6},{"imageOffset":25876,"symbol":"_pthread_start","symbolLocation":125,"imageIndex":15},{"imageOffset":8239,"symbol":"thread_start","symbolLocation":15,"imageIndex":15}]}],
"usedImages" : [
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 8598638592,
"size" : 442368,
"uuid" : "1a6ae033-9438-33c0-8077-988fd885250a",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703289229312,
"size" : 249856,
"uuid" : "6b22efe4-18cc-3551-90ba-d18236104790",
"path" : "/usr/lib/libobjc.A.dylib",
"name" : "libobjc.A.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703305383936,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.Foundation",
"size" : 3911680,
"uuid" : "d7fd0214-4bbb-3d84-88f7-820b25a6e16c",
"path" : "/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation",
"name" : "Foundation",
"CFBundleVersion" : "1855.105"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703413944320,
"CFBundleShortVersionString" : "1.11",
"CFBundleIdentifier" : "com.apple.QuartzCore",
"size" : 3047424,
"uuid" : "7e85dee1-5bb8-3ac2-ad98-2552838e01ca",
"path" : "/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore",
"name" : "QuartzCore",
"CFBundleVersion" : "962.57.1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703417294848,
"CFBundleShortVersionString" : "2.1",
"CFBundleIdentifier" : "com.apple.coreui",
"size" : 1335296,
"uuid" : "aa2269c7-84ca-30d2-8fd9-148851f99f4e",
"path" : "/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI",
"name" : "CoreUI",
"CFBundleVersion" : "737.1"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703334633472,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 15257600,
"uuid" : "dd0028a3-78e3-3a8a-a51b-ddd68123adef",
"path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2113"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703287828480,
"size" : 225280,
"uuid" : "900e1f8b-6333-3e4d-b64c-751264bb7223",
"path" : "/usr/lib/system/libxpc.dylib",
"name" : "libxpc.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703288938496,
"size" : 290816,
"uuid" : "be53a13c-8ce1-3e40-b9bc-98473d3eed3e",
"path" : "/usr/lib/system/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703291047936,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 5246976,
"uuid" : "afcc752e-074d-340f-890c-263efd2da77f",
"path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1855.105"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703442808832,
"CFBundleShortVersionString" : "2.1.1",
"CFBundleIdentifier" : "com.apple.HIToolbox",
"size" : 3112960,
"uuid" : "4163a93f-bf71-3219-80ed-6f65e9266b81",
"path" : "/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox",
"name" : "HIToolbox"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4620386304,
"CFBundleShortVersionString" : "80.0.3987.116",
"CFBundleIdentifier" : "io.nwjs.nwjs.framework",
"size" : 168050688,
"uuid" : "4e534edc-9d2e-35de-ac45-1741bc7e4302",
"path" : "/Applications/Betaflight Configurator.app/Contents/Frameworks/nwjs Framework.framework/Versions/80.0.3987.116/nwjs Framework",
"name" : "nwjs Framework",
"CFBundleVersion" : "3987.116"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 4299423744,
"CFBundleShortVersionString" : "Version 10.7.1",
"CFBundleIdentifier" : "com.nw-builder.betaflight-configurator",
"size" : 442368,
"uuid" : "757802d8-a86d-31ab-9ed6-3a951ca13cf6",
"path" : "/Applications/Betaflight Configurator.app/Contents/MacOS/nwjs",
"name" : "nwjs",
"CFBundleVersion" : "10.7.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 140703126507520,
"size" : 196608,
"uuid" : "9f5d65be-d8d0-3979-bb05-e651a67e785c",
"path" : "/usr/libexec/rosetta/runtime",
"name" : "runtime"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703477264384,
"size" : 45056,
"uuid" : "df7f7cf8-44ef-3fbb-b105-b42aad811afb",
"path" : "/usr/lib/system/libunwind.dylib",
"name" : "libunwind.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703290732544,
"size" : 49152,
"uuid" : "29a2750e-f31b-3630-8761-242a6bc3e99e",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "x86_64",
"base" : 140703290507264,
"size" : 225280,
"uuid" : "12bd6f13-c452-35ee-9069-51befef29f1a",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
}
],
"sharedCache" : {
"base" : 140703287492608,
"size" : 15215640576,
"uuid" : "b5084610-afe4-3485-bade-628c4468b057"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.3G resident=0K(0%) swapped_out_or_unallocated=1.3G(100%)\nWritable regions: Total=1.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 256K 2 \nActivity Tracing 256K 1 \nCG backing stores 2176K 4 \nCG image 72K 6 \nColorSync 232K 26 \nCoreAnimation 40.7M 9 \nCoreGraphics 12K 2 \nCoreUI image data 1380K 11 \nDispatch continuations 64.0M 1 \nFoundation 48K 2 \nKernel Alloc Once 8K 1 \nMALLOC 128.3M 45 \nMALLOC guard page 192K 8 \nMALLOC_MEDIUM (reserved) 472.0M 4 reserved VM address space (unallocated)\nMach message 24K 6 \nMach message (reserved) 4K 1 reserved VM address space (unallocated)\nRosetta Arena 4096K 2 \nRosetta Generic 940K 232 \nRosetta IndirectBranch 1024K 1 \nRosetta JIT 128.0M 1 \nRosetta Return Stack 580K 58 \nRosetta Thread Context 580K 58 \nSTACK GUARD 16K 4 \nStack 178.9M 29 \nStack Guard 56.1M 25 \nVM_ALLOCATE 9932K 31 \nVM_ALLOCATE (reserved) 4K 1 reserved VM address space (unallocated)\n__DATA 39.6M 503 \n__DATA_CONST 29.3M 324 \n__DATA_DIRTY 1612K 210 \n__FONT_DATA 4K 1 \n__LINKEDIT 697.4M 14 \n__OBJC_RO 81.6M 1 \n__OBJC_RW 3120K 2 \n__TEXT 647.2M 519 \n__UNICODE 588K 1 \ndyld private memory 1024K 1 \nmapped file 5.0G 706 \nshared memory 812K 14 \nunshared pmap 8512K 6 \n=========== ======= ======= \nTOTAL 7.5G 2873 \nTOTAL, minus reserved VM space 7.1G 2873 \n",
"legacyInfo" : {
"threadTriggered" : {
"name" : "StackSamplingProfiler"
}
},
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "607844aa04477260f58a8077",
"factorPackIds" : {
"SIRI_MORPHUN_ASSETS" : "6103050cbfe6dc472e1c982a"
},
"deploymentId" : 240000066
},
{
"rolloutId" : "602ad4dac86151000cf27e46",
"factorPackIds" : {
"SIRI_DICTATION_ASSETS" : "6169fcb10fc7aa5ad211cc7b"
},
"deploymentId" : 240000238
},
{
"rolloutId" : "60da5e84ab0ca017dace9abf",
"factorPackIds" : {

  },
  "deploymentId" : 240000008
},
{
  "rolloutId" : "5fc94383418129005b4e9ae0",
  "factorPackIds" : {

  },
  "deploymentId" : 240000153
},
{
  "rolloutId" : "5ffde50ce2aacd000d47a95f",
  "factorPackIds" : {

  },
  "deploymentId" : 240000068
},
{
  "rolloutId" : "601d9415f79519000ccd4b69",
  "factorPackIds" : {
    "SIRI_TEXT_TO_SPEECH" : "618455f04b3765609b8b78c1"
  },
  "deploymentId" : 240000311
}

],
"experiments" : [

]
}
}

Model: MacBookPro17,1, BootROM 7429.41.5, proc 8:4:4 processors, 8 GB, SMC
Graphics: Apple M1, Apple M1, Built-In
Display: Color LCD, 2560 x 1600 Retina, Main, MirrorOff, Online
Memory Module: LPDDR4
AirPort: Wi-Fi, wl0: Sep 13 2021 21:06:59 version 18.20.310.14.7.8.119 FWID 01-9d72ee4a
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB3.1 Hub
USB Device: USB 10/100/1000 LAN
USB Device: USB2.1 Hub
USB Device: USB 2.0 Hub
USB Device: USB 2.0 Hub
USB Device: 2.4G INPUT DEVICE
USB Device: USB PnP Audio Device
USB Device: Generic Billboard Device
USB Device: Betaflight STM32F405
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

@haslinghuis
Copy link
Member

Confirmed it's working now with v10,8,0 on M1 (using NW.js 054.1)

@chipkaye
Copy link

would like to build a 10.4.0 version of configurator for use on a pre-M1 Macbook and having trouble finding/understanding the fix for the original bug here macOS Big Sur, the configurator is very unstable. much appreciated if someone can point me in the right direction, thanks.

chipkaye added a commit to chipkaye/betaflight-configurator that referenced this issue Sep 19, 2022
     - see: betaflight#2274
     - bump NW.js to v50.2 to fix MacOS Big Sur instability
     - change status string to "Configurator (NW.js v50.2) "
     - also supress check for newer version of configurator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests