Af:region doesn't expand down

Hi everyone,
Using a stretch layout and a document viewer, I want to be able to see a PDF document. With this code, I'm able to strech it for the width, but not the height:
<af:panelStretchLayout id="psl3" styleClass="AFStretchWidth"
inlineStyle="height:700px;width:930px">
<f:facet name="center">
<af:region value="#{bindings.doclibdocumentviewer1.regionModel}"
id="r1" styleClass="AFStretchWidth"/>
</f:facet>
</af:panelStretchLayout>
The problem is that I can only see a small part of the PDF. With bugzilla and firefox, I inspected the element, and it is only 150px of height, I changed it directly in the HTML code to see the result, but I also want to modify it in WebCenter. I searched a lot, and I didn't found with the component only had 150 pixel of height. Here is the result and the arrows are what I want to do with it:
http://s17.postimage.org/gnhg1swj3/Sans_titre.png
Thanks for your help :)

The fact is that HTML code generated by ADF with the inlineFrame is something like this:
<div>
<iframe ........>
</div>
and the broser displays this in a very little view.
In the browser (chrome for exemple) I can delete the <div> </div> and leave the iframe tag. with this, the contents appear in (more or less) full screen size.

Similar Messages

  • I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    You are absolutely right.  Thought Enter meant Enter.  I was wrong.  Thank you for the help.
    Rod Rogers, Broker
    Accredited Land Consultant (ALC)
    Metcalf Land Company, Inc.
    Office: 864-585-0444
    Mobile: 864-316-0297
    Fax: 864-583-6000
    <http://www.metcalfland.com> www.metcalfland.com

  • After using iTunes my Mac doesn't shut down!

    My MacBookPro doesn't shut down after using iTunes. I have try anything and the apple support can't also help me.
    I can only stop my Mac with the power button. If I don't use iTunes I have no problems to shut down the Mac.
    Have anybody a similar problem and can help me? Thanks

    It's so curious...
    I found something at: https://discussions.apple.com/message/17590111#17590111
    I'm not sure whether this issue caused by Library/Preferences/com.apple.alf.plist.

  • TS1368 My account keeps asking for Region but the drop down menu lists Cities in China. I can,'t cange the region in my account because it asks me to check the date and time but these are correct. Any answers please?

    My account keeps asking for Region but the drop down menu lists Cities in China. I can,'t cange the region in my account because it asks me to check the date and time but these are correct. Any answers please?

    Look, I understand I still need a card attached to the account. The problem is, it won't accept my card because I only have 87 cents in my bank account right now.
    If I had known there would be so much trouble with the iTunes card, I would have just put the cash in my bank account in the morning instead of buying an iTunes card (I didn't expect the banks to be open on Thanksgiving of course).
    Apple will only accept cards that have a balance. The balance is so small in my account that it won't accept it as a valid card.
    I'm going to have to contact Apple anyway to reset the security questions. That's obvious. Your answers were not exactly helpful. You didn't tell me anything I don't already know, but thanks for trying to be helpful.

  • Hierarchical alv doesn't expand

    Hello  experts
    i written a hierarchical alv it run fines at output it doesn't expand please help me to find out the problem.
    REPORT  ZCR_HERARCHIAL_LIST_DISPLAY.
    TABLES :VBAK,VBAP.
    TYPE-POOLS:SLIS.
    DATA : BEGIN OF IT_VBAK OCCURS 0,
           VBELN LIKE VBAK-VBELN,
           ERDAT LIKE VBAK-ERDAT,
           ERZET LIKE VBAK-ERZET,
           ERNAM LIKE VBAK-ERNAM,
           ANGDT LIKE VBAK-ANGDT,
           EXPAND TYPE XFELD,
           END OF IT_VBAK.
    DATA : BEGIN OF IT_VBAP OCCURS 0,
           VBELN LIKE VBAP-VBELN,
           POSNR LIKE VBAP-POSNR,
           MATNR LIKE VBAP-MATNR,
           MATWA LIKE VBAP-MATWA,
           END OF it_vbap.
    DATA : IT_FILELDCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    DATA : IT_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA : WA_KEYINFO TYPE SLIS_KEYINFO_ALV.
    DATA : I_PROGRAM TYPE sy-repid.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS S_VBELN FOR VBAK-VBELN NO INTERVALS.
    SELECTION-SCREEN SKIP.
    PARAMETERS:P_EXPAND AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN END OF BLOCK B1.
    start-of-selection.
    PERFORM SELECT_DATA.
    PERFORM BULID_FIELDCATALOG.
    PERFORM SET_LAYOUT.
    FORM SELECT_DATA .
    SELECT VBELN
           ERDAT
           ERZET
           ERNAM
           ANGDT
           FROM VBAK
           INTO CORRESPONDING FIELDS OF TABLE IT_VBAK UP TO 10 ROWS.
          IF NOT IT_VBAK[] IS INITIAL.
          SELECT VBELN
                 POSNR
                 MATNR
                 MATWA
                 FROM VBAP
                 INTO CORRESPONDING FIELDS OF TABLE IT_VBAP
                 FOR ALL ENTRIES IN IT_VBAK WHERE VBELN = IT_VBAK-VBELN.
          ENDIF.
       SORT IT_VBAP BY VBELN.
    ENDFORM.                    " SELECT_DATA

    FORM BULID_FIELDCATALOG .
    WA_FIELDCAT-col_pos = 1.
    WA_FIELDCAT-fieldname = 'VBELN'.
    WA_FIELDCAT-tabname = 'VBAK'.
    WA_FIELDCAT-seltext_m = 'SALES DOCUMENT'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 2.
    WA_FIELDCAT-fieldname = 'ERDAT'.
    WA_FIELDCAT-tabname = 'VBAK'.
    WA_FIELDCAT-seltext_m = 'RECORD CREATION DATE'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 3.
    WA_FIELDCAT-fieldname = 'ERZET'.
    WA_FIELDCAT-tabname = 'VBAK'.
    WA_FIELDCAT-seltext_m = 'ENTRY TIME'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 4.
    WA_FIELDCAT-fieldname = 'ERNAM'.
    WA_FIELDCAT-tabname = 'VBAK'.
    WA_FIELDCAT-seltext_m = 'NAME OF THE PERSON WHO CREATED THE OBLECT'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 5.
    WA_FIELDCAT-fieldname = 'ANGDT'.
    WA_FIELDCAT-tabname = 'VBAK'.
    WA_FIELDCAT-seltext_m = 'QUOTATION'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 6.
    WA_FIELDCAT-fieldname = 'VBELN'.
    WA_FIELDCAT-tabname = 'VBAP'.
    WA_FIELDCAT-seltext_m = 'SALES DOCUMENT'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 7.
    WA_FIELDCAT-fieldname = 'POSNR'.
    WA_FIELDCAT-tabname = 'VBAP'.
    WA_FIELDCAT-seltext_m = 'SALES DOCUMENTB ITEM'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 8.
    WA_FIELDCAT-fieldname = 'MATNR'.
    WA_FIELDCAT-tabname = 'VBAP'.
    WA_FIELDCAT-seltext_m = 'MATERIAL NO'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    WA_FIELDCAT-col_pos = 9.
    WA_FIELDCAT-fieldname = 'MATWA'.
    WA_FIELDCAT-tabname = 'VBAP'.
    WA_FIELDCAT-seltext_m = 'MATERIAL ENTERED'.
    APPEND WA_FIELDCAT TO it_fileldcat.
    CLEAR WA_FIELDCAT.
    ENDFORM.                    " BULID_FIELDCATALOG
    FORM SET_LAYOUT .
    IT_LAYOUT-group_change_edit = 'X'..
    IT_LAYOUT-colwidth_optimize = 'X'.
    IT_LAYOUT-zebra = 'X'.
    IT_LAYOUT-detail_popup = 'X'.
    IT_LAYOUT-get_selinfos = 'X'.
    IF P_EXPAND = 'X'.
    IT_LAYOUT-expand_fieldname = 'EXPAND'.
    ENDIF.
    WA_KEYINFO-ITEM01 = 'VBELN'.
    WA_KEYINFO-ITEM01 = 'VBELN'.
    CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
      EXPORTING
    *   I_INTERFACE_CHECK              = ' '
       I_CALLBACK_PROGRAM             = I_PROGRAM
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
       IS_LAYOUT                      = IT_LAYOUT
       IT_FIELDCAT                    = IT_FILELDCAT
    *   IT_EXCLUDING                   =
    *   IT_SPECIAL_GROUPS              =
    *   IT_SORT                        =
    *   IT_FILTER                      =
    *   IS_SEL_HIDE                    =
    *   I_SCREEN_START_COLUMN          = 0
    *   I_SCREEN_START_LINE            = 0
    *   I_SCREEN_END_COLUMN            = 0
    *   I_SCREEN_END_LINE              = 0
    *   I_DEFAULT                      = 'X'
    *   I_SAVE                         = ' '
    *   IS_VARIANT                     =
    *   IT_EVENTS                      =
    *   IT_EVENT_EXIT                  =
        I_TABNAME_HEADER               = 'VBAK'
        I_TABNAME_ITEM                 = 'VBAP'
    *   I_STRUCTURE_NAME_HEADER        =
    *   I_STRUCTURE_NAME_ITEM          =
        IS_KEYINFO                     = WA_KEYINFO
    *   IS_PRINT                       =
    *   IS_REPREP_ID                   =
    *   I_BYPASSING_BUFFER             =
    *   I_BUFFER_ACTIVE                =
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER        =
    *   ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB_HEADER                = IT_VBAK
        T_OUTTAB_ITEM                  = IT_VBAP
    * EXCEPTIONS
    *   PROGRAM_ERROR                  = 1
    *   OTHERS                         = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • MacBook Pro display doesn't close down properly.

    We have one MacBook Pro that doesn't close down properly. The display just bounces up. Is there any way to fix this or is this something that needs to be fixed by a technician?

    Try blowing out the slots where the two "prongs" come up, and the release button slot (push it in and out a bit while doing this) with compressed air. (use your lungs if you don't have a can of air).
    Often a bit of crumb or other gunk will impede the mechanism enough to prevent the magnets from being able to do their job properly.
    Cheers
    Rod

  • When watching an item ending in ebay/firefox, the time remaining doesn't count down.

    When watching an item ending in ebay/firefox, the time remaining doesn't count down. However I'm sure it used too.

    Just an update... 
    I took my computer into the Apple Store and they gave me a new battery (again).  I also erased my hard drive and reinstalled Lion.  I am still having the same problem with my battery icon not counting down (when i have the power cord unplugged).  Another thing I may have not talked about is when I unplug my power adapter from my MacBook the screen used to dim slightly,  It no longer does that. Hmm.  And yes I have checked the power settings. 
    I am seeing a big difference in my new battery though.  The 6 month old battery I was using before my replacement wasn't lasting but maybe and hour before completely turning off my laptop.  SInce I got my replacement battery I am back to a regular battery life.  Maybe a couple issues going on here...
    As a fix, I purchased Battery Guard from the app store and placed the icon on my tool bar.  It actually counts down my battery life as a percentage.  So its a huge help.  I just don't know why the native Mac icon isn't working properly??  One thing I have noticed is the 3rd party app will only count down using a Percentage.  But, like the native Mac icon it will not count down using time.  Something else to add...  After using my battery, and I plug my MacBook back in, the battery icon will count up.  Kinda strange that it will count up but not down.
    Dstppy, any luck at the Apple Store?

  • Should I take my iPhone 4 to the apple store to get my vibrate button? Because it doesn't go down all the way

    My iPhone 4 vibrate button doesn't go down all the way, could I get that fixed?

    If it is defective and still under warranty then they wil replace the iphone for free.
    If it is not under warranty then you can buy an out of warranty replacement.  In the U.S that would cost $149

  • OS on external firewire doesn't shut down

    Hi. I have an OS for emergencies on an external firewire drive. So after updating to OSX 10.5.8 my external firewire sometimes doesn't shut down when I used it as the bootdrive, and want to switch to my internal harddrive for booting (I of course select the start up disk in system preferences before shut down or restart). On both harddrives are 10.5.8 installed. So I don't know. I have done disk verify (and repair once on the external as needed) and I have done permission repair on both pretty often. Switching from the internal to the external firewire is no problem, but switching back sometimes is. What happens is when the external shuts down, after all apps are quit (by me of course), finder, dock and all desktop icons disappear, only the mouse pointer and desktop background pic stays, and nothing else happens. I never had this problem on Tiger. I suspect a conflict between the same OSs on both drives. If I can get the firewire to shut down correctly, I am considering to always hold down the option key at start up and there select which drive to boot from, instead of doing it before in system preferences of either running OS. Any thoughts are appreciated!!

    Yeah. Thanks. But I also have the same problem with my internal HD. Freezes before log out sometimes. If I reach log out, then no problem to shut down or restart. Very strange....and in fact painful turning the computer off sometimes having to press the power button 10 secs.

  • The "Restore Down" button doesn't restore down.

    In the upper right-hand corner of the screen (where the red X is), the middle button (Restore Down) doesn't restore down. How do I fix this??

    I saw this problem on a store's demo machine (model 300-1125). Very annoying. My impression is that the touchscreen is faulty and doesn't register clicks at the top right corner. Minimize any windows and just try clicking on the desktop in that area. If there is a click registered you should see a "growing circles" animation at the finger position. If you only see the "touch dot" then the touchscreen only regarded this as a movement and not as a click.
    Also verify that the maximize/minimize/close buttons are not the problem by resizing a window so it doesn't fill the screen, and then click them (so the top right corner of the screen is avoided).
    If this checks out this might be a problem affecting the whole series, which is pretty serious if it is a hardware problem. (I have tried the same thing on an MSI all-in-one with a similar touchscreen technology and Windows 7, and it doesn't have the problem.)

  • X220 Touchpad Doesn't Scroll Down, but scrolls up

    I just got my X220, installed all relevant Windows and Lenovo updates, restarted several times, but the touchpad doesn't scroll down.  It only scrolls up. 
    Also the touchpad tap action (which is same as left click) is not as responsive as I like.  Is there a setting for that?
    Solved!
    Go to Solution.

    It is a bit more responsive now and is scrolling down more.  Not sure what has changed.  It is still not as responsive as it should be.  I'm clearly sliding my finger down on the scroll side of the touchpad and it doesn't scroll.  Yet sometimes it scrolls.  Something is still wrong.

  • HT204003 Hi, My region doesn't supports Passbook features. so i want to delete the passbook icon or hide it. How can i do it ? Kindly advice !!!

    Hi, My region doesn't supports Passbook features. so i want to delete the passbook icon or hide it. How can i do it ? Kindly advice !!!

    You cannot delete it but you could take it to your last home page.  Tap on the icon until it shakes then move your finger on the icon to the right edge of your screen until the icon is half hidden and the iPhone will take the icon to the following page.  If you have more than two pages, just keep repeating this move until the passbook icon is on the last page.  While there, the icon will not take up space on the home screens you most frequestly use.

  • Hard drive remains spinning at 5,000 rpm, and doesn't spin down by itself!

    OK, I thought this was a fan problem until I installed the iStat Pro widget, and discovered that my hard drive was spinning at 5,000 rpm even when no operations were being performed. It doesn't slow down on its own, and I have to put the drive to sleep to get the rpm to return to around 1200 rpm, which seems more normal to me. However, over time (perhaps 20-30 minutes) the rpm gets back up to 5K again. But the CPU fan stays constant at around 1200 rpm. This doesn't seem normal to me. Oh, and Apple just replaced the hard drive on this five-week old iMac. Before I got the new drive, it was not noisy, and did not rev as high, and stay high. Any feedback about this situation would be helpful. I think I'm probably going to end up taking it back to the Genius Bar (sigh)...

    Hello grejambri
    That does sound like a problem with the Hard Drive or it's temperature sensor.
    One thing you might want to do is run the Apple Hardware Test to see if it reports a problem with the HD's temp. sensor. > http://support.apple.com/kb/HT1509
    Then be sure to record and report any test results to the folks that replaced your Hard Drive.
    Dennis

  • I pod doesn't shut down

    No matter how long I keep the play/pause button pushed, the ipod doesn't shut down anymore. And because of this, my battery is empty every morning. What to do?

    This should be fixed by restoring your iPod (Restore button in iTunes).
    This will not delete its contents.
    If the restoration does not fix the problem, your iPod hard drive might be corrupted and you should give a try to an iPod repair software like CopyTrans Doctor http://www.copytrans.net/doctor.php for example.

  • The system doesn't shut down

    My system doesn't shut down anymore. Even after setting the command: killall -u <user>.
    thanks for an advertissement.
    regards,
    raphael

    Hi Linc,
    2nd Part of report.
    here’s the .shutdownStall report:
    Date/Time:       2014-08-28 09:36:15 +0200
    OS Version:      10.9.4 (Build 13E28)
    Architecture:    x86_64
    Report Version:  18
    Command:         No Target
    Path:            No Target
    Version:         ??? (???)
    Parent:          UNKNOWN PROCESS
    PID:             0
    Event:           shutdown stall
    Duration:        12.03s (sampling started after 2 seconds)
    Steps:           101 (100ms sampling interval)
    Hardware model:  iMac12,2
    Active cpus:     4
    Fan speed:       1148 rpm
    Free pages:      3233601 pages (+163210)
    Pageins:         2 pages
    Pageouts:        0 pages
    Swapins:         0 pages
    Swapouts:        0 pages
    Process:         avguard-ondemand-mgmt
    Path:            /Applications/Avira.app/Contents/guard/avguard-ondemand-mgmt
    Architecture:    x86_64
    Parent:          avguard.bin
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       1042 pages (+17)
    CPU Time:        0.002s
    Importance:      Donating
    IO Policy:       Standard
      Thread 0x15321    DispatchQueue 1          priority 27         cpu time   0.002s
      15 start + 1 (libdyld.dylib)
        10 ??? (avguard-ondemand-mgmt + 16608)
          10 sleep + 42 (libsystem_c.dylib)
            10 __semwait_signal + 10 (libsystem_kernel.dylib)
             *10 semaphore_wait_continue + 0 (mach_kernel)
        5  ??? (avguard-ondemand-mgmt + 16274)
          5  ??? (avguard-ondemand-mgmt + 17750)
            5  poll + 10 (libsystem_kernel.dylib)
             *5  hndl_unix_scall64 + 22 (mach_kernel)
               *5  unix_syscall64 + 499 (mach_kernel)
                 *5  poll_nocancel + 802 (mach_kernel)
                   *5  kqueue_scan + 367 (mach_kernel)
                     *5  thread_block_reason + 204 (mach_kernel)
                       *5  ??? (mach_kernel + 223579)
                         *5  machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x101272000 -        0x1013c2ff7  avguard-ondemand-mgmt (0) <242ACF5D-0474-3612-A916-A677875B6D3F> /Applications/Avira.app/Contents/guard/avguard-ondemand-mgmt
          0x7fff8d611000 -     0x7fff8d69aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avguard.bin
    Path:            /Applications/Avira.app/Contents/guard/avguard.bin
    Architecture:    x86_64
    Parent:          launchd
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       439 pages
    CPU Time:        0.002s
    Importance:      Donating
    IO Policy:       Standard
      Thread 0x152f1    DispatchQueue 1          priority 31         cpu time   0.002s
      15 start + 1 (libdyld.dylib)
        10 __wait4 + 10 (libsystem_kernel.dylib)
         *10 ??? (mach_kernel + 4079664)
        5  ??? (avguard.bin + 11584)
          5  ??? (avguard.bin + 44647)
            5  ??? (avguard.bin + 35160)
              5  poll + 10 (libsystem_kernel.dylib)
               *5  hndl_unix_scall64 + 22 (mach_kernel)
                 *5  unix_syscall64 + 499 (mach_kernel)
                   *5  poll_nocancel + 802 (mach_kernel)
                     *5  kqueue_scan + 367 (mach_kernel)
                       *5  thread_block_reason + 204 (mach_kernel)
                         *5  ??? (mach_kernel + 223579)
                           *5  machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x106497000 -        0x106799ff7  avguard.bin (0) <01F00114-EE38-3CF4-970C-6C51913B38D0> /Applications/Avira.app/Contents/guard/avguard.bin
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avguard.bin
    Path:            /Applications/Avira.app/Contents/guard/avguard.bin
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       7965 pages (+43)
    CPU Time:        0.002s
    Importance:      Donating
      Thread 0x17b87    DispatchQueue 1          priority 31         cpu time   0.002s
      29 start + 1 (libdyld.dylib)
        25 ??? (avguard.bin + 14865)
          25 sleep + 42 (libsystem_c.dylib)
            25 __semwait_signal + 10 (libsystem_kernel.dylib)
             *25 semaphore_wait_continue + 0 (mach_kernel)
        1  ??? (avguard.bin + 11584)
          1  ??? (avguard.bin + 44647)
            1  ??? (avguard.bin + 35160)
              1  poll + 10 (libsystem_kernel.dylib)
               *1  hndl_unix_scall64 + 22 (mach_kernel)
                 *1  unix_syscall64 + 499 (mach_kernel)
                   *1  poll_nocancel + 802 (mach_kernel)
                     *1  kqueue_scan + 367 (mach_kernel)
                       *1  thread_block_reason + 204 (mach_kernel)
                         *1  ??? (mach_kernel + 223579)
                           *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11723)
          1  ??? (avguard.bin + 35160)
            1  poll + 10 (libsystem_kernel.dylib)
             *1  hndl_unix_scall64 + 22 (mach_kernel)
               *1  unix_syscall64 + 499 (mach_kernel)
                 *1  poll_nocancel + 802 (mach_kernel)
                   *1  kqueue_scan + 367 (mach_kernel)
                     *1  thread_block_reason + 204 (mach_kernel)
                       *1  ??? (mach_kernel + 223579)
                         *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11728)
          1  ??? (avguard.bin + 44647)
            1  ??? (avguard.bin + 35160)
              1  poll + 10 (libsystem_kernel.dylib)
               *1  hndl_unix_scall64 + 22 (mach_kernel)
                 *1  unix_syscall64 + 499 (mach_kernel)
                   *1  poll_nocancel + 802 (mach_kernel)
                     *1  kqueue_scan + 367 (mach_kernel)
                       *1  thread_block_reason + 204 (mach_kernel)
                         *1  ??? (mach_kernel + 223579)
                           *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11867)
          1  ??? (avguard.bin + 35160)
            1  poll + 10 (libsystem_kernel.dylib)
             *1  hndl_unix_scall64 + 22 (mach_kernel)
               *1  unix_syscall64 + 499 (mach_kernel)
                 *1  poll_nocancel + 802 (mach_kernel)
                   *1  kqueue_scan + 367 (mach_kernel)
                     *1  thread_block_reason + 204 (mach_kernel)
                       *1  ??? (mach_kernel + 223579)
                         *1  machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x107c71000 -        0x107f73ff7  avguard.bin (0) <01F00114-EE38-3CF4-970C-6C51913B38D0> /Applications/Avira.app/Contents/guard/avguard.bin
          0x7fff8d611000 -     0x7fff8d69aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avguard.bin
    Path:            /Applications/Avira.app/Contents/guard/avguard.bin
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       7914 pages (+8)
    CPU Time:        0.001s
    Importance:      Donating
      Thread 0x17b8d    DispatchQueue 1          priority 31         cpu time   0.001s
      3 start + 1 (libdyld.dylib)
        1 ??? (avguard.bin + 11723)
          1 ??? (avguard.bin + 35160)
            1 poll + 10 (libsystem_kernel.dylib)
             *1 hndl_unix_scall64 + 22 (mach_kernel)
               *1 unix_syscall64 + 499 (mach_kernel)
                 *1 poll_nocancel + 802 (mach_kernel)
                   *1 kqueue_scan + 367 (mach_kernel)
                     *1 thread_block_reason + 204 (mach_kernel)
                       *1 ??? (mach_kernel + 223579)
                         *1 machine_switch_context + 354 (mach_kernel)
        1 ??? (avguard.bin + 11728)
          1 ??? (avguard.bin + 44647)
            1 ??? (avguard.bin + 35160)
              1 poll + 10 (libsystem_kernel.dylib)
               *1 hndl_unix_scall64 + 22 (mach_kernel)
                 *1 unix_syscall64 + 499 (mach_kernel)
                   *1 poll_nocancel + 802 (mach_kernel)
                     *1 kqueue_scan + 367 (mach_kernel)
                       *1 thread_block_reason + 204 (mach_kernel)
                         *1 ??? (mach_kernel + 223579)
                           *1 machine_switch_context + 354 (mach_kernel)
        1 ??? (avguard.bin + 11867)
          1 ??? (avguard.bin + 35160)
            1 poll + 10 (libsystem_kernel.dylib)
             *1 hndl_unix_scall64 + 22 (mach_kernel)
               *1 unix_syscall64 + 499 (mach_kernel)
                 *1 poll_nocancel + 802 (mach_kernel)
                   *1 kqueue_scan + 367 (mach_kernel)
                     *1 thread_block_reason + 204 (mach_kernel)
                       *1 ??? (mach_kernel + 223579)
                         *1 machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x105f08000 -        0x10620aff7  avguard.bin (0) <01F00114-EE38-3CF4-970C-6C51913B38D0> /Applications/Avira.app/Contents/guard/avguard.bin
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avguard.bin
    Path:            /Applications/Avira.app/Contents/guard/avguard.bin
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       1663 pages (+6251)
    CPU Time:        0.123s
    Importance:      Donating
      Thread 0x17baf    DispatchQueue 1          priority 31         cpu time   0.123s
      38 start + 1 (libdyld.dylib)
        30 ??? (avguard.bin + 14865)
          30 sleep + 42 (libsystem_c.dylib)
            30 __semwait_signal + 10 (libsystem_kernel.dylib)
             *30 semaphore_wait_continue + 0 (mach_kernel)
        2  ??? (avguard.bin + 14732)
          2  usleep + 54 (libsystem_c.dylib)
            2  __semwait_signal + 10 (libsystem_kernel.dylib)
             *2  semaphore_wait_continue + 0 (mach_kernel)
        1  ??? (avguard.bin + 10114)
          1  ??? (avguard.bin + 567166)
            1  AVSIGN_IsNotModifiedAviraFileA + 61 (avguard.bin)
              1  IsAVSignSigned + 1263 (avguard.bin)
                1  ComputeSignature + 342 (avguard.bin)
                  1  sha256 + 129 (avguard.bin)
                    1  sha256_update + 130 (avguard.bin)
                      1  sha256_transf + 471 (avguard.bin)
                        1 
        1  ??? (avguard.bin + 12689)
          1  ??? (avguard.bin + 25551)
            1  ??? (avguard.bin + 478221)
              1  ??? (avguard.bin + 478593)
                1  ??? (avguard.bin + 476471)
                  1  ??? (avguard.bin + 479982)
                    1  ???
                      1  ???
                        1  ???
                          1  ???
                            1  ???
                              1  ???
                                1  ???
                                  1  ???
                                    1  ???
                                      1  ???
                                        1  ???
                                          1  ???
                                            1 
        1  ??? (avguard.bin + 11584)
          1  ??? (avguard.bin + 44647)
            1  ??? (avguard.bin + 35160)
              1  poll + 10 (libsystem_kernel.dylib)
               *1  hndl_unix_scall64 + 22 (mach_kernel)
                 *1  unix_syscall64 + 499 (mach_kernel)
                   *1  poll_nocancel + 802 (mach_kernel)
                     *1  kqueue_scan + 367 (mach_kernel)
                       *1  thread_block_reason + 204 (mach_kernel)
                         *1  ??? (mach_kernel + 223579)
                           *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11723)
          1  ??? (avguard.bin + 35160)
            1  poll + 10 (libsystem_kernel.dylib)
             *1  hndl_unix_scall64 + 22 (mach_kernel)
               *1  unix_syscall64 + 499 (mach_kernel)
                 *1  poll_nocancel + 802 (mach_kernel)
                   *1  kqueue_scan + 367 (mach_kernel)
                     *1  thread_block_reason + 204 (mach_kernel)
                       *1  ??? (mach_kernel + 223579)
                         *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11728)
          1  ??? (avguard.bin + 44647)
            1  ??? (avguard.bin + 35160)
              1  poll + 10 (libsystem_kernel.dylib)
               *1  hndl_unix_scall64 + 22 (mach_kernel)
                 *1  unix_syscall64 + 499 (mach_kernel)
                   *1  poll_nocancel + 802 (mach_kernel)
                     *1  kqueue_scan + 367 (mach_kernel)
                       *1  thread_block_reason + 204 (mach_kernel)
                         *1  ??? (mach_kernel + 223579)
                           *1  machine_switch_context + 354 (mach_kernel)
        1  ??? (avguard.bin + 11867)
          1  ??? (avguard.bin + 35160)
            1  poll + 10 (libsystem_kernel.dylib)
             *1  hndl_unix_scall64 + 22 (mach_kernel)
               *1  unix_syscall64 + 499 (mach_kernel)
                 *1  poll_nocancel + 802 (mach_kernel)
                   *1  kqueue_scan + 367 (mach_kernel)
                     *1  thread_block_reason + 204 (mach_kernel)
                       *1  ??? (mach_kernel + 223579)
                         *1  machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x10258b000 -        0x10288dff7  avguard.bin (0) <01F00114-EE38-3CF4-970C-6C51913B38D0> /Applications/Avira.app/Contents/guard/avguard.bin
          0x7fff8d611000 -     0x7fff8d69aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avguard.bin
    Path:            /Applications/Avira.app/Contents/guard/avguard.bin
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       1662 pages (+6235)
    CPU Time:        0.140s
    Importance:      Donating
      Thread 0x17bb6    DispatchQueue 1          priority 31         cpu time   0.140s
      6 start + 1 (libdyld.dylib)
        1 ??? (avguard.bin + 10114)
          1 ??? (avguard.bin + 567166)
            1 AVSIGN_IsNotModifiedAviraFileA + 61 (avguard.bin)
              1 IsAVSignSigned + 1263 (avguard.bin)
                1 ComputeSignature + 342 (avguard.bin)
                  1 sha256 + 129 (avguard.bin)
                    1 sha256_update + 130 (avguard.bin)
                      1 sha256_transf + 454 (avguard.bin)
                        1
        1 ??? (avguard.bin + 12689)
          1 ??? (avguard.bin + 25551)
            1 ??? (avguard.bin + 478221)
              1 ??? (avguard.bin + 478593)
                1 ??? (avguard.bin + 476471)
                  1 ??? (avguard.bin + 479982)
                    1 ???
                      1 ???
                        1 ???
                          1 ???
                            1 ???
                              1 ???
                                1 ???
                                  1 ???
                                    1 ???
                                      1 ???
                                        1 ???
                                          1 ???
                                            1
        1 ??? (avguard.bin + 11584)
          1 ??? (avguard.bin + 44647)
            1 ??? (avguard.bin + 35160)
              1 poll + 10 (libsystem_kernel.dylib)
               *1 hndl_unix_scall64 + 22 (mach_kernel)
                 *1 unix_syscall64 + 499 (mach_kernel)
                   *1 poll_nocancel + 802 (mach_kernel)
                     *1 kqueue_scan + 367 (mach_kernel)
                       *1 thread_block_reason + 204 (mach_kernel)
                         *1 ??? (mach_kernel + 223579)
                           *1 machine_switch_context + 354 (mach_kernel)
        1 ??? (avguard.bin + 11723)
          1 ??? (avguard.bin + 35160)
            1 poll + 10 (libsystem_kernel.dylib)
             *1 hndl_unix_scall64 + 22 (mach_kernel)
               *1 unix_syscall64 + 499 (mach_kernel)
                 *1 poll_nocancel + 802 (mach_kernel)
                   *1 kqueue_scan + 367 (mach_kernel)
                     *1 thread_block_reason + 204 (mach_kernel)
                       *1 ??? (mach_kernel + 223579)
                         *1 machine_switch_context + 354 (mach_kernel)
        1 ??? (avguard.bin + 11728)
          1 ??? (avguard.bin + 44647)
            1 ??? (avguard.bin + 35160)
              1 poll + 10 (libsystem_kernel.dylib)
               *1 hndl_unix_scall64 + 22 (mach_kernel)
                 *1 unix_syscall64 + 499 (mach_kernel)
                   *1 poll_nocancel + 802 (mach_kernel)
                     *1 kqueue_scan + 367 (mach_kernel)
                       *1 thread_block_reason + 204 (mach_kernel)
                         *1 ??? (mach_kernel + 223579)
                           *1 machine_switch_context + 354 (mach_kernel)
        1 ??? (avguard.bin + 11867)
          1 ??? (avguard.bin + 35160)
            1 poll + 10 (libsystem_kernel.dylib)
             *1 hndl_unix_scall64 + 22 (mach_kernel)
               *1 unix_syscall64 + 499 (mach_kernel)
                 *1 poll_nocancel + 802 (mach_kernel)
                   *1 kqueue_scan + 367 (mach_kernel)
                     *1 thread_block_reason + 204 (mach_kernel)
                       *1 ??? (mach_kernel + 223579)
                         *1 machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x10eb83000 -        0x10ee85ff7  avguard.bin (0) <01F00114-EE38-3CF4-970C-6C51913B38D0> /Applications/Avira.app/Contents/guard/avguard.bin
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avlogwriter
    Path:            /Applications/Avira.app/Contents/MacOS/avlogwriter
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             -2
    Task size:       819 pages (-3)
    CPU Time:        0.001s
    Importance:      Donating
    IO Policy:       Standard
      Thread 0x6c5      DispatchQueue 1          priority 31       
      101 start + 1 (libdyld.dylib)
        101 main + 3271 (avlogwriter)
          101 __select + 10 (libsystem_kernel.dylib)
           *101 ??? (mach_kernel + 4079664)
      Thread 0x6c7      priority 31       
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 thread_proxy + 130 (avlogwriter)
              101 SignalThread::operator()() + 41 (avlogwriter)
                101 __sigwait + 10 (libsystem_kernel.dylib)
                 *101 hndl_unix_scall64 + 22 (mach_kernel)
                   *101 unix_syscall64 + 499 (mach_kernel)
                     *101 __sigwait_nocancel + 480 (mach_kernel)
                       *101 msleep + 114 (mach_kernel)
                         *101 ??? (mach_kernel + 4078613)
                           *101 lck_mtx_sleep + 78 (mach_kernel)
                             *101 thread_block_reason + 204 (mach_kernel)
                               *101 ??? (mach_kernel + 223579)
                                 *101 machine_switch_context + 354 (mach_kernel)
      Thread 0x6c8      priority 31         cpu time   0.001s
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 thread_proxy + 130 (avlogwriter)
              101 boost::detail::thread_data::run() + 16 (avlogwriter)
                101 Consumer::operator()() + 177 (avlogwriter)
                  101 boost::this_thread::sleep(boost::posix_time::ptime const&) + 671 (avlogwriter)
                    101 boost::this_thread::hiden::sleep_until(timespec const&) + 94 (avlogwriter)
                      101 boost::condition_variable::do_wait_until(boost::unique_lock<boost::mutex>&, timespec const&) + 76 (avlogwriter)
                        101 __psynch_cvwait + 10 (libsystem_kernel.dylib)
                         *101 psynch_cvcontinue + 0 (pthread)
      Thread 0x152f0    priority 31       
      15 thread_start + 13 (libsystem_pthread.dylib)
        15 pthreadstart + 137 (libsystem_pthread.dylib)
          15 pthreadbody + 138 (libsystem_pthread.dylib)
            15 thread_proxy + 130 (avlogwriter)
              15 __recvfrom + 10 (libsystem_kernel.dylib)
               *15 hndl_unix_scall64 + 22 (mach_kernel)
                 *15 unix_syscall64 + 499 (mach_kernel)
                   *15 recvfrom_nocancel + 224 (mach_kernel)
                     *15 ??? (mach_kernel + 4336078)
                       *15 soreceive + 2306 (mach_kernel)
                         *15 sbwait + 297 (mach_kernel)
                           *15 msleep + 114 (mach_kernel)
                             *15 ??? (mach_kernel + 4078613)
                               *15 lck_mtx_sleep + 78 (mach_kernel)
                                 *15 thread_block_reason + 204 (mach_kernel)
                                   *15 ??? (mach_kernel + 223579)
                                     *15 machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x100e06000 -        0x100f75fef  avlogwriter (0) <B25257D4-F9CE-3BF5-8B36-88FA05194557> /Applications/Avira.app/Contents/MacOS/avlogwriter
          0x7fff89cde000 -     0x7fff89ce5ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff7f80b4c000 - 0xffffff7f80b53fff  com.apple.kec.pthread 1.0 (1) <882075E6-12C4-3225-8750-928715183739> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avqmd
    Path:            /Applications/Avira.app/Contents/MacOS/avqmd
    Architecture:    x86_64
    Parent:          avwatchdox.bin
    Responsible:     avwatchdox.bin
    UID:             333
    Task size:       3406 pages
    Importance:      Donating
    IO Policy:       Standard
      Thread 0x6e6      DispatchQueue 1          priority 31       
      101 start + 1 (libdyld.dylib)
        101 main + 3560 (avqmd)
          101 __semwait_signal + 10 (libsystem_kernel.dylib)
           *101 semaphore_wait_continue + 0 (mach_kernel)
      Thread 0x6ef      priority 31       
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 ??? (avqmd + 6870)
              101 __sigwait + 10 (libsystem_kernel.dylib)
               *101 hndl_unix_scall64 + 22 (mach_kernel)
                 *101 unix_syscall64 + 499 (mach_kernel)
                   *101 __sigwait_nocancel + 480 (mach_kernel)
                     *101 msleep + 114 (mach_kernel)
                       *101 ??? (mach_kernel + 4078613)
                         *101 lck_mtx_sleep + 78 (mach_kernel)
                           *101 thread_block_reason + 204 (mach_kernel)
                             *101 ??? (mach_kernel + 223579)
                               *101 machine_switch_context + 354 (mach_kernel)
      Thread 0x6f0      priority 31       
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 kevent + 10 (libsystem_kernel.dylib)
             *101 ??? (mach_kernel + 3959520)
      Thread 0x6f1      priority 31       
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 ??? (avqmd + 8996)
              101 __psynch_cvwait + 10 (libsystem_kernel.dylib)
               *101 psynch_cvcontinue + 0 (pthread)
      Thread 0x6f2      priority 31       
      101 thread_start + 13 (libsystem_pthread.dylib)
        101 pthreadstart + 137 (libsystem_pthread.dylib)
          101 pthreadbody + 138 (libsystem_pthread.dylib)
            101 poll + 10 (libsystem_kernel.dylib)
             *101 hndl_unix_scall64 + 22 (mach_kernel)
               *101 unix_syscall64 + 499 (mach_kernel)
                 *101 poll_nocancel + 802 (mach_kernel)
                   *101 kqueue_scan + 367 (mach_kernel)
                     *101 thread_block_reason + 204 (mach_kernel)
                       *101 ??? (mach_kernel + 223579)
                         *101 machine_switch_context + 354 (mach_kernel)
      Binary Images:
             0x10fed1000 -        0x11016cfef  avqmd (0) <867ED790-C8F0-3839-BE75-E10E0884414F> /Applications/Avira.app/Contents/MacOS/avqmd
          0x7fff89cde000 -     0x7fff89ce5ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
          0x7fff91b8f000 -     0x7fff91babff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
          0x7fff92b48000 -     0x7fff92b4bff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    *0xffffff7f80b4c000 - 0xffffff7f80b53fff  com.apple.kec.pthread 1.0 (1) <882075E6-12C4-3225-8750-928715183739> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff80007a864a  mach_kernel (2422.110.17) <BBFADD17-672B-35A2-9B7F-E4B12213E4B8> /mach_kernel
    Process:         avqmd
    Path:            /Applications/Avira.app/Contents/MacOS/avqmd
    Architecture:    x86_64
    Parent:          avqmd
    Responsible:     avwatchdox.bin
    UID:             0
    Task size:       76 pages
    Importance:      Donating
    IO Policy:       Standard
      Thread 0x6ee      DispatchQueue 1          priority 31       
      101 start + 1 (libdyld.dylib)
        101 main + 1811 (avqmd)
          101 poll + 10 (libsystem_kernel.dylib)
           *101 hndl_unix_scall64 + 22 (mach_kernel)
             *101 unix_syscall64 + 499 (mach_kernel)

Maybe you are looking for