• Sampler Waveform not being Updated. Showing Incorrect Samples Waveform

    1
    0 Votes
    1 Posts
    60 Views
    No one has replied
  • Logic AU Validation Fail with the latest commit

    6
    1 Votes
    6 Posts
    339 Views
    S

    @DabDab I Tried with different Current Projects with the same results, im going to try with a fresh project with the last days commits.

  • SNEX module crashes HISE

    3
    0 Votes
    3 Posts
    136 Views
    S

    @griffinboy

    It also crashes Hise on adding new snex file, it crashes right when selecting the create new file file option from the drop down, so I can't even get to the compile step.

    My simple setup is a sine generator with a Script FX added to its FX chain. Inside the scriptFX I add a SNEX shaper module, try to load it with either code or file.. >crash

  • Apple does not recognise otf font?

    2
    0 Votes
    2 Posts
    78 Views
    A

    @griffinboy does it work if you paint in a panel's paint routine??

    Link Preview Image [Engine] Cannot set Label fontName property from JSON · Issue #480 · christophhart/HISE

    const var label = Content.addLabel("label", 0, 0); Content.setPropertiesFromJSON("label", { "width": 200, "height": 200, "editable": false, "text": "Funky", "fontName,": "Tahoma", "fontSize": 18, }); Doesn't show as overwritten, still ac...

    favicon

    GitHub (github.com)

  • Monophonic Glide Script Weirdness

    Solved
    11
    1 Votes
    11 Posts
    612 Views
    M

    @johnmike works like a charm with Sampler! Many thanks to @ulrik for this one!!

  • AU problem...Clicks/Pops reduced at higher buffer sizes

    11
    0 Votes
    11 Posts
    1k Views
    virtuscapeaudioV

    @virtuscapeaudio @d-healey I think something is up with the Release Trigger Time Attenuation which makes sense with this issue.

    In Logic, the clicks/pops dont happen when I hold the notes for the duration of the Time Attenuation in the instrument's HISE project.

    I exported the same project without Time Attenuation checked and the issue is still there but definitely less severe.

    When I try to click a node in the time attenuator it crashes HISE. I can right click to remove a node, but when I left click it crashes...Here's a screen recording of it happening a few times:

    alt text

  • NUM_HARDCODED_FX_MODS - fails pluginval

    1
    0 Votes
    1 Posts
    98 Views
    No one has replied
  • Are scriptnode delays not accounting for block size and oversampling?

    12
    2 Votes
    12 Posts
    568 Views
    A

    @Christoph-Hart If I do it with Faust, here's what I get:

    faustcomb.gif

    it behaves fine on all blocksizes except frame,which I imagine is because Faust already does frame processing, so it manages to ignore whatever is happening above it.

    It behaves fine on no OS, OS2x, OS4x, but on 8x and 16x it jumps up one octave and two octaves respectively.

  • Replace in Floating Window

    1
    0 Votes
    1 Posts
    100 Views
    No one has replied
  • Custom Layout Bugs & Work-Arounds

    1
    0 Votes
    1 Posts
    91 Views
    No one has replied
  • g.getStringWidth is broken in 4.0.0 and g.setFont will not display Oxygen

    15
    0 Votes
    15 Posts
    330 Views
    C

    @Lindon That makes sense, thanks!

    Loading fonts seems to have fixed the issue with g.getStringWidth() in 4.0.0 too.

    It's weird that it worked correctly even on unloaded fonts in 3.6.2, but in 4.0.0 using it on unloaded fonts gives you an incorrect pixel width. It's like the Windows fonts were loaded by default in 3.6.2, but in 4.0.0 they're loaded wrong. Could that difference in behaviour between versions indicate some kind of problem?

    And is it worth adding a warning to users (whether in the software or in the documentation) when they use g.setFont() on unloaded fonts if the intention is that fonts should always be loaded in code? To me, the font loading part in the documentation reads as an option for adding your own fonts rather than a necessary step. I think I just read the correct syntax for setting a font, tried it and it worked, so I never had an indication that anything was wrong until now.

    Either way, it looks like neither method is bugged, they just misbehave when you don't load fonts properly, so problem solved!

  • Polyshape FX bug

    4
    1 Votes
    4 Posts
    181 Views
    ulrikU

    @Soundavid yes I know

  • HISE 4.x FAUST Build Failed "Command Ld failed"

    3
    0 Votes
    3 Posts
    159 Views
    DabDabD

    At the very end after waiting long long time Xcode finishes with the error.

    I have tried recent Develop version, old Master branch..nothing is working.
    Even I have tried without FAUST. NO luck.
    What is the reason? I am clueless.

  • Notch Filter makes noise after you play a note (Ableton only)

    3
    0 Votes
    3 Posts
    186 Views
    bendursoB

    @aaronventure Thanks, yes I'm using the filter modules. I will try the scriptnode :)

  • Monophonic table envelope produces audio glitches

    1
    1 Votes
    1 Posts
    55 Views
    No one has replied
  • CC controller data delayed slightly when coming from the MIDI player

    7
    1 Votes
    7 Posts
    388 Views
    L

    I checked it: in the MIDI file, the notes are written before the controller. When the MIDI file plays on a MIDI track connected to love language test the plugin in ... It is well-known that MIDI lags if you are transmitting lots of data, regardless of the hardware you use to send it. And music is very timing- ...Latency occurs when software sound modules and/or effects that respond to MIDI data begin consuming too much processor time. As you add voices ...

  • Repeatable Crash - Selecting Microphones (Multimic) in Sample Editor

    Solved
    6
    0 Votes
    6 Posts
    234 Views
    clevername27C

    @JFT I did the SampleMaps over again, this time not by hand.

  • External display buffers visualization crash

    18
    0 Votes
    18 Posts
    859 Views
    Matt_SFM

    Ok, if someone hits the same issue, I might have found a solution for this. I don't know if that's the proper way of handling it, but it seems to be working ok.

    I chaned this bit, and replaced the assertion:

    bool isConstant() const override { jassert(ns != nullptr); auto v = ns->constObjects.getValueAt(index); // objects and arrays are not constant... return !v.isArray() && !v.isObject(); }

    by this :

    bool isConstant() const override { if (ns == nullptr) return false; auto v = ns->constObjects.getValueAt(index); // objects and arrays are not constant... return !v.isArray() && !v.isObject(); }
  • 1 Votes
    4 Posts
    328 Views
    bendursoB

    @clevername27 said in Two-Fer: Exporting for Monolith Crashes, and Sample Called "Sampler" Required.:

    Exporting Monolith from the Tools menu crashes HISE; exporting from a sampler's contextual menu works.

    Oh I was trying to export monolith from the tools menu like always and it was not working. Until I found this post and used the sampler function. Thanks!

  • Blocker - Wavetable Generator Crashes on Save

    2
    0 Votes
    2 Posts
    132 Views
    AxiomCruxA
    ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: HISE [11615] Path: /Applications/HISE.app/Contents/MacOS/HISE Identifier: com.hartinstruments.HISEStandalone Version: 4.0.0 (4.0.0) Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2024-08-15 17:42:32.7096 -0400 OS Version: macOS 13.6.3 (22G436) Report Version: 12 Anonymous UUID: 555CCC8D-28B4-B919-7DF8-3D88B036D9B1 Time Awake Since Boot: 68000 seconds System Integrity Protection: enabled Crashed Thread: 8 com.apple.audio.IOThread.client Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Codes: 0x0000000000000001, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11 Terminating Process: exc handler [11615] VM Region Info: 0 is not in any region. Bytes before following region: 4374855680 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START ---> __TEXT 104c30000-1069e8000 [ 29.7M] r-x/r-x SM=COW ...ts/MacOS/HISE Thread 0:: JUCE Message Thread Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x18526bf34 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x18527e260 mach_msg2_internal + 80 2 libsystem_kernel.dylib 0x185274b98 mach_msg_overwrite + 604 3 libsystem_kernel.dylib 0x18526c2b0 mach_msg + 24 4 CoreFoundation 0x18538a754 __CFRunLoopServiceMachPort + 160 5 CoreFoundation 0x185389034 __CFRunLoopRun + 1208 6 CoreFoundation 0x185388428 CFRunLoopRunSpecific + 612 7 HIToolbox 0x18ebdcdf0 RunCurrentEventLoopInMode + 292 8 HIToolbox 0x18ebdcc2c ReceiveNextEventCommon + 648 9 HIToolbox 0x18ebdc984 _BlockUntilNextEventMatchingListInModeWithFilter + 76 10 AppKit 0x1885b0908 _DPSNextEvent + 636 11 AppKit 0x1885afaa4 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716 12 AppKit 0x1885a3f08 -[NSApplication run] + 464 13 HISE 0x104c4c8ec main + 296 14 dyld 0x184f53f28 start + 2236 Thread 1: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 4:: Sample Loading Thread 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac574 _pthread_cond_wait + 1232 2 libc++.1.dylib 0x1851d4f84 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>) + 100 3 HISE 0x10630fffc juce::WaitableEvent::wait(int) const + 152 4 HISE 0x105f39de8 hise::SampleThreadPool::run() + 192 5 HISE 0x106321908 juce::threadEntryProc(void*) + 288 6 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 7 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 5:: Javascript Thread 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac574 _pthread_cond_wait + 1232 2 libc++.1.dylib 0x1851d4f84 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>) + 100 3 HISE 0x10630fffc juce::WaitableEvent::wait(int) const + 152 4 HISE 0x1056581b4 hise::JavascriptThreadPool::run() + 376 5 HISE 0x106321908 juce::threadEntryProc(void*) + 288 6 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 7 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 6: 0 libsystem_kernel.dylib 0x18526bf34 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x18527e260 mach_msg2_internal + 80 2 libsystem_kernel.dylib 0x185274b98 mach_msg_overwrite + 604 3 libsystem_kernel.dylib 0x18526c2b0 mach_msg + 24 4 CoreMIDI 0x19d77a6fc XServerMachPort::ReceiveMessage(int&, void*, int&) + 104 5 CoreMIDI 0x19d7aecf8 MIDIProcess::MIDIInPortThread::Run() + 164 6 CoreMIDI 0x19d7962d8 CADeprecated::XThread::RunHelper(void*) + 48 7 CoreMIDI 0x19d797604 CADeprecated::CAPThread::Entry(CADeprecated::CAPThread*) + 92 8 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 9 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 7:: caulk.messenger.shared:17 0 libsystem_kernel.dylib 0x18526beb0 semaphore_wait_trap + 8 1 caulk 0x18e8e9024 caulk::semaphore::timed_wait(double) + 212 2 caulk 0x18e8e8ed8 caulk::concurrent::details::worker_thread::run() + 36 3 caulk 0x18e8e8bc8 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 96 4 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 5 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 8 Crashed:: com.apple.audio.IOThread.client 0 CoreAudio 0x187587a70 HALC_ProxyIOContext::UpdateTimeInfo() + 24 1 CoreAudio 0x187585f0c HALC_ProxyIOContext::IOWorkLoop() + 4004 2 CoreAudio 0x18758488c invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 116 3 CoreAudio 0x1876e7574 HALB_IOThread::Entry(void*) + 88 4 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 5 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 9:: Directory Scanner 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac574 _pthread_cond_wait + 1232 2 libc++.1.dylib 0x1851d4f84 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>) + 100 3 HISE 0x10630fffc juce::WaitableEvent::wait(int) const + 152 4 HISE 0x10630fc58 juce::TimeSliceThread::run() + 128 5 HISE 0x106321908 juce::threadEntryProc(void*) + 288 6 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 7 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 10:: Pool 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac574 _pthread_cond_wait + 1232 2 libc++.1.dylib 0x1851d4ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 HISE 0x10650c960 juce::OpenGLContext::CachedImage::runJob() + 1588 4 HISE 0x10650ccf8 non-virtual thunk to juce::OpenGLContext::CachedImage::runJob() + 16 5 HISE 0x106346974 juce::ThreadPool::ThreadPoolThread::run() + 620 6 HISE 0x106321908 juce::threadEntryProc(void*) + 288 7 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 8 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 11:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x18526bf34 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x18527e260 mach_msg2_internal + 80 2 libsystem_kernel.dylib 0x185274b98 mach_msg_overwrite + 604 3 libsystem_kernel.dylib 0x18526c2b0 mach_msg + 24 4 CoreFoundation 0x18538a754 __CFRunLoopServiceMachPort + 160 5 CoreFoundation 0x185389034 __CFRunLoopRun + 1208 6 CoreFoundation 0x185388428 CFRunLoopRunSpecific + 612 7 AppKit 0x1886daee0 _NSEventThread + 172 8 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 9 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 12:: JUCE Timer 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac574 _pthread_cond_wait + 1232 2 libc++.1.dylib 0x1851d4f84 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>) + 100 3 HISE 0x10630fffc juce::WaitableEvent::wait(int) const + 152 4 HISE 0x10639361c juce::Timer::TimerThread::run() + 188 5 HISE 0x106321908 juce::threadEntryProc(void*) + 288 6 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 7 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 13:: CVDisplayLink 0 libsystem_kernel.dylib 0x18526f730 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x1852ac5a0 _pthread_cond_wait + 1276 2 CoreVideo 0x18d040c68 CVDisplayLink::waitUntil(unsigned long long) + 324 3 CoreVideo 0x18d03fd38 CVDisplayLink::runIOThread() + 504 4 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 5 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 14: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 15: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 16: 0 libsystem_pthread.dylib 0x1852a6d8c start_wqthread + 0 Thread 17:: Convert Samplemaps to Wavetable 0 libsystem_platform.dylib 0x1852da350 __bzero + 64 1 libvDSP.dylib 0x18fe16824 vDSP_vclrD + 52 2 HISE 0x1053a7328 LorisLibrary::loris_snapshot(void*, char const*, double, char const*, double*, int&, int&) + 1276 3 HISE 0x10611d354 hise::LorisManager::getSnapshot(juce::File const&, double, juce::Identifier const&) + 332 4 HISE 0x1052b49b8 hise::SampleMapToWavetableConverter::calculateHarmonicMap() + 4116 5 HISE 0x104dcc2e4 hise::WavetableConverterDialog::buildAllWavetables() + 1324 6 HISE 0x104dd90ec std::__1::__function::__func<hise::WavetableConverterDialog::run()::'lambda'(std::__1::function<void ()>&), std::__1::allocator<hise::WavetableConverterDialog::run()::'lambda'(std::__1::function<void ()>&)>, bool (std::__1::function<void ()>&)>::operator()(std::__1::function<void ()>&) + 132 7 HISE 0x104dd6484 hise::WavetableConverterDialog::run() + 684 8 HISE 0x104e8ba5c hise::DialogWindowWithBackgroundThread::LoadingThread::run() + 32 9 HISE 0x106321908 juce::threadEntryProc(void*) + 288 10 libsystem_pthread.dylib 0x1852abfa8 _pthread_start + 148 11 libsystem_pthread.dylib 0x1852a6da0 thread_start + 8 Thread 8 crashed with ARM Thread State (64-bit): x0: 0x0000000120850c00 x1: 0x00000001e09f8888 x2: 0x0000000000000000 x3: 0x000000016c5299b0 x4: 0x00000001de0c0420 x5: 0x000000016c52b0e0 x6: 0x007070632e747865 x7: 0x0000000000000003 x8: 0x0000000000000001 x9: 0x0000000000000000 x10: 0x0100000100000000 x11: 0x00000000000c3b66 x12: 0x00000010347c67f2 x13: 0x0000000000000000 x14: 0x0000020000011000 x15: 0x0000000100000000 x16: 0x00000001852da640 x17: 0x00000001e279b578 x18: 0x0000000000000000 x19: 0x0000000120850c00 x20: 0x00000000000083ac x21: 0x0000000120850dd8 x22: 0x00000001e09f8888 x23: 0x0000000000000400 x24: 0x0000000000000001 x25: 0x0000000117d7bc50 x26: 0x0000000000000000 x27: 0x0000000117904e00 x28: 0x0000000000000100 fp: 0x000000016c52af50 lr: 0x0000000187585f0c sp: 0x000000016c52acd0 pc: 0x0000000187587a70 cpsr: 0x80001000 far: 0x0000000000000000 esr: 0x92000006 (Data Abort) byte read Translation fault Binary Images: 0x104c30000 - 0x1069e7fff com.hartinstruments.HISEStandalone (4.0.0) <a2228c13-4ef4-3a2a-95a7-0bb41dea3454> /Applications/HISE.app/Contents/MacOS/HISE 0x10f358000 - 0x10f363fff libobjc-trampolines.dylib (*) <106e99a0-0b8d-34fb-ad61-91eca3d8285c> /usr/lib/libobjc-trampolines.dylib 0x1105b4000 - 0x1106e7fff com.apple.audio.units.Components (1.14) <b050a2b2-9b25-3f3b-85df-7203cacea6ab> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x116d1c000 - 0x116d87fff com.apple.AppleMetalOpenGLRenderer (1.0) <f7afa15d-51d8-3351-8830-475ee922d329> /System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer 0x18526b000 - 0x1852a4fe7 libsystem_kernel.dylib (*) <6024d562-0a3b-3568-8ee2-1741160ba022> /usr/lib/system/libsystem_kernel.dylib 0x18530b000 - 0x1857e4fff com.apple.CoreFoundation (6.9) <c8a55620-0514-3ffd-af7f-854d6b752b18> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x18ebac000 - 0x18eedffff com.apple.HIToolbox (2.1.1) <4e1025f1-7083-3323-8c04-ac349fd79b73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x188577000 - 0x189486fff com.apple.AppKit (6.9) <956685f7-4174-3135-911d-cf52948ce09a> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x184f4e000 - 0x184fdc587 dyld (*) <b35b0343-b5b9-3204-8eba-8dad651a4e3a> /usr/lib/dyld 0x1852a5000 - 0x1852b1fff libsystem_pthread.dylib (*) <7acb080f-eabe-3a59-8d9f-7459f33bb263> /usr/lib/system/libsystem_pthread.dylib 0x1851c2000 - 0x18524eff7 libc++.1.dylib (*) <6866b472-e07d-3405-a9f5-c35eae010385> /usr/lib/libc++.1.dylib 0x19d768000 - 0x19d7dafff com.apple.audio.midi.CoreMIDI (2.0) <b400bafe-63d4-3515-99e6-27a866991293> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x18e8e7000 - 0x18e90ffff com.apple.audio.caulk (1.0) <c5e97bea-af65-3c54-bd90-60ff8fea8ee4> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x1873a9000 - 0x187a3cfff com.apple.audio.CoreAudio (5.0) <85bed4c7-472e-3d8f-b8aa-b7f6670b069f> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x18d03d000 - 0x18d09efff com.apple.CoreVideo (1.8) <61f21d7c-1dda-307b-9f0f-1fe5944c9e8f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x1852d7000 - 0x1852ddffb libsystem_platform.dylib (*) <444c6830-b32f-3e36-bf91-eef686fd4de0> /usr/lib/system/libsystem_platform.dylib 0x18fdd8000 - 0x18fec5f87 libvDSP.dylib (*) <1e138376-ea4d-39b6-98ae-6fabdb3c6ac4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.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.2G resident=0K(0%) swapped_out_or_unallocated=1.2G(100%) Writable regions: Total=380.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=380.5M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 384K 3 Activity Tracing 256K 1 CG backing stores 2880K 4 CG image 208K 10 ColorSync 592K 29 CoreAnimation 30.0M 10 CoreGraphics 32K 2 CoreGraphics (reserved) 16K 1 reserved VM address space (unallocated) CoreUI image data 1296K 10 Dispatch continuations 64.0M 1 Foundation 16K 1 Kernel Alloc Once 32K 1 MALLOC 242.3M 81 MALLOC guard page 192K 11 OpenGL GLSL 256K 3 STACK GUARD 56.3M 18 Stack 39.5M 18 VM_ALLOCATE 848K 25 VM_ALLOCATE (reserved) 128K 1 reserved VM address space (unallocated) __AUTH 927K 226 __AUTH_CONST 18.3M 410 __CTF 824 1 __DATA 7165K 400 __DATA_CONST 19.7M 415 __DATA_DIRTY 990K 135 __FONT_DATA 2352 1 __GLSLBUILTINS 5174K 1 __LINKEDIT 815.0M 5 __OBJC_RO 66.4M 1 __OBJC_RW 2012K 1 __TEXT 422.9M 434 dyld private memory 272K 2 mapped file 185.8M 29 shared memory 880K 15 =========== ======= ======= TOTAL 1.9G 2306 TOTAL, minus reserved VM space 1.9G 2306 ----------- Full Report ----------- {"app_name":"HISE","timestamp":"2024-08-15 17:42:33.00 -0400","app_version":"4.0.0","slice_uuid":"a2228c13-4ef4-3a2a-95a7-0bb41dea3454","build_version":"4.0.0","platform":1,"bundleID":"com.hartinstruments.HISEStandalone","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.6.3 (22G436)","roots_installed":0,"name":"HISE","incident_id":"A29049E5-94F3-4C67-8AED-9A98898F23DF"} { "uptime" : 68000, "procRole" : "Foreground", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "Macmini9,1", "coalitionID" : 1557, "osVersion" : { "train" : "macOS 13.6.3", "build" : "22G436", "releaseType" : "User" }, "captureTime" : "2024-08-15 17:42:32.7096 -0400", "incident" : "A29049E5-94F3-4C67-8AED-9A98898F23DF", "pid" : 11615, "translated" : false, "cpuType" : "ARM-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2024-08-15 17:39:32.4139 -0400", "procStartAbsTime" : 1627878359709, "procExitAbsTime" : 1632204861793, "procName" : "HISE", "procPath" : "\/Applications\/HISE.app\/Contents\/MacOS\/HISE", "bundleInfo" : {"CFBundleShortVersionString":"4.0.0","CFBundleVersion":"4.0.0","CFBundleIdentifier":"com.hartinstruments.HISEStandalone"}, "storeInfo" : {"deviceIdentifierForVendor":"30D7CC33-3358-55C5-99DF-B584D628C477","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.hartinstruments.HISEStandalone", "crashReporterKey" : "555CCC8D-28B4-B919-7DF8-3D88B036D9B1", "codeSigningID" : "com.hartinstruments.HISEStandalone", "codeSigningTeamID" : "PF9H8PK77F", "codeSigningFlags" : 570503953, "codeSigningValidationCategory" : 6, "codeSigningTrustLevel" : 0, "sip" : "enabled", "vmRegionInfo" : "0 is not in any region. Bytes before following region: 4374855680\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 104c30000-1069e8000 [ 29.7M] r-x\/r-x SM=COW ...ts\/MacOS\/HISE", "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":11615}, "vmregioninfo" : "0 is not in any region. Bytes before following region: 4374855680\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 104c30000-1069e8000 [ 29.7M] r-x\/r-x SM=COW ...ts\/MacOS\/HISE", "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" : 8, "threads" : [{"id":801507,"name":"JUCE Message Thread","queue":"com.apple.main-thread","frames":[{"imageOffset":3892,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":4},{"imageOffset":78432,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":4},{"imageOffset":39832,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":4},{"imageOffset":4784,"symbol":"mach_msg","symbolLocation":24,"imageIndex":4},{"imageOffset":522068,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":5},{"imageOffset":516148,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":5},{"imageOffset":513064,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":5},{"imageOffset":200176,"symbol":"RunCurrentEventLoopInMode","symbolLocation":292,"imageIndex":6},{"imageOffset":199724,"symbol":"ReceiveNextEventCommon","symbolLocation":648,"imageIndex":6},{"imageOffset":199044,"symbol":"_BlockUntilNextEventMatchingListInModeWithFilter","symbolLocation":76,"imageIndex":6},{"imageOffset":235784,"symbol":"_DPSNextEvent","symbolLocation":636,"imageIndex":7},{"imageOffset":232100,"symbol":"-[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:]","symbolLocation":716,"imageIndex":7},{"imageOffset":184072,"symbol":"-[NSApplication run]","symbolLocation":464,"imageIndex":7},{"imageOffset":116972,"symbol":"main","symbolLocation":296,"imageIndex":0},{"imageOffset":24360,"symbol":"start","symbolLocation":2236,"imageIndex":8}]},{"id":801520,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":801523,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":801566,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":801576,"name":"Sample Loading Thread","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":9},{"imageOffset":77700,"symbol":"std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>)","symbolLocation":100,"imageIndex":10},{"imageOffset":23986172,"symbol":"juce::WaitableEvent::wait(int) const","symbolLocation":152,"imageIndex":0},{"imageOffset":19963368,"symbol":"hise::SampleThreadPool::run()","symbolLocation":192,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801577,"name":"Javascript Thread","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":9},{"imageOffset":77700,"symbol":"std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>)","symbolLocation":100,"imageIndex":10},{"imageOffset":23986172,"symbol":"juce::WaitableEvent::wait(int) const","symbolLocation":152,"imageIndex":0},{"imageOffset":10650036,"symbol":"hise::JavascriptThreadPool::run()","symbolLocation":376,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801578,"frames":[{"imageOffset":3892,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":4},{"imageOffset":78432,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":4},{"imageOffset":39832,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":4},{"imageOffset":4784,"symbol":"mach_msg","symbolLocation":24,"imageIndex":4},{"imageOffset":75516,"symbol":"XServerMachPort::ReceiveMessage(int&, void*, int&)","symbolLocation":104,"imageIndex":11},{"imageOffset":290040,"symbol":"MIDIProcess::MIDIInPortThread::Run()","symbolLocation":164,"imageIndex":11},{"imageOffset":189144,"symbol":"CADeprecated::XThread::RunHelper(void*)","symbolLocation":48,"imageIndex":11},{"imageOffset":194052,"symbol":"CADeprecated::CAPThread::Entry(CADeprecated::CAPThread*)","symbolLocation":92,"imageIndex":11},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801579,"name":"caulk.messenger.shared:17","frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":4},{"imageOffset":8228,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":212,"imageIndex":12},{"imageOffset":7896,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":36,"imageIndex":12},{"imageOffset":7112,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":96,"imageIndex":12},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"triggered":true,"id":801638,"name":"com.apple.audio.IOThread.client","threadState":{"x":[{"value":4840557568},{"value":8063518856,"symbolLocation":0,"symbol":"_os_log_default"},{"value":0},{"value":6112319920},{"value":8020296736,"symbolLocation":0,"symbol":"_os_log_current_test_callback"},{"value":6112325856},{"value":31648768675051621},{"value":3},{"value":1},{"value":0},{"value":72057598332895232},{"value":801638},{"value":69600045042},{"value":0},{"value":2199023325184},{"value":4294967296},{"value":6529328704,"symbolLocation":0,"symbol":"_platform_memmove"},{"value":8094594424},{"value":0},{"value":4840557568},{"value":33708},{"value":4840558040},{"value":8063518856,"symbolLocation":0,"symbol":"_os_log_default"},{"value":1024},{"value":1},{"value":4694981712},{"value":0},{"value":4690300416},{"value":256}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6565682956},"cpsr":{"value":2147487744},"fp":{"value":6112325456},"sp":{"value":6112324816},"esr":{"value":2449473542,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":6565689968,"matchesCrashFrame":1},"far":{"value":0}},"frames":[{"imageOffset":1960560,"symbol":"HALC_ProxyIOContext::UpdateTimeInfo()","symbolLocation":24,"imageIndex":13},{"imageOffset":1953548,"symbol":"HALC_ProxyIOContext::IOWorkLoop()","symbolLocation":4004,"imageIndex":13},{"imageOffset":1947788,"symbol":"invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int)","symbolLocation":116,"imageIndex":13},{"imageOffset":3401076,"symbol":"HALB_IOThread::Entry(void*)","symbolLocation":88,"imageIndex":13},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801656,"name":"Directory Scanner","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":9},{"imageOffset":77700,"symbol":"std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>)","symbolLocation":100,"imageIndex":10},{"imageOffset":23986172,"symbol":"juce::WaitableEvent::wait(int) const","symbolLocation":152,"imageIndex":0},{"imageOffset":23985240,"symbol":"juce::TimeSliceThread::run()","symbolLocation":128,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801658,"name":"Pool","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":9},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":10},{"imageOffset":26069344,"symbol":"juce::OpenGLContext::CachedImage::runJob()","symbolLocation":1588,"imageIndex":0},{"imageOffset":26070264,"symbol":"non-virtual thunk to juce::OpenGLContext::CachedImage::runJob()","symbolLocation":16,"imageIndex":0},{"imageOffset":24209780,"symbol":"juce::ThreadPool::ThreadPoolThread::run()","symbolLocation":620,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801661,"name":"com.apple.NSEventThread","frames":[{"imageOffset":3892,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":4},{"imageOffset":78432,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":4},{"imageOffset":39832,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":4},{"imageOffset":4784,"symbol":"mach_msg","symbolLocation":24,"imageIndex":4},{"imageOffset":522068,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":5},{"imageOffset":516148,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":5},{"imageOffset":513064,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":5},{"imageOffset":1457888,"symbol":"_NSEventThread","symbolLocation":172,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801662,"name":"JUCE Timer","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":9},{"imageOffset":77700,"symbol":"std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>)","symbolLocation":100,"imageIndex":10},{"imageOffset":23986172,"symbol":"juce::WaitableEvent::wait(int) const","symbolLocation":152,"imageIndex":0},{"imageOffset":24524316,"symbol":"juce::Timer::TimerThread::run()","symbolLocation":188,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801664,"name":"CVDisplayLink","frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":4},{"imageOffset":30112,"symbol":"_pthread_cond_wait","symbolLocation":1276,"imageIndex":9},{"imageOffset":15464,"symbol":"CVDisplayLink::waitUntil(unsigned long long)","symbolLocation":324,"imageIndex":14},{"imageOffset":11576,"symbol":"CVDisplayLink::runIOThread()","symbolLocation":504,"imageIndex":14},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]},{"id":801666,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":805095,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":805213,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":9}]},{"id":806184,"name":"Convert Samplemaps to Wavetable","frames":[{"imageOffset":13136,"symbol":"__bzero","symbolLocation":64,"imageIndex":15},{"imageOffset":256036,"symbol":"vDSP_vclrD","symbolLocation":52,"imageIndex":16},{"imageOffset":7828264,"symbol":"LorisLibrary::loris_snapshot(void*, char const*, double, char const*, double*, int&, int&)","symbolLocation":1276,"imageIndex":0},{"imageOffset":21943124,"symbol":"hise::LorisManager::getSnapshot(juce::File const&, double, juce::Identifier const&)","symbolLocation":332,"imageIndex":0},{"imageOffset":6834616,"symbol":"hise::SampleMapToWavetableConverter::calculateHarmonicMap()","symbolLocation":4116,"imageIndex":0},{"imageOffset":1688292,"symbol":"hise::WavetableConverterDialog::buildAllWavetables()","symbolLocation":1324,"imageIndex":0},{"imageOffset":1741036,"symbol":"std::__1::__function::__func<hise::WavetableConverterDialog::run()::'lambda'(std::__1::function<void ()>&), std::__1::allocator<hise::WavetableConverterDialog::run()::'lambda'(std::__1::function<void ()>&)>, bool (std::__1::function<void ()>&)>::operator()(std::__1::function<void ()>&)","symbolLocation":132,"imageIndex":0},{"imageOffset":1729668,"symbol":"hise::WavetableConverterDialog::run()","symbolLocation":684,"imageIndex":0},{"imageOffset":2472540,"symbol":"hise::DialogWindowWithBackgroundThread::LoadingThread::run()","symbolLocation":32,"imageIndex":0},{"imageOffset":24058120,"symbol":"juce::threadEntryProc(void*)","symbolLocation":288,"imageIndex":0},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":9},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":9}]}], "usedImages" : [ { "source" : "P", "arch" : "arm64", "base" : 4374855680, "CFBundleShortVersionString" : "4.0.0", "CFBundleIdentifier" : "com.hartinstruments.HISEStandalone", "size" : 31162368, "uuid" : "a2228c13-4ef4-3a2a-95a7-0bb41dea3454", "path" : "\/Applications\/HISE.app\/Contents\/MacOS\/HISE", "name" : "HISE", "CFBundleVersion" : "4.0.0" }, { "source" : "P", "arch" : "arm64e", "base" : 4550131712, "size" : 49152, "uuid" : "106e99a0-0b8d-34fb-ad61-91eca3d8285c", "path" : "\/usr\/lib\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 4569382912, "CFBundleShortVersionString" : "1.14", "CFBundleIdentifier" : "com.apple.audio.units.Components", "size" : 1261568, "uuid" : "b050a2b2-9b25-3f3b-85df-7203cacea6ab", "path" : "\/System\/Library\/Components\/CoreAudio.component\/Contents\/MacOS\/CoreAudio", "name" : "CoreAudio", "CFBundleVersion" : "1.14" }, { "source" : "P", "arch" : "arm64e", "base" : 4677812224, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.AppleMetalOpenGLRenderer", "size" : 442368, "uuid" : "f7afa15d-51d8-3351-8830-475ee922d329", "path" : "\/System\/Library\/Extensions\/AppleMetalOpenGLRenderer.bundle\/Contents\/MacOS\/AppleMetalOpenGLRenderer", "name" : "AppleMetalOpenGLRenderer", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "arm64e", "base" : 6528872448, "size" : 237544, "uuid" : "6024d562-0a3b-3568-8ee2-1741160ba022", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6529527808, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 5087232, "uuid" : "c8a55620-0514-3ffd-af7f-854d6b752b18", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "1979.102" }, { "source" : "P", "arch" : "arm64e", "base" : 6689570816, "CFBundleShortVersionString" : "2.1.1", "CFBundleIdentifier" : "com.apple.HIToolbox", "size" : 3358720, "uuid" : "4e1025f1-7083-3323-8c04-ac349fd79b73", "path" : "\/System\/Library\/Frameworks\/Carbon.framework\/Versions\/A\/Frameworks\/HIToolbox.framework\/Versions\/A\/HIToolbox", "name" : "HIToolbox" }, { "source" : "P", "arch" : "arm64e", "base" : 6582398976, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 15794176, "uuid" : "956685f7-4174-3135-911d-cf52948ce09a", "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit", "name" : "AppKit", "CFBundleVersion" : "2299.70.136" }, { "source" : "P", "arch" : "arm64e", "base" : 6525607936, "size" : 583048, "uuid" : "b35b0343-b5b9-3204-8eba-8dad651a4e3a", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "source" : "P", "arch" : "arm64e", "base" : 6529110016, "size" : 53248, "uuid" : "7acb080f-eabe-3a59-8d9f-7459f33bb263", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6528180224, "size" : 577528, "uuid" : "6866b472-e07d-3405-a9f5-c35eae010385", "path" : "\/usr\/lib\/libc++.1.dylib", "name" : "libc++.1.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6936756224, "CFBundleShortVersionString" : "2.0", "CFBundleIdentifier" : "com.apple.audio.midi.CoreMIDI", "size" : 471040, "uuid" : "b400bafe-63d4-3515-99e6-27a866991293", "path" : "\/System\/Library\/Frameworks\/CoreMIDI.framework\/Versions\/A\/CoreMIDI", "name" : "CoreMIDI", "CFBundleVersion" : "88" }, { "source" : "P", "arch" : "arm64e", "base" : 6686666752, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.audio.caulk", "size" : 167936, "uuid" : "c5e97bea-af65-3c54-bd90-60ff8fea8ee4", "path" : "\/System\/Library\/PrivateFrameworks\/caulk.framework\/Versions\/A\/caulk", "name" : "caulk" }, { "source" : "P", "arch" : "arm64e", "base" : 6563729408, "CFBundleShortVersionString" : "5.0", "CFBundleIdentifier" : "com.apple.audio.CoreAudio", "size" : 6897664, "uuid" : "85bed4c7-472e-3d8f-b8aa-b7f6670b069f", "path" : "\/System\/Library\/Frameworks\/CoreAudio.framework\/Versions\/A\/CoreAudio", "name" : "CoreAudio", "CFBundleVersion" : "5.0" }, { "source" : "P", "arch" : "arm64e", "base" : 6660804608, "CFBundleShortVersionString" : "1.8", "CFBundleIdentifier" : "com.apple.CoreVideo", "size" : 401408, "uuid" : "61f21d7c-1dda-307b-9f0f-1fe5944c9e8f", "path" : "\/System\/Library\/Frameworks\/CoreVideo.framework\/Versions\/A\/CoreVideo", "name" : "CoreVideo", "CFBundleVersion" : "560.2" }, { "source" : "P", "arch" : "arm64e", "base" : 6529314816, "size" : 28668, "uuid" : "444c6830-b32f-3e36-bf91-eef686fd4de0", "path" : "\/usr\/lib\/system\/libsystem_platform.dylib", "name" : "libsystem_platform.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6708625408, "size" : 974728, "uuid" : "1e138376-ea4d-39b6-98ae-6fabdb3c6ac4", "path" : "\/System\/Library\/Frameworks\/Accelerate.framework\/Versions\/A\/Frameworks\/vecLib.framework\/Versions\/A\/libvDSP.dylib", "name" : "libvDSP.dylib" } ], "sharedCache" : { "base" : 6524944384, "size" : 3585916928, "uuid" : "eccd2a5c-66b8-3acf-a00a-c68fea25a443" }, "vmSummary" : "ReadOnly portion of Libraries: Total=1.2G resident=0K(0%) swapped_out_or_unallocated=1.2G(100%)\nWritable regions: Total=380.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=380.5M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 384K 3 \nActivity Tracing 256K 1 \nCG backing stores 2880K 4 \nCG image 208K 10 \nColorSync 592K 29 \nCoreAnimation 30.0M 10 \nCoreGraphics 32K 2 \nCoreGraphics (reserved) 16K 1 reserved VM address space (unallocated)\nCoreUI image data 1296K 10 \nDispatch continuations 64.0M 1 \nFoundation 16K 1 \nKernel Alloc Once 32K 1 \nMALLOC 242.3M 81 \nMALLOC guard page 192K 11 \nOpenGL GLSL 256K 3 \nSTACK GUARD 56.3M 18 \nStack 39.5M 18 \nVM_ALLOCATE 848K 25 \nVM_ALLOCATE (reserved) 128K 1 reserved VM address space (unallocated)\n__AUTH 927K 226 \n__AUTH_CONST 18.3M 410 \n__CTF 824 1 \n__DATA 7165K 400 \n__DATA_CONST 19.7M 415 \n__DATA_DIRTY 990K 135 \n__FONT_DATA 2352 1 \n__GLSLBUILTINS 5174K 1 \n__LINKEDIT 815.0M 5 \n__OBJC_RO 66.4M 1 \n__OBJC_RW 2012K 1 \n__TEXT 422.9M 434 \ndyld private memory 272K 2 \nmapped file 185.8M 29 \nshared memory 880K 15 \n=========== ======= ======= \nTOTAL 1.9G 2306 \nTOTAL, minus reserved VM space 1.9G 2306 \n", "legacyInfo" : { "threadTriggered" : { "name" : "com.apple.audio.IOThread.client" } }, "logWritingSignature" : "bf2a26248344def02e2295bff6b44637b0a56756", "trialInfo" : { "rollouts" : [ { "rolloutId" : "645c2d2f9e69a025b0a37e29", "factorPackIds" : { }, "deploymentId" : 240000003 }, { "rolloutId" : "64628732bf2f5257dedc8988", "factorPackIds" : { }, "deploymentId" : 240000001 } ], "experiments" : [ { "treatmentId" : "c47ab4cc-c9c3-4b5d-a87c-e2433ce02597", "experimentId" : "6639bc6ba73d460582162323", "deploymentId" : 400000006 }, { "treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8", "experimentId" : "6643969b3099cf28e049862f", "deploymentId" : 400000007 } ] } } Model: Macmini9,1, BootROM 10151.61.4, proc 8:4:4 processors, 16 GB, SMC Graphics: Apple M1, Apple M1, Built-In Display: LG TV SSCR2, 3840 x 2160 (2160p/4K UHD 1 - Ultra High Definition), Main, MirrorOff, Online Memory Module: LPDDR4, Hynix AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4378), wl0: May 13 2023 07:20:48 version 18.20.383.15.7.8.150 FWID 01-b37727a5 Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en1 PCI Card: Universal Audio Apollo Twin MkII - QUAD, Other Multimedia, Thunderbolt@3,0,0 USB Device: USB31Bus USB Device: USB31Bus USB Device: USB3.0 Hub USB Device: USB2.0 Hub USB Device: Boutique USB Device: APC40 mkII USB Device: USB30Bus USB Device: Backup+ Desk Thunderbolt Bus: Mac mini, Apple Inc. Thunderbolt Bus: Mac mini, Apple Inc. Thunderbolt Device: Apollo Twin MkII, Universal Audio, Inc., 1, 7.1

22

Online

1.7k

Users

11.5k

Topics

100.4k

Posts