Re: PJSUA: how to deal with verbosity?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi, 
ran across the same problem.
My solution (including my comment ;-))
Of course, you've to add the following line before calling pjsua_start !

/* Some kind of a hack. For some reason the pjlib initialization
   * logging doesn't use the app_config.log_cfg callback facility ...
   * even when it has been defined ;-) */
  pj_log_set_level(0);

Best regards
Franz
________________________________________
Von: pjsip <pjsip-bounces@xxxxxxxxxxxxxxx> im Auftrag von Ogogon !!! <ogogon@xxxxxxxxxx>
Gesendet: Mittwoch, 19. Februar 2020 12:37
An: pjsip@xxxxxxxxxxxxxxx
Betreff:  PJSUA: how to deal with verbosity?

Please tell me, why all the applications built on PJSIP constantly have
uncontrolled and very verbose debugging information?

I am using the FreeBSD platform:
> ogogon@ot# uname -a
> FreeBSD ot.ogogon.org 11.3-RELEASE-p6 FreeBSD 11.3-RELEASE-p6 #0: Tue
> Jan 28 09:55:39 UTC 2020
> root@xxxxxxxxxxxxxxxxxxxxxxxxxxxxx:/usr/obj/usr/src/sys/GENERIC amd64
> ogogon@ot#
Here is the version of PJSIP that I have installed:
> ogogon@ot# pkg info pjsip-extsrtp
> pjsip-extsrtp-2.9_4
> Name           : pjsip-extsrtp
> Version        : 2.9_4
> Installed on   : Wed Feb 19 05:03:45 2020 MSK
> Origin         : net/pjsip-extsrtp
> Architecture   : FreeBSD:11:amd64
> Prefix         : /usr/local
> Categories     : net
> Licenses       : GPLv2+
> Maintainer     : madpilot@xxxxxxxxxxx
> WWW            : https://www.pjsip.org/
> Comment        : Multimedia communication library written in C language
> Options        :
>     AMR            : off
>     DEBUG          : off
>     FFMPEG         : off
>     G711           : on
>     G722           : on
>     G7221          : on
>     GSM            : on
>     ILBC           : on
>     IPV6           : on
>     L16            : on
>     OPENH264       : off
>     PJSUA          : on
>     RESAMPLE       : on
>     RESAMPLEDLL    : off
>     SAMPLERATE     : on
>     SDL            : off
>     SHARED         : on
>     SOUND          : on
>     SPEEX          : on
>     SPEEXAEC       : on
>     V4L            : off
>     VIDEO          : off
>     WEBRTC         : on
> Shared Libs required:
>     libgsm.so.1
>     libspeexdsp.so.1
>     libspeex.so.1
>     libopus.so.0
>     libsrtp2.so.1
>     libsamplerate.so.0
>     libportaudio.so.2
> Shared Libs provided:
>     libpjmedia-codec.so.2
>     libilbccodec.so.2
>     libpjlib-util.so.2
>     libpjmedia-audiodev.so.2
>     libpjnath.so.2
>     libpjmedia.so.2
>     libpjsip-simple.so.2
>     libpjmedia-videodev.so.2
>     libpjsua.so.2
>     libpj.so.2
>     libpjsip-ua.so.2
>     libpjsip.so.2
>     libg7221codec.so.2
>     libwebrtc.so.2
>     libpjsua2.so.2
> Annotations    :
>     FreeBSD_version: 1103000
> Flat size      : 10.0MiB
> Description    :
> PJSIP is a free and open source multimedia communication library
> written in C language implementing standard based protocols such
> as SIP, SDP, RTP, STUN, TURN, and ICE. It combines signaling protocol
> (SIP) with rich multimedia framework and NAT traversal functionality
> into high level API that is portable and suitable for almost any
> type of systems ranging from desktops, embedded systems, to mobile
> handsets.
>
> WWW: https://www.pjsip.org/
>
> ogogon@ot#
The application that I am writing constantly receives a lot of debugging
information on the screen.
I decided to launch a console application, which is part of the library.
It must be written absolutely correctly.
I even explicitly set it arguments to disable logging and debugging.
Nevertheless, it behaves in the same way as mine - it lists all the
created mutexes and other details that are not very necessary for the user.

What am I doing wrong?
My PJSIP library is not compiled correctly?

Ogogon.

> ogogon@ot:/home/ogogon# pjsua --app-log-level=0 --log-level=0
> 14:02:37.535                critsec !Mutex created
> 14:02:37.535                critsec !Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.535                critsec  Mutex acquired by thread
> thr0x804c16000
> 14:02:37.535                critsec  Mutex released by thread
> thr0x804c16000
> 14:02:37.535                critsec  Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.535                critsec  Mutex acquired by thread
> thr0x804c16000
> 14:02:37.535                critsec  Mutex released by thread
> thr0x804c16000
> 14:02:37.535         os_core_unix.c  pjlib 2.9 for POSIX initialized
> 14:02:37.538            cachingpool  .pool created, size=512
> 14:02:37.538            cachingpool  .Mutex created
> 14:02:37.538            cachingpool  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.538            cachingpool  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.538                  pjsua  .pool created, size=1024
> 14:02:37.538            cachingpool  .Mutex released by thread
> thr0x804c16000
> 14:02:37.538                  pjsua  .Mutex created
> 14:02:37.538         sip_endpoint.c  .Creating endpoint instance...
> 14:02:37.538            cachingpool  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.538            cachingpool  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.538        pept0x804c21000  .pool created, size=4096
> 14:02:37.538            cachingpool  .Mutex released by thread
> thr0x804c16000
> 14:02:37.538                critsec  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.538                critsec  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.538                critsec  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.538                critsec  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.538                critsec  .Mutex released by thread
> thr0x804c16000
> 14:02:37.538                critsec  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.539                critsec  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.539                critsec  .Mutex released by thread
> thr0x804c16000
> 14:02:37.539                critsec  .Mutex released by thread
> thr0x804c16000
> 14:02:37.539         ept0x804c21320  .Mutex created
> 14:02:37.539        pept0x804c21000  .2097136 bytes requested,
> resizing pool by 2100000 bytes (used=920, cap=4096)
> 14:02:37.539        pept0x804c21000  .create_block(sz=2100000),
> cur.cap=4096, cur.used=920
> 14:02:37.539        pept0x804c21000  . block created,
> buffer=0x804e00028-0x805000b20
> 14:02:37.539        pept0x804c21000  .1048568 bytes requested,
> resizing pool by 1052000 bytes (used=2098096, cap=2104096)
> 14:02:37.539        pept0x804c21000  .create_block(sz=1052000),
> cur.cap=2104096, cur.used=2098096
> 14:02:37.539        pept0x804c21000  . block created,
> buffer=0x80520d0e8-0x80530de20
> 14:02:37.541        edpt0x80530d108  .Mutex created
> 14:02:37.541        pept0x804c21000  .25720 bytes requested, resizing
> pool by 28000 bytes (used=3146784, cap=3156096)
> 14:02:37.541        pept0x804c21000  .create_block(sz=28000),
> cur.cap=3156096, cur.used=3146784
> 14:02:37.541        pept0x804c21000  . block created,
> buffer=0x804c529e8-0x804c59720
> 14:02:37.541         mtx0x804c58e60  .Mutex created
> 14:02:37.541         mtx0x804c59000  .Mutex created
> 14:02:37.541         mtx0x804c591a0  .Mutex created
> 14:02:37.541         mtx0x804c59340  .Mutex created
> 14:02:37.541         mtx0x804c594e0  .Mutex created
> 14:02:37.541         mtx0x804c59680  .Mutex created
> 14:02:37.541         mtx0x804c596d0  .Mutex created
> 14:02:37.541         mtx0x80530d3d0  .Mutex created
> 14:02:37.541         mtx0x80530d570  .Mutex created
> 14:02:37.541         mtx0x80530d710  .Mutex created
> 14:02:37.541         mtx0x80530d8b0  .Mutex created
> 14:02:37.541         mtx0x80530da50  .Mutex created
> 14:02:37.541         mtx0x80530dbf0  .Mutex created
> 14:02:37.541         mtx0x80530dd90  .Mutex created
> 14:02:37.542         mtx0x80530dde0  .Mutex created
> 14:02:37.542         mtx0x8050002e0  .Mutex created
> 14:02:37.542         mtx0x805000480  .Mutex created
> 14:02:37.542         mtx0x805000620  .Mutex created
> 14:02:37.542         mtx0x8050007c0  .Mutex created
> 14:02:37.542         mtx0x805000960  .Mutex created
> 14:02:37.542         mtx0x804c21398  .Mutex created
> 14:02:37.542         mtx0x804c21538  .Mutex created
> 14:02:37.542         mtx0x804c216d8  .Mutex created
> 14:02:37.542         mtx0x804c21878  .Mutex created
> 14:02:37.542         mtx0x804c21a18  .Mutex created
> 14:02:37.542         mtx0x804c21bb8  .Mutex created
> 14:02:37.542         mtx0x804c21d58  .Mutex created
> 14:02:37.542         mtx0x804c21ef8  .Mutex created
> 14:02:37.542        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3183816, cap=3184096)
> 14:02:37.542        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3184096, cur.used=3183816
> 14:02:37.542        pept0x804c21000  . block created,
> buffer=0x804c22028-0x804c22fa0
> 14:02:37.542         mtx0x804c221a0  .Mutex created
> 14:02:37.542         mtx0x804c22340  .Mutex created
> 14:02:37.542         mtx0x804c224e0  .Mutex created
> 14:02:37.542         mtx0x804c22680  .Mutex created
> 14:02:37.542         mtx0x804c22820  .Mutex created
> 14:02:37.542         mtx0x804c229c0  .Mutex created
> 14:02:37.542         mtx0x804c22b60  .Mutex created
> 14:02:37.542         mtx0x804c22d00  .Mutex created
> 14:02:37.542         mtx0x804c22ea0  .Mutex created
> 14:02:37.542        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3187600, cap=3188096)
> 14:02:37.542        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3188096, cur.used=3187600
> 14:02:37.542        pept0x804c21000  . block created,
> buffer=0x804c23028-0x804c23fa0
> 14:02:37.542         mtx0x804c231a0  .Mutex created
> 14:02:37.542         mtx0x804c23340  .Mutex created
> 14:02:37.542         mtx0x804c234e0  .Mutex created
> 14:02:37.542         mtx0x804c23680  .Mutex created
> 14:02:37.542         mtx0x804c23820  .Mutex created
> 14:02:37.542         mtx0x804c239c0  .Mutex created
> 14:02:37.542         mtx0x804c23b60  .Mutex created
> 14:02:37.542         mtx0x804c23d00  .Mutex created
> 14:02:37.542         mtx0x804c23ea0  .Mutex created
> 14:02:37.542        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3191384, cap=3192096)
> 14:02:37.542        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3192096, cur.used=3191384
> 14:02:37.542        pept0x804c21000  . block created,
> buffer=0x804c24028-0x804c24fa0
> 14:02:37.542         mtx0x804c241a0  .Mutex created
> 14:02:37.542         mtx0x804c24340  .Mutex created
> 14:02:37.542         mtx0x804c244e0  .Mutex created
> 14:02:37.542         mtx0x804c24680  .Mutex created
> 14:02:37.542         mtx0x804c24820  .Mutex created
> 14:02:37.542         mtx0x804c249c0  .Mutex created
> 14:02:37.542         mtx0x804c24b60  .Mutex created
> 14:02:37.543         mtx0x804c24d00  .Mutex created
> 14:02:37.543         mtx0x804c24ea0  .Mutex created
> 14:02:37.543        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3195168, cap=3196096)
> 14:02:37.543        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3196096, cur.used=3195168
> 14:02:37.543        pept0x804c21000  . block created,
> buffer=0x804c25028-0x804c25fa0
> 14:02:37.543         mtx0x804c251a0  .Mutex created
> 14:02:37.543         mtx0x804c25340  .Mutex created
> 14:02:37.543         mtx0x804c254e0  .Mutex created
> 14:02:37.543         mtx0x804c25680  .Mutex created
> 14:02:37.543         mtx0x804c25820  .Mutex created
> 14:02:37.543         mtx0x804c259c0  .Mutex created
> 14:02:37.543         mtx0x804c25b60  .Mutex created
> 14:02:37.543         mtx0x804c25d00  .Mutex created
> 14:02:37.543         mtx0x804c25ea0  .Mutex created
> 14:02:37.543        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3198952, cap=3200096)
> 14:02:37.543        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3200096, cur.used=3198952
> 14:02:37.543        pept0x804c21000  . block created,
> buffer=0x804c26028-0x804c26fa0
> 14:02:37.543         mtx0x804c261a0  .Mutex created
> 14:02:37.543         mtx0x804c26340  .Mutex created
> 14:02:37.543         mtx0x804c264e0  .Mutex created
> 14:02:37.543         mtx0x804c26680  .Mutex created
> 14:02:37.543         mtx0x804c26820  .Mutex created
> 14:02:37.543         mtx0x804c269c0  .Mutex created
> 14:02:37.543         mtx0x804c26b60  .Mutex created
> 14:02:37.543         mtx0x804c26d00  .Mutex created
> 14:02:37.543         mtx0x804c26ea0  .Mutex created
> 14:02:37.543        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3202736, cap=3204096)
> 14:02:37.543        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3204096, cur.used=3202736
> 14:02:37.543        pept0x804c21000  . block created,
> buffer=0x804c27028-0x804c27fa0
> 14:02:37.543         mtx0x804c271a0  .Mutex created
> 14:02:37.543         mtx0x804c27340  .Mutex created
> 14:02:37.543         mtx0x804c274e0  .Mutex created
> 14:02:37.543         mtx0x804c27680  .Mutex created
> 14:02:37.543         mtx0x804c27820  .Mutex created
> 14:02:37.543         mtx0x804c279c0  .Mutex created
> 14:02:37.544         mtx0x804c27b60  .Mutex created
> 14:02:37.544         mtx0x804c27d00  .Mutex created
> 14:02:37.544         mtx0x804c27ea0  .Mutex created
> 14:02:37.544        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3206520, cap=3208096)
> 14:02:37.544        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3208096, cur.used=3206520
> 14:02:37.544        pept0x804c21000  . block created,
> buffer=0x804c28028-0x804c28fa0
> 14:02:37.544         mtx0x804c281a0  .Mutex created
> 14:02:37.544         mtx0x804c28340  .Mutex created
> 14:02:37.544         mtx0x804c284e0  .Mutex created
> 14:02:37.544         mtx0x804c28680  .Mutex created
> 14:02:37.544         mtx0x804c28820  .Mutex created
> 14:02:37.544         mtx0x804c289c0  .Mutex created
> 14:02:37.544         mtx0x804c28b60  .Mutex created
> 14:02:37.544         mtx0x804c28d00  .Mutex created
> 14:02:37.544         mtx0x804c28ea0  .Mutex created
> 14:02:37.544        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3210304, cap=3212096)
> 14:02:37.544        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3212096, cur.used=3210304
> 14:02:37.544        pept0x804c21000  . block created,
> buffer=0x804c29028-0x804c29fa0
> 14:02:37.544         mtx0x804c291a0  .Mutex created
> 14:02:37.544         mtx0x804c29340  .Mutex created
> 14:02:37.544         mtx0x804c294e0  .Mutex created
> 14:02:37.544         mtx0x804c29680  .Mutex created
> 14:02:37.544         mtx0x804c29820  .Mutex created
> 14:02:37.544         mtx0x804c299c0  .Mutex created
> 14:02:37.544         mtx0x804c29b60  .Mutex created
> 14:02:37.544         mtx0x804c29d00  .Mutex created
> 14:02:37.544         mtx0x804c29ea0  .Mutex created
> 14:02:37.544        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3214088, cap=3216096)
> 14:02:37.544        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3216096, cur.used=3214088
> 14:02:37.544        pept0x804c21000  . block created,
> buffer=0x804c83028-0x804c83fa0
> 14:02:37.544         mtx0x804c831a0  .Mutex created
> 14:02:37.544         mtx0x804c83340  .Mutex created
> 14:02:37.544         mtx0x804c834e0  .Mutex created
> 14:02:37.544         mtx0x804c83680  .Mutex created
> 14:02:37.544         mtx0x804c83820  .Mutex created
> 14:02:37.545         mtx0x804c839c0  .Mutex created
> 14:02:37.545         mtx0x804c83b60  .Mutex created
> 14:02:37.545         mtx0x804c83d00  .Mutex created
> 14:02:37.545         mtx0x804c83ea0  .Mutex created
> 14:02:37.545        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3217872, cap=3220096)
> 14:02:37.545        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3220096, cur.used=3217872
> 14:02:37.545        pept0x804c21000  . block created,
> buffer=0x804c84028-0x804c84fa0
> 14:02:37.545         mtx0x804c841a0  .Mutex created
> 14:02:37.545         mtx0x804c84340  .Mutex created
> 14:02:37.545         mtx0x804c844e0  .Mutex created
> 14:02:37.545         mtx0x804c84680  .Mutex created
> 14:02:37.545         mtx0x804c84820  .Mutex created
> 14:02:37.545         mtx0x804c849c0  .Mutex created
> 14:02:37.545         mtx0x804c84b60  .Mutex created
> 14:02:37.545         mtx0x804c84d00  .Mutex created
> 14:02:37.545         mtx0x804c84ea0  .Mutex created
> 14:02:37.545        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3221656, cap=3224096)
> 14:02:37.545        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3224096, cur.used=3221656
> 14:02:37.545        pept0x804c21000  . block created,
> buffer=0x804c85028-0x804c85fa0
> 14:02:37.545         mtx0x804c851a0  .Mutex created
> 14:02:37.545         mtx0x804c85340  .Mutex created
> 14:02:37.545         mtx0x804c854e0  .Mutex created
> 14:02:37.545         mtx0x804c85680  .Mutex created
> 14:02:37.545         mtx0x804c85820  .Mutex created
> 14:02:37.545         mtx0x804c859c0  .Mutex created
> 14:02:37.545         mtx0x804c85b60  .Mutex created
> 14:02:37.545         mtx0x804c85d00  .Mutex created
> 14:02:37.545         mtx0x804c85ea0  .Mutex created
> 14:02:37.545        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3225440, cap=3228096)
> 14:02:37.545        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3228096, cur.used=3225440
> 14:02:37.545        pept0x804c21000  . block created,
> buffer=0x804c86028-0x804c86fa0
> 14:02:37.545         mtx0x804c861a0  .Mutex created
> 14:02:37.545         mtx0x804c86340  .Mutex created
> 14:02:37.545         mtx0x804c864e0  .Mutex created
> 14:02:37.545         mtx0x804c86680  .Mutex created
> 14:02:37.545         mtx0x804c86820  .Mutex created
> 14:02:37.545         mtx0x804c869c0  .Mutex created
> 14:02:37.545         mtx0x804c86b60  .Mutex created
> 14:02:37.545         mtx0x804c86d00  .Mutex created
> 14:02:37.545         mtx0x804c86ea0  .Mutex created
> 14:02:37.545        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3229224, cap=3232096)
> 14:02:37.545        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3232096, cur.used=3229224
> 14:02:37.545        pept0x804c21000  . block created,
> buffer=0x804c5a028-0x804c5afa0
> 14:02:37.545         mtx0x804c5a1a0  .Mutex created
> 14:02:37.545         mtx0x804c5a340  .Mutex created
> 14:02:37.545         mtx0x804c5a4e0  .Mutex created
> 14:02:37.545         mtx0x804c5a680  .Mutex created
> 14:02:37.546         mtx0x804c5a820  .Mutex created
> 14:02:37.546         mtx0x804c5a9c0  .Mutex created
> 14:02:37.546         mtx0x804c5ab60  .Mutex created
> 14:02:37.546         mtx0x804c5ad00  .Mutex created
> 14:02:37.546         mtx0x804c5aea0  .Mutex created
> 14:02:37.546        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3233008, cap=3236096)
> 14:02:37.546        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3236096, cur.used=3233008
> 14:02:37.546        pept0x804c21000  . block created,
> buffer=0x804c5b028-0x804c5bfa0
> 14:02:37.546         mtx0x804c5b1a0  .Mutex created
> 14:02:37.546         mtx0x804c5b340  .Mutex created
> 14:02:37.546         mtx0x804c5b4e0  .Mutex created
> 14:02:37.546         mtx0x804c5b680  .Mutex created
> 14:02:37.546         mtx0x804c5b820  .Mutex created
> 14:02:37.546         mtx0x804c5b9c0  .Mutex created
> 14:02:37.546         mtx0x804c5bb60  .Mutex created
> 14:02:37.546         mtx0x804c5bd00  .Mutex created
> 14:02:37.546         mtx0x804c5bea0  .Mutex created
> 14:02:37.546        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3236792, cap=3240096)
> 14:02:37.546        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3240096, cur.used=3236792
> 14:02:37.546        pept0x804c21000  . block created,
> buffer=0x804c5c028-0x804c5cfa0
> 14:02:37.546         mtx0x804c5c1a0  .Mutex created
> 14:02:37.546         mtx0x804c5c340  .Mutex created
> 14:02:37.546         mtx0x804c5c4e0  .Mutex created
> 14:02:37.546         mtx0x804c5c680  .Mutex created
> 14:02:37.546         mtx0x804c5c820  .Mutex created
> 14:02:37.546         mtx0x804c5c9c0  .Mutex created
> 14:02:37.546         mtx0x804c5cb60  .Mutex created
> 14:02:37.546         mtx0x804c5cd00  .Mutex created
> 14:02:37.546         mtx0x804c5cea0  .Mutex created
> 14:02:37.546        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3240576, cap=3244096)
> 14:02:37.547        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3244096, cur.used=3240576
> 14:02:37.547        pept0x804c21000  . block created,
> buffer=0x804c5d028-0x804c5dfa0
> 14:02:37.547         mtx0x804c5d1a0  .Mutex created
> 14:02:37.547         mtx0x804c5d340  .Mutex created
> 14:02:37.547         mtx0x804c5d4e0  .Mutex created
> 14:02:37.547         mtx0x804c5d680  .Mutex created
> 14:02:37.547         mtx0x804c5d820  .Mutex created
> 14:02:37.547         mtx0x804c5d9c0  .Mutex created
> 14:02:37.547         mtx0x804c5db60  .Mutex created
> 14:02:37.547         mtx0x804c5dd00  .Mutex created
> 14:02:37.547         mtx0x804c5dea0  .Mutex created
> 14:02:37.547        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3244360, cap=3248096)
> 14:02:37.547        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3248096, cur.used=3244360
> 14:02:37.547        pept0x804c21000  . block created,
> buffer=0x804c5e028-0x804c5efa0
> 14:02:37.547         mtx0x804c5e1a0  .Mutex created
> 14:02:37.547         mtx0x804c5e340  .Mutex created
> 14:02:37.547         mtx0x804c5e4e0  .Mutex created
> 14:02:37.547         mtx0x804c5e680  .Mutex created
> 14:02:37.547         mtx0x804c5e820  .Mutex created
> 14:02:37.547         mtx0x804c5e9c0  .Mutex created
> 14:02:37.547         mtx0x804c5eb60  .Mutex created
> 14:02:37.547         mtx0x804c5ed00  .Mutex created
> 14:02:37.547         mtx0x804c5eea0  .Mutex created
> 14:02:37.547        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3248144, cap=3252096)
> 14:02:37.547        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3252096, cur.used=3248144
> 14:02:37.547        pept0x804c21000  . block created,
> buffer=0x804c5f028-0x804c5ffa0
> 14:02:37.547         mtx0x804c5f1a0  .Mutex created
> 14:02:37.547         mtx0x804c5f340  .Mutex created
> 14:02:37.547         mtx0x804c5f4e0  .Mutex created
> 14:02:37.547         mtx0x804c5f680  .Mutex created
> 14:02:37.547         mtx0x804c5f820  .Mutex created
> 14:02:37.547         mtx0x804c5f9c0  .Mutex created
> 14:02:37.547         mtx0x804c5fb60  .Mutex created
> 14:02:37.547         mtx0x804c5fd00  .Mutex created
> 14:02:37.547         mtx0x804c5fea0  .Mutex created
> 14:02:37.547        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3251928, cap=3256096)
> 14:02:37.547        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3256096, cur.used=3251928
> 14:02:37.547        pept0x804c21000  . block created,
> buffer=0x804c60028-0x804c60fa0
> 14:02:37.547         mtx0x804c601a0  .Mutex created
> 14:02:37.547         mtx0x804c60340  .Mutex created
> 14:02:37.547         mtx0x804c604e0  .Mutex created
> 14:02:37.547         mtx0x804c60680  .Mutex created
> 14:02:37.547         mtx0x804c60820  .Mutex created
> 14:02:37.547         mtx0x804c609c0  .Mutex created
> 14:02:37.547         mtx0x804c60b60  .Mutex created
> 14:02:37.548         mtx0x804c60d00  .Mutex created
> 14:02:37.548         mtx0x804c60ea0  .Mutex created
> 14:02:37.548        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3255712, cap=3260096)
> 14:02:37.548        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3260096, cur.used=3255712
> 14:02:37.548        pept0x804c21000  . block created,
> buffer=0x804c61028-0x804c61fa0
> 14:02:37.548         mtx0x804c611a0  .Mutex created
> 14:02:37.548         mtx0x804c61340  .Mutex created
> 14:02:37.548         mtx0x804c614e0  .Mutex created
> 14:02:37.548         mtx0x804c61680  .Mutex created
> 14:02:37.548         mtx0x804c61820  .Mutex created
> 14:02:37.548         mtx0x804c619c0  .Mutex created
> 14:02:37.548         mtx0x804c61b60  .Mutex created
> 14:02:37.548         mtx0x804c61d00  .Mutex created
> 14:02:37.548         mtx0x804c61ea0  .Mutex created
> 14:02:37.548        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3259496, cap=3264096)
> 14:02:37.548        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3264096, cur.used=3259496
> 14:02:37.548        pept0x804c21000  . block created,
> buffer=0x804c62028-0x804c62fa0
> 14:02:37.548         mtx0x804c621a0  .Mutex created
> 14:02:37.548         mtx0x804c62340  .Mutex created
> 14:02:37.548         mtx0x804c624e0  .Mutex created
> 14:02:37.548         mtx0x804c62680  .Mutex created
> 14:02:37.548         mtx0x804c62820  .Mutex created
> 14:02:37.548         mtx0x804c629c0  .Mutex created
> 14:02:37.548         mtx0x804c62b60  .Mutex created
> 14:02:37.548         mtx0x804c62d00  .Mutex created
> 14:02:37.548         mtx0x804c62ea0  .Mutex created
> 14:02:37.548        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3263280, cap=3268096)
> 14:02:37.548        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3268096, cur.used=3263280
> 14:02:37.548        pept0x804c21000  . block created,
> buffer=0x804c63028-0x804c63fa0
> 14:02:37.548         mtx0x804c631a0  .Mutex created
> 14:02:37.548         mtx0x804c63340  .Mutex created
> 14:02:37.549         mtx0x804c634e0  .Mutex created
> 14:02:37.549         mtx0x804c63680  .Mutex created
> 14:02:37.549         mtx0x804c63820  .Mutex created
> 14:02:37.549         mtx0x804c639c0  .Mutex created
> 14:02:37.549         mtx0x804c63b60  .Mutex created
> 14:02:37.549         mtx0x804c63d00  .Mutex created
> 14:02:37.549         mtx0x804c63ea0  .Mutex created
> 14:02:37.549        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3267064, cap=3272096)
> 14:02:37.549        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3272096, cur.used=3267064
> 14:02:37.549        pept0x804c21000  . block created,
> buffer=0x804c64028-0x804c64fa0
> 14:02:37.549         mtx0x804c641a0  .Mutex created
> 14:02:37.549         mtx0x804c64340  .Mutex created
> 14:02:37.549         mtx0x804c644e0  .Mutex created
> 14:02:37.549         mtx0x804c64680  .Mutex created
> 14:02:37.549         mtx0x804c64820  .Mutex created
> 14:02:37.549         mtx0x804c649c0  .Mutex created
> 14:02:37.549         mtx0x804c64b60  .Mutex created
> 14:02:37.549         mtx0x804c64d00  .Mutex created
> 14:02:37.549         mtx0x804c64ea0  .Mutex created
> 14:02:37.549        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3270848, cap=3276096)
> 14:02:37.549        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3276096, cur.used=3270848
> 14:02:37.549        pept0x804c21000  . block created,
> buffer=0x804c65028-0x804c65fa0
> 14:02:37.549         mtx0x804c651a0  .Mutex created
> 14:02:37.549         mtx0x804c65340  .Mutex created
> 14:02:37.549         mtx0x804c654e0  .Mutex created
> 14:02:37.549         mtx0x804c65680  .Mutex created
> 14:02:37.549         mtx0x804c65820  .Mutex created
> 14:02:37.549         mtx0x804c659c0  .Mutex created
> 14:02:37.549         mtx0x804c65b60  .Mutex created
> 14:02:37.549         mtx0x804c65d00  .Mutex created
> 14:02:37.549         mtx0x804c65ea0  .Mutex created
> 14:02:37.549        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3274632, cap=3280096)
> 14:02:37.549        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3280096, cur.used=3274632
> 14:02:37.550        pept0x804c21000  . block created,
> buffer=0x804c66028-0x804c66fa0
> 14:02:37.550         mtx0x804c661a0  .Mutex created
> 14:02:37.550         mtx0x804c66340  .Mutex created
> 14:02:37.550         mtx0x804c664e0  .Mutex created
> 14:02:37.550         mtx0x804c66680  .Mutex created
> 14:02:37.550         mtx0x804c66820  .Mutex created
> 14:02:37.550         mtx0x804c669c0  .Mutex created
> 14:02:37.550         mtx0x804c66b60  .Mutex created
> 14:02:37.550         mtx0x804c66d00  .Mutex created
> 14:02:37.550         mtx0x804c66ea0  .Mutex created
> 14:02:37.550        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3278416, cap=3284096)
> 14:02:37.550        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3284096, cur.used=3278416
> 14:02:37.550        pept0x804c21000  . block created,
> buffer=0x804c67028-0x804c67fa0
> 14:02:37.550         mtx0x804c671a0  .Mutex created
> 14:02:37.550         mtx0x804c67340  .Mutex created
> 14:02:37.550         mtx0x804c674e0  .Mutex created
> 14:02:37.550         mtx0x804c67680  .Mutex created
> 14:02:37.550         mtx0x804c67820  .Mutex created
> 14:02:37.550         mtx0x804c679c0  .Mutex created
> 14:02:37.550         mtx0x804c67b60  .Mutex created
> 14:02:37.550         mtx0x804c67d00  .Mutex created
> 14:02:37.550         mtx0x804c67ea0  .Mutex created
> 14:02:37.550        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3282200, cap=3288096)
> 14:02:37.550        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3288096, cur.used=3282200
> 14:02:37.550        pept0x804c21000  . block created,
> buffer=0x804c68028-0x804c68fa0
> 14:02:37.550         mtx0x804c681a0  .Mutex created
> 14:02:37.550         mtx0x804c68340  .Mutex created
> 14:02:37.550         mtx0x804c684e0  .Mutex created
> 14:02:37.550         mtx0x804c68680  .Mutex created
> 14:02:37.550         mtx0x804c68820  .Mutex created
> 14:02:37.550         mtx0x804c689c0  .Mutex created
> 14:02:37.550         mtx0x804c68b60  .Mutex created
> 14:02:37.550         mtx0x804c68d00  .Mutex created
> 14:02:37.550         mtx0x804c68ea0  .Mutex created
> 14:02:37.550        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3285984, cap=3292096)
> 14:02:37.550        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3292096, cur.used=3285984
> 14:02:37.550        pept0x804c21000  . block created,
> buffer=0x804c69028-0x804c69fa0
> 14:02:37.550         mtx0x804c691a0  .Mutex created
> 14:02:37.550         mtx0x804c69340  .Mutex created
> 14:02:37.550         mtx0x804c694e0  .Mutex created
> 14:02:37.550         mtx0x804c69680  .Mutex created
> 14:02:37.550         mtx0x804c69820  .Mutex created
> 14:02:37.550         mtx0x804c699c0  .Mutex created
> 14:02:37.550         mtx0x804c69b60  .Mutex created
> 14:02:37.550         mtx0x804c69d00  .Mutex created
> 14:02:37.550         mtx0x804c69ea0  .Mutex created
> 14:02:37.551        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3289768, cap=3296096)
> 14:02:37.551        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3296096, cur.used=3289768
> 14:02:37.551        pept0x804c21000  . block created,
> buffer=0x804c6d028-0x804c6dfa0
> 14:02:37.551         mtx0x804c6d1a0  .Mutex created
> 14:02:37.551         mtx0x804c6d340  .Mutex created
> 14:02:37.551         mtx0x804c6d4e0  .Mutex created
> 14:02:37.551         mtx0x804c6d680  .Mutex created
> 14:02:37.551         mtx0x804c6d820  .Mutex created
> 14:02:37.551         mtx0x804c6d9c0  .Mutex created
> 14:02:37.551         mtx0x804c6db60  .Mutex created
> 14:02:37.551         mtx0x804c6dd00  .Mutex created
> 14:02:37.551         mtx0x804c6dea0  .Mutex created
> 14:02:37.551        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3293552, cap=3300096)
> 14:02:37.551        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3300096, cur.used=3293552
> 14:02:37.551        pept0x804c21000  . block created,
> buffer=0x804c6e028-0x804c6efa0
> 14:02:37.551         mtx0x804c6e1a0  .Mutex created
> 14:02:37.551         mtx0x804c6e340  .Mutex created
> 14:02:37.551         mtx0x804c6e4e0  .Mutex created
> 14:02:37.551         mtx0x804c6e680  .Mutex created
> 14:02:37.551         mtx0x804c6e820  .Mutex created
> 14:02:37.551         mtx0x804c6e9c0  .Mutex created
> 14:02:37.551         mtx0x804c6eb60  .Mutex created
> 14:02:37.551         mtx0x804c6ed00  .Mutex created
> 14:02:37.551         mtx0x804c6eea0  .Mutex created
> 14:02:37.551        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3297336, cap=3304096)
> 14:02:37.551        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3304096, cur.used=3297336
> 14:02:37.551        pept0x804c21000  . block created,
> buffer=0x804c6f028-0x804c6ffa0
> 14:02:37.551         mtx0x804c6f1a0  .Mutex created
> 14:02:37.551         mtx0x804c6f340  .Mutex created
> 14:02:37.551         mtx0x804c6f4e0  .Mutex created
> 14:02:37.551         mtx0x804c6f680  .Mutex created
> 14:02:37.551         mtx0x804c6f820  .Mutex created
> 14:02:37.551         mtx0x804c6f9c0  .Mutex created
> 14:02:37.551         mtx0x804c6fb60  .Mutex created
> 14:02:37.551         mtx0x804c6fd00  .Mutex created
> 14:02:37.551         mtx0x804c6fea0  .Mutex created
> 14:02:37.551        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3301120, cap=3308096)
> 14:02:37.551        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3308096, cur.used=3301120
> 14:02:37.551        pept0x804c21000  . block created,
> buffer=0x804c70028-0x804c70fa0
> 14:02:37.551         mtx0x804c701a0  .Mutex created
> 14:02:37.551         mtx0x804c70340  .Mutex created
> 14:02:37.551         mtx0x804c704e0  .Mutex created
> 14:02:37.551         mtx0x804c70680  .Mutex created
> 14:02:37.551         mtx0x804c70820  .Mutex created
> 14:02:37.552         mtx0x804c709c0  .Mutex created
> 14:02:37.552         mtx0x804c70b60  .Mutex created
> 14:02:37.552         mtx0x804c70d00  .Mutex created
> 14:02:37.552         mtx0x804c70ea0  .Mutex created
> 14:02:37.552        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3304904, cap=3312096)
> 14:02:37.552        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3312096, cur.used=3304904
> 14:02:37.552        pept0x804c21000  . block created,
> buffer=0x804c71028-0x804c71fa0
> 14:02:37.552         mtx0x804c711a0  .Mutex created
> 14:02:37.552         mtx0x804c71340  .Mutex created
> 14:02:37.552         mtx0x804c714e0  .Mutex created
> 14:02:37.552         mtx0x804c71680  .Mutex created
> 14:02:37.552         mtx0x804c71820  .Mutex created
> 14:02:37.552         mtx0x804c719c0  .Mutex created
> 14:02:37.552         mtx0x804c71b60  .Mutex created
> 14:02:37.552         mtx0x804c71d00  .Mutex created
> 14:02:37.552         mtx0x804c71ea0  .Mutex created
> 14:02:37.552        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3308688, cap=3316096)
> 14:02:37.552        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3316096, cur.used=3308688
> 14:02:37.552        pept0x804c21000  . block created,
> buffer=0x804c72028-0x804c72fa0
> 14:02:37.552         mtx0x804c721a0  .Mutex created
> 14:02:37.552         mtx0x804c72340  .Mutex created
> 14:02:37.552         mtx0x804c724e0  .Mutex created
> 14:02:37.552         mtx0x804c72680  .Mutex created
> 14:02:37.552         mtx0x804c72820  .Mutex created
> 14:02:37.552         mtx0x804c729c0  .Mutex created
> 14:02:37.553         mtx0x804c72b60  .Mutex created
> 14:02:37.553         mtx0x804c72d00  .Mutex created
> 14:02:37.553         mtx0x804c72ea0  .Mutex created
> 14:02:37.553        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3312472, cap=3320096)
> 14:02:37.553        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3320096, cur.used=3312472
> 14:02:37.553        pept0x804c21000  . block created,
> buffer=0x804c73028-0x804c73fa0
> 14:02:37.553         mtx0x804c731a0  .Mutex created
> 14:02:37.553         mtx0x804c73340  .Mutex created
> 14:02:37.553         mtx0x804c734e0  .Mutex created
> 14:02:37.553         mtx0x804c73680  .Mutex created
> 14:02:37.553         mtx0x804c73820  .Mutex created
> 14:02:37.553         mtx0x804c739c0  .Mutex created
> 14:02:37.553         mtx0x804c73b60  .Mutex created
> 14:02:37.553         mtx0x804c73d00  .Mutex created
> 14:02:37.553         mtx0x804c73ea0  .Mutex created
> 14:02:37.553        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3316256, cap=3324096)
> 14:02:37.553        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3324096, cur.used=3316256
> 14:02:37.553        pept0x804c21000  . block created,
> buffer=0x80534e028-0x80534efa0
> 14:02:37.553         mtx0x80534e1a0  .Mutex created
> 14:02:37.553         mtx0x80534e340  .Mutex created
> 14:02:37.553         mtx0x80534e4e0  .Mutex created
> 14:02:37.553         mtx0x80534e680  .Mutex created
> 14:02:37.553         mtx0x80534e820  .Mutex created
> 14:02:37.553         mtx0x80534e9c0  .Mutex created
> 14:02:37.553         mtx0x80534eb60  .Mutex created
> 14:02:37.553         mtx0x80534ed00  .Mutex created
> 14:02:37.553         mtx0x80534eea0  .Mutex created
> 14:02:37.553        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3320040, cap=3328096)
> 14:02:37.553        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3328096, cur.used=3320040
> 14:02:37.553        pept0x804c21000  . block created,
> buffer=0x80534f028-0x80534ffa0
> 14:02:37.553         mtx0x80534f1a0  .Mutex created
> 14:02:37.553         mtx0x80534f340  .Mutex created
> 14:02:37.553         mtx0x80534f4e0  .Mutex created
> 14:02:37.553         mtx0x80534f680  .Mutex created
> 14:02:37.553         mtx0x80534f820  .Mutex created
> 14:02:37.553         mtx0x80534f9c0  .Mutex created
> 14:02:37.553         mtx0x80534fb60  .Mutex created
> 14:02:37.553         mtx0x80534fd00  .Mutex created
> 14:02:37.553         mtx0x80534fea0  .Mutex created
> 14:02:37.553        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3323824, cap=3332096)
> 14:02:37.553        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3332096, cur.used=3323824
> 14:02:37.553        pept0x804c21000  . block created,
> buffer=0x805350028-0x805350fa0
> 14:02:37.553         mtx0x8053501a0  .Mutex created
> 14:02:37.553         mtx0x805350340  .Mutex created
> 14:02:37.553         mtx0x8053504e0  .Mutex created
> 14:02:37.553         mtx0x805350680  .Mutex created
> 14:02:37.553         mtx0x805350820  .Mutex created
> 14:02:37.553         mtx0x8053509c0  .Mutex created
> 14:02:37.553         mtx0x805350b60  .Mutex created
> 14:02:37.553         mtx0x805350d00  .Mutex created
> 14:02:37.553         mtx0x805350ea0  .Mutex created
> 14:02:37.553        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3327608, cap=3336096)
> 14:02:37.554        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3336096, cur.used=3327608
> 14:02:37.554        pept0x804c21000  . block created,
> buffer=0x805354028-0x805354fa0
> 14:02:37.554         mtx0x8053541a0  .Mutex created
> 14:02:37.554         mtx0x805354340  .Mutex created
> 14:02:37.554         mtx0x8053544e0  .Mutex created
> 14:02:37.554         mtx0x805354680  .Mutex created
> 14:02:37.554         mtx0x805354820  .Mutex created
> 14:02:37.554         mtx0x8053549c0  .Mutex created
> 14:02:37.554         mtx0x805354b60  .Mutex created
> 14:02:37.554         mtx0x805354d00  .Mutex created
> 14:02:37.554         mtx0x805354ea0  .Mutex created
> 14:02:37.554        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3331392, cap=3340096)
> 14:02:37.554        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3340096, cur.used=3331392
> 14:02:37.554        pept0x804c21000  . block created,
> buffer=0x805355028-0x805355fa0
> 14:02:37.554         mtx0x8053551a0  .Mutex created
> 14:02:37.554         mtx0x805355340  .Mutex created
> 14:02:37.554         mtx0x8053554e0  .Mutex created
> 14:02:37.554         mtx0x805355680  .Mutex created
> 14:02:37.554         mtx0x805355820  .Mutex created
> 14:02:37.554         mtx0x8053559c0  .Mutex created
> 14:02:37.554         mtx0x805355b60  .Mutex created
> 14:02:37.554         mtx0x805355d00  .Mutex created
> 14:02:37.554         mtx0x805355ea0  .Mutex created
> 14:02:37.554        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3335176, cap=3344096)
> 14:02:37.554        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3344096, cur.used=3335176
> 14:02:37.554        pept0x804c21000  . block created,
> buffer=0x805356028-0x805356fa0
> 14:02:37.554         mtx0x8053561a0  .Mutex created
> 14:02:37.554         mtx0x805356340  .Mutex created
> 14:02:37.554         mtx0x8053564e0  .Mutex created
> 14:02:37.554         mtx0x805356680  .Mutex created
> 14:02:37.554         mtx0x805356820  .Mutex created
> 14:02:37.554         mtx0x8053569c0  .Mutex created
> 14:02:37.554         mtx0x805356b60  .Mutex created
> 14:02:37.554         mtx0x805356d00  .Mutex created
> 14:02:37.554         mtx0x805356ea0  .Mutex created
> 14:02:37.554        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3338960, cap=3348096)
> 14:02:37.554        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3348096, cur.used=3338960
> 14:02:37.554        pept0x804c21000  . block created,
> buffer=0x805357028-0x805357fa0
> 14:02:37.554         mtx0x8053571a0  .Mutex created
> 14:02:37.554         mtx0x805357340  .Mutex created
> 14:02:37.554         mtx0x8053574e0  .Mutex created
> 14:02:37.554         mtx0x805357680  .Mutex created
> 14:02:37.554         mtx0x805357820  .Mutex created
> 14:02:37.554         mtx0x8053579c0  .Mutex created
> 14:02:37.554         mtx0x805357b60  .Mutex created
> 14:02:37.554         mtx0x805357d00  .Mutex created
> 14:02:37.554         mtx0x805357ea0  .Mutex created
> 14:02:37.554        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3342744, cap=3352096)
> 14:02:37.554        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3352096, cur.used=3342744
> 14:02:37.554        pept0x804c21000  . block created,
> buffer=0x805358028-0x805358fa0
> 14:02:37.555         mtx0x8053581a0  .Mutex created
> 14:02:37.555         mtx0x805358340  .Mutex created
> 14:02:37.555         mtx0x8053584e0  .Mutex created
> 14:02:37.555         mtx0x805358680  .Mutex created
> 14:02:37.555         mtx0x805358820  .Mutex created
> 14:02:37.555         mtx0x8053589c0  .Mutex created
> 14:02:37.555         mtx0x805358b60  .Mutex created
> 14:02:37.555         mtx0x805358d00  .Mutex created
> 14:02:37.555         mtx0x805358ea0  .Mutex created
> 14:02:37.555        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3346528, cap=3356096)
> 14:02:37.555        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3356096, cur.used=3346528
> 14:02:37.555        pept0x804c21000  . block created,
> buffer=0x805359028-0x805359fa0
> 14:02:37.555         mtx0x8053591a0  .Mutex created
> 14:02:37.555         mtx0x805359340  .Mutex created
> 14:02:37.555         mtx0x8053594e0  .Mutex created
> 14:02:37.555         mtx0x805359680  .Mutex created
> 14:02:37.555         mtx0x805359820  .Mutex created
> 14:02:37.555         mtx0x8053599c0  .Mutex created
> 14:02:37.555         mtx0x805359b60  .Mutex created
> 14:02:37.555         mtx0x805359d00  .Mutex created
> 14:02:37.555         mtx0x805359ea0  .Mutex created
> 14:02:37.555        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3350312, cap=3360096)
> 14:02:37.555        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3360096, cur.used=3350312
> 14:02:37.555        pept0x804c21000  . block created,
> buffer=0x80535a028-0x80535afa0
> 14:02:37.555         mtx0x80535a1a0  .Mutex created
> 14:02:37.555         mtx0x80535a340  .Mutex created
> 14:02:37.555         mtx0x80535a4e0  .Mutex created
> 14:02:37.555         mtx0x80535a680  .Mutex created
> 14:02:37.555         mtx0x80535a820  .Mutex created
> 14:02:37.555         mtx0x80535a9c0  .Mutex created
> 14:02:37.555         mtx0x80535ab60  .Mutex created
> 14:02:37.555         mtx0x80535ad00  .Mutex created
> 14:02:37.555         mtx0x80535aea0  .Mutex created
> 14:02:37.555        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3354096, cap=3364096)
> 14:02:37.555        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3364096, cur.used=3354096
> 14:02:37.555        pept0x804c21000  . block created,
> buffer=0x80535b028-0x80535bfa0
> 14:02:37.556         mtx0x80535b1a0  .Mutex created
> 14:02:37.556         mtx0x80535b340  .Mutex created
> 14:02:37.556         mtx0x80535b4e0  .Mutex created
> 14:02:37.556         mtx0x80535b680  .Mutex created
> 14:02:37.556         mtx0x80535b820  .Mutex created
> 14:02:37.556         mtx0x80535b9c0  .Mutex created
> 14:02:37.556         mtx0x80535bb60  .Mutex created
> 14:02:37.556         mtx0x80535bd00  .Mutex created
> 14:02:37.556         mtx0x80535bea0  .Mutex created
> 14:02:37.556        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3357880, cap=3368096)
> 14:02:37.556        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3368096, cur.used=3357880
> 14:02:37.556        pept0x804c21000  . block created,
> buffer=0x80535c028-0x80535cfa0
> 14:02:37.556         mtx0x80535c1a0  .Mutex created
> 14:02:37.556         mtx0x80535c340  .Mutex created
> 14:02:37.556         mtx0x80535c4e0  .Mutex created
> 14:02:37.556         mtx0x80535c680  .Mutex created
> 14:02:37.556         mtx0x80535c820  .Mutex created
> 14:02:37.556         mtx0x80535c9c0  .Mutex created
> 14:02:37.556         mtx0x80535cb60  .Mutex created
> 14:02:37.556         mtx0x80535cd00  .Mutex created
> 14:02:37.556         mtx0x80535cea0  .Mutex created
> 14:02:37.556        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3361664, cap=3372096)
> 14:02:37.556        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3372096, cur.used=3361664
> 14:02:37.556        pept0x804c21000  . block created,
> buffer=0x80535d028-0x80535dfa0
> 14:02:37.556         mtx0x80535d1a0  .Mutex created
> 14:02:37.556         mtx0x80535d340  .Mutex created
> 14:02:37.556         mtx0x80535d4e0  .Mutex created
> 14:02:37.556         mtx0x80535d680  .Mutex created
> 14:02:37.556         mtx0x80535d820  .Mutex created
> 14:02:37.556         mtx0x80535d9c0  .Mutex created
> 14:02:37.556         mtx0x80535db60  .Mutex created
> 14:02:37.557         mtx0x80535dd00  .Mutex created
> 14:02:37.557         mtx0x80535dea0  .Mutex created
> 14:02:37.557        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3365448, cap=3376096)
> 14:02:37.557        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3376096, cur.used=3365448
> 14:02:37.557        pept0x804c21000  . block created,
> buffer=0x80535e028-0x80535efa0
> 14:02:37.557         mtx0x80535e1a0  .Mutex created
> 14:02:37.557         mtx0x80535e340  .Mutex created
> 14:02:37.557         mtx0x80535e4e0  .Mutex created
> 14:02:37.557         mtx0x80535e680  .Mutex created
> 14:02:37.557         mtx0x80535e820  .Mutex created
> 14:02:37.557         mtx0x80535e9c0  .Mutex created
> 14:02:37.557         mtx0x80535eb60  .Mutex created
> 14:02:37.557         mtx0x80535ed00  .Mutex created
> 14:02:37.557         mtx0x80535eea0  .Mutex created
> 14:02:37.557        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3369232, cap=3380096)
> 14:02:37.557        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3380096, cur.used=3369232
> 14:02:37.557        pept0x804c21000  . block created,
> buffer=0x80535f028-0x80535ffa0
> 14:02:37.557         mtx0x80535f1a0  .Mutex created
> 14:02:37.557         mtx0x80535f340  .Mutex created
> 14:02:37.557         mtx0x80535f4e0  .Mutex created
> 14:02:37.557         mtx0x80535f680  .Mutex created
> 14:02:37.557         mtx0x80535f820  .Mutex created
> 14:02:37.557         mtx0x80535f9c0  .Mutex created
> 14:02:37.557         mtx0x80535fb60  .Mutex created
> 14:02:37.557         mtx0x80535fd00  .Mutex created
> 14:02:37.557         mtx0x80535fea0  .Mutex created
> 14:02:37.557        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3373016, cap=3384096)
> 14:02:37.557        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3384096, cur.used=3373016
> 14:02:37.557        pept0x804c21000  . block created,
> buffer=0x805360028-0x805360fa0
> 14:02:37.558         mtx0x8053601a0  .Mutex created
> 14:02:37.558         mtx0x805360340  .Mutex created
> 14:02:37.558         mtx0x8053604e0  .Mutex created
> 14:02:37.558         mtx0x805360680  .Mutex created
> 14:02:37.558         mtx0x805360820  .Mutex created
> 14:02:37.558         mtx0x8053609c0  .Mutex created
> 14:02:37.558         mtx0x805360b60  .Mutex created
> 14:02:37.558         mtx0x805360d00  .Mutex created
> 14:02:37.558         mtx0x805360ea0  .Mutex created
> 14:02:37.558        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3376800, cap=3388096)
> 14:02:37.558        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3388096, cur.used=3376800
> 14:02:37.558        pept0x804c21000  . block created,
> buffer=0x805361028-0x805361fa0
> 14:02:37.558         mtx0x8053611a0  .Mutex created
> 14:02:37.558         mtx0x805361340  .Mutex created
> 14:02:37.558         mtx0x8053614e0  .Mutex created
> 14:02:37.558         mtx0x805361680  .Mutex created
> 14:02:37.558         mtx0x805361820  .Mutex created
> 14:02:37.558         mtx0x8053619c0  .Mutex created
> 14:02:37.558         mtx0x805361b60  .Mutex created
> 14:02:37.558         mtx0x805361d00  .Mutex created
> 14:02:37.558         mtx0x805361ea0  .Mutex created
> 14:02:37.558        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3380584, cap=3392096)
> 14:02:37.558        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3392096, cur.used=3380584
> 14:02:37.558        pept0x804c21000  . block created,
> buffer=0x805362028-0x805362fa0
> 14:02:37.558         mtx0x8053621a0  .Mutex created
> 14:02:37.558         mtx0x805362340  .Mutex created
> 14:02:37.558         mtx0x8053624e0  .Mutex created
> 14:02:37.558         mtx0x805362680  .Mutex created
> 14:02:37.558         mtx0x805362820  .Mutex created
> 14:02:37.558         mtx0x8053629c0  .Mutex created
> 14:02:37.558         mtx0x805362b60  .Mutex created
> 14:02:37.558         mtx0x805362d00  .Mutex created
> 14:02:37.558         mtx0x805362ea0  .Mutex created
> 14:02:37.558        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3384368, cap=3396096)
> 14:02:37.558        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3396096, cur.used=3384368
> 14:02:37.558        pept0x804c21000  . block created,
> buffer=0x805363028-0x805363fa0
> 14:02:37.558         mtx0x8053631a0  .Mutex created
> 14:02:37.558         mtx0x805363340  .Mutex created
> 14:02:37.558         mtx0x8053634e0  .Mutex created
> 14:02:37.558         mtx0x805363680  .Mutex created
> 14:02:37.558         mtx0x805363820  .Mutex created
> 14:02:37.558         mtx0x8053639c0  .Mutex created
> 14:02:37.558         mtx0x805363b60  .Mutex created
> 14:02:37.558         mtx0x805363d00  .Mutex created
> 14:02:37.558         mtx0x805363ea0  .Mutex created
> 14:02:37.558        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3388152, cap=3400096)
> 14:02:37.558        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3400096, cur.used=3388152
> 14:02:37.558        pept0x804c21000  . block created,
> buffer=0x805364028-0x805364fa0
> 14:02:37.558         mtx0x8053641a0  .Mutex created
> 14:02:37.558         mtx0x805364340  .Mutex created
> 14:02:37.558         mtx0x8053644e0  .Mutex created
> 14:02:37.559         mtx0x805364680  .Mutex created
> 14:02:37.559         mtx0x805364820  .Mutex created
> 14:02:37.559         mtx0x8053649c0  .Mutex created
> 14:02:37.559         mtx0x805364b60  .Mutex created
> 14:02:37.559         mtx0x805364d00  .Mutex created
> 14:02:37.559         mtx0x805364ea0  .Mutex created
> 14:02:37.559        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3391936, cap=3404096)
> 14:02:37.559        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3404096, cur.used=3391936
> 14:02:37.559        pept0x804c21000  . block created,
> buffer=0x805365028-0x805365fa0
> 14:02:37.559         mtx0x8053651a0  .Mutex created
> 14:02:37.559         mtx0x805365340  .Mutex created
> 14:02:37.559         mtx0x8053654e0  .Mutex created
> 14:02:37.559         mtx0x805365680  .Mutex created
> 14:02:37.559         mtx0x805365820  .Mutex created
> 14:02:37.559         mtx0x8053659c0  .Mutex created
> 14:02:37.559         mtx0x805365b60  .Mutex created
> 14:02:37.559         mtx0x805365d00  .Mutex created
> 14:02:37.559         mtx0x805365ea0  .Mutex created
> 14:02:37.559        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3395720, cap=3408096)
> 14:02:37.559        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3408096, cur.used=3395720
> 14:02:37.559        pept0x804c21000  . block created,
> buffer=0x805366028-0x805366fa0
> 14:02:37.559         mtx0x8053661a0  .Mutex created
> 14:02:37.559         mtx0x805366340  .Mutex created
> 14:02:37.559         mtx0x8053664e0  .Mutex created
> 14:02:37.559         mtx0x805366680  .Mutex created
> 14:02:37.559         mtx0x805366820  .Mutex created
> 14:02:37.559         mtx0x8053669c0  .Mutex created
> 14:02:37.559         mtx0x805366b60  .Mutex created
> 14:02:37.559         mtx0x805366d00  .Mutex created
> 14:02:37.559         mtx0x805366ea0  .Mutex created
> 14:02:37.559        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3399504, cap=3412096)
> 14:02:37.559        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3412096, cur.used=3399504
> 14:02:37.559        pept0x804c21000  . block created,
> buffer=0x805367028-0x805367fa0
> 14:02:37.559         mtx0x8053671a0  .Mutex created
> 14:02:37.559         mtx0x805367340  .Mutex created
> 14:02:37.559         mtx0x8053674e0  .Mutex created
> 14:02:37.559         mtx0x805367680  .Mutex created
> 14:02:37.559         mtx0x805367820  .Mutex created
> 14:02:37.559         mtx0x8053679c0  .Mutex created
> 14:02:37.559         mtx0x805367b60  .Mutex created
> 14:02:37.559         mtx0x805367d00  .Mutex created
> 14:02:37.559         mtx0x805367ea0  .Mutex created
> 14:02:37.559        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3403288, cap=3416096)
> 14:02:37.559        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3416096, cur.used=3403288
> 14:02:37.559        pept0x804c21000  . block created,
> buffer=0x80536b028-0x80536bfa0
> 14:02:37.559         mtx0x80536b1a0  .Mutex created
> 14:02:37.559         mtx0x80536b340  .Mutex created
> 14:02:37.559         mtx0x80536b4e0  .Mutex created
> 14:02:37.559         mtx0x80536b680  .Mutex created
> 14:02:37.559         mtx0x80536b820  .Mutex created
> 14:02:37.559         mtx0x80536b9c0  .Mutex created
> 14:02:37.559         mtx0x80536bb60  .Mutex created
> 14:02:37.559         mtx0x80536bd00  .Mutex created
> 14:02:37.559         mtx0x80536bea0  .Mutex created
> 14:02:37.559        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3407072, cap=3420096)
> 14:02:37.559        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3420096, cur.used=3407072
> 14:02:37.560        pept0x804c21000  . block created,
> buffer=0x80536c028-0x80536cfa0
> 14:02:37.560         mtx0x80536c1a0  .Mutex created
> 14:02:37.560         mtx0x80536c340  .Mutex created
> 14:02:37.560         mtx0x80536c4e0  .Mutex created
> 14:02:37.560         mtx0x80536c680  .Mutex created
> 14:02:37.560         mtx0x80536c820  .Mutex created
> 14:02:37.560         mtx0x80536c9c0  .Mutex created
> 14:02:37.560         mtx0x80536cb60  .Mutex created
> 14:02:37.560         mtx0x80536cd00  .Mutex created
> 14:02:37.560         mtx0x80536cea0  .Mutex created
> 14:02:37.560        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3410856, cap=3424096)
> 14:02:37.560        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3424096, cur.used=3410856
> 14:02:37.560        pept0x804c21000  . block created,
> buffer=0x80536d028-0x80536dfa0
> 14:02:37.560         mtx0x80536d1a0  .Mutex created
> 14:02:37.560         mtx0x80536d340  .Mutex created
> 14:02:37.560         mtx0x80536d4e0  .Mutex created
> 14:02:37.560         mtx0x80536d680  .Mutex created
> 14:02:37.560         mtx0x80536d820  .Mutex created
> 14:02:37.560         mtx0x80536d9c0  .Mutex created
> 14:02:37.560         mtx0x80536db60  .Mutex created
> 14:02:37.560         mtx0x80536dd00  .Mutex created
> 14:02:37.560         mtx0x80536dea0  .Mutex created
> 14:02:37.560        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3414640, cap=3428096)
> 14:02:37.560        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3428096, cur.used=3414640
> 14:02:37.560        pept0x804c21000  . block created,
> buffer=0x80536e028-0x80536efa0
> 14:02:37.560         mtx0x80536e1a0  .Mutex created
> 14:02:37.560         mtx0x80536e340  .Mutex created
> 14:02:37.560         mtx0x80536e4e0  .Mutex created
> 14:02:37.560         mtx0x80536e680  .Mutex created
> 14:02:37.560         mtx0x80536e820  .Mutex created
> 14:02:37.560         mtx0x80536e9c0  .Mutex created
> 14:02:37.560         mtx0x80536eb60  .Mutex created
> 14:02:37.561         mtx0x80536ed00  .Mutex created
> 14:02:37.561         mtx0x80536eea0  .Mutex created
> 14:02:37.561        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3418424, cap=3432096)
> 14:02:37.561        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3432096, cur.used=3418424
> 14:02:37.561        pept0x804c21000  . block created,
> buffer=0x80536f028-0x80536ffa0
> 14:02:37.561         mtx0x80536f1a0  .Mutex created
> 14:02:37.561         mtx0x80536f340  .Mutex created
> 14:02:37.561         mtx0x80536f4e0  .Mutex created
> 14:02:37.561         mtx0x80536f680  .Mutex created
> 14:02:37.561         mtx0x80536f820  .Mutex created
> 14:02:37.561         mtx0x80536f9c0  .Mutex created
> 14:02:37.561         mtx0x80536fb60  .Mutex created
> 14:02:37.561         mtx0x80536fd00  .Mutex created
> 14:02:37.561         mtx0x80536fea0  .Mutex created
> 14:02:37.561        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3422208, cap=3436096)
> 14:02:37.561        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3436096, cur.used=3422208
> 14:02:37.561        pept0x804c21000  . block created,
> buffer=0x805370028-0x805370fa0
> 14:02:37.561         mtx0x8053701a0  .Mutex created
> 14:02:37.561         mtx0x805370340  .Mutex created
> 14:02:37.561         mtx0x8053704e0  .Mutex created
> 14:02:37.561         mtx0x805370680  .Mutex created
> 14:02:37.561         mtx0x805370820  .Mutex created
> 14:02:37.561         mtx0x8053709c0  .Mutex created
> 14:02:37.561         mtx0x805370b60  .Mutex created
> 14:02:37.561         mtx0x805370d00  .Mutex created
> 14:02:37.561         mtx0x805370ea0  .Mutex created
> 14:02:37.561        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3425992, cap=3440096)
> 14:02:37.561        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3440096, cur.used=3425992
> 14:02:37.561        pept0x804c21000  . block created,
> buffer=0x805371028-0x805371fa0
> 14:02:37.561         mtx0x8053711a0  .Mutex created
> 14:02:37.561         mtx0x805371340  .Mutex created
> 14:02:37.561         mtx0x8053714e0  .Mutex created
> 14:02:37.561         mtx0x805371680  .Mutex created
> 14:02:37.561         mtx0x805371820  .Mutex created
> 14:02:37.562         mtx0x8053719c0  .Mutex created
> 14:02:37.562         mtx0x805371b60  .Mutex created
> 14:02:37.562         mtx0x805371d00  .Mutex created
> 14:02:37.562         mtx0x805371ea0  .Mutex created
> 14:02:37.562        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3429776, cap=3444096)
> 14:02:37.562        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3444096, cur.used=3429776
> 14:02:37.562        pept0x804c21000  . block created,
> buffer=0x805372028-0x805372fa0
> 14:02:37.562         mtx0x8053721a0  .Mutex created
> 14:02:37.562         mtx0x805372340  .Mutex created
> 14:02:37.562         mtx0x8053724e0  .Mutex created
> 14:02:37.562         mtx0x805372680  .Mutex created
> 14:02:37.562         mtx0x805372820  .Mutex created
> 14:02:37.562         mtx0x8053729c0  .Mutex created
> 14:02:37.562         mtx0x805372b60  .Mutex created
> 14:02:37.562         mtx0x805372d00  .Mutex created
> 14:02:37.562         mtx0x805372ea0  .Mutex created
> 14:02:37.562        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3433560, cap=3448096)
> 14:02:37.562        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3448096, cur.used=3433560
> 14:02:37.562        pept0x804c21000  . block created,
> buffer=0x805373028-0x805373fa0
> 14:02:37.562         mtx0x8053731a0  .Mutex created
> 14:02:37.562         mtx0x805373340  .Mutex created
> 14:02:37.562         mtx0x8053734e0  .Mutex created
> 14:02:37.562         mtx0x805373680  .Mutex created
> 14:02:37.562         mtx0x805373820  .Mutex created
> 14:02:37.562         mtx0x8053739c0  .Mutex created
> 14:02:37.562         mtx0x805373b60  .Mutex created
> 14:02:37.562         mtx0x805373d00  .Mutex created
> 14:02:37.562         mtx0x805373ea0  .Mutex created
> 14:02:37.562        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3437344, cap=3452096)
> 14:02:37.562        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3452096, cur.used=3437344
> 14:02:37.563        pept0x804c21000  . block created,
> buffer=0x805374028-0x805374fa0
> 14:02:37.563         mtx0x8053741a0  .Mutex created
> 14:02:37.563         mtx0x805374340  .Mutex created
> 14:02:37.563         mtx0x8053744e0  .Mutex created
> 14:02:37.563         mtx0x805374680  .Mutex created
> 14:02:37.563         mtx0x805374820  .Mutex created
> 14:02:37.563         mtx0x8053749c0  .Mutex created
> 14:02:37.563         mtx0x805374b60  .Mutex created
> 14:02:37.563         mtx0x805374d00  .Mutex created
> 14:02:37.563         mtx0x805374ea0  .Mutex created
> 14:02:37.563        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3441128, cap=3456096)
> 14:02:37.563        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3456096, cur.used=3441128
> 14:02:37.563        pept0x804c21000  . block created,
> buffer=0x805378028-0x805378fa0
> 14:02:37.563         mtx0x8053781a0  .Mutex created
> 14:02:37.563         mtx0x805378340  .Mutex created
> 14:02:37.563         mtx0x8053784e0  .Mutex created
> 14:02:37.563         mtx0x805378680  .Mutex created
> 14:02:37.563         mtx0x805378820  .Mutex created
> 14:02:37.563         mtx0x8053789c0  .Mutex created
> 14:02:37.563         mtx0x805378b60  .Mutex created
> 14:02:37.563         mtx0x805378d00  .Mutex created
> 14:02:37.563         mtx0x805378ea0  .Mutex created
> 14:02:37.563        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3444912, cap=3460096)
> 14:02:37.563        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3460096, cur.used=3444912
> 14:02:37.563        pept0x804c21000  . block created,
> buffer=0x805379028-0x805379fa0
> 14:02:37.563         mtx0x8053791a0  .Mutex created
> 14:02:37.563         mtx0x805379340  .Mutex created
> 14:02:37.563         mtx0x8053794e0  .Mutex created
> 14:02:37.563         mtx0x805379680  .Mutex created
> 14:02:37.563         mtx0x805379820  .Mutex created
> 14:02:37.563         mtx0x8053799c0  .Mutex created
> 14:02:37.563         mtx0x805379b60  .Mutex created
> 14:02:37.563         mtx0x805379d00  .Mutex created
> 14:02:37.563         mtx0x805379ea0  .Mutex created
> 14:02:37.563        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3448696, cap=3464096)
> 14:02:37.563        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3464096, cur.used=3448696
> 14:02:37.563        pept0x804c21000  . block created,
> buffer=0x80537a028-0x80537afa0
> 14:02:37.563         mtx0x80537a1a0  .Mutex created
> 14:02:37.563         mtx0x80537a340  .Mutex created
> 14:02:37.563         mtx0x80537a4e0  .Mutex created
> 14:02:37.563         mtx0x80537a680  .Mutex created
> 14:02:37.563         mtx0x80537a820  .Mutex created
> 14:02:37.563         mtx0x80537a9c0  .Mutex created
> 14:02:37.564         mtx0x80537ab60  .Mutex created
> 14:02:37.564         mtx0x80537ad00  .Mutex created
> 14:02:37.564         mtx0x80537aea0  .Mutex created
> 14:02:37.564        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3452480, cap=3468096)
> 14:02:37.564        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3468096, cur.used=3452480
> 14:02:37.564        pept0x804c21000  . block created,
> buffer=0x80537b028-0x80537bfa0
> 14:02:37.564         mtx0x80537b1a0  .Mutex created
> 14:02:37.564         mtx0x80537b340  .Mutex created
> 14:02:37.564         mtx0x80537b4e0  .Mutex created
> 14:02:37.564         mtx0x80537b680  .Mutex created
> 14:02:37.564         mtx0x80537b820  .Mutex created
> 14:02:37.564         mtx0x80537b9c0  .Mutex created
> 14:02:37.564         mtx0x80537bb60  .Mutex created
> 14:02:37.564         mtx0x80537bd00  .Mutex created
> 14:02:37.564         mtx0x80537bea0  .Mutex created
> 14:02:37.564        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3456264, cap=3472096)
> 14:02:37.564        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3472096, cur.used=3456264
> 14:02:37.564        pept0x804c21000  . block created,
> buffer=0x80537c028-0x80537cfa0
> 14:02:37.564         mtx0x80537c1a0  .Mutex created
> 14:02:37.564         mtx0x80537c340  .Mutex created
> 14:02:37.564         mtx0x80537c4e0  .Mutex created
> 14:02:37.564         mtx0x80537c680  .Mutex created
> 14:02:37.564         mtx0x80537c820  .Mutex created
> 14:02:37.564         mtx0x80537c9c0  .Mutex created
> 14:02:37.564         mtx0x80537cb60  .Mutex created
> 14:02:37.564         mtx0x80537cd00  .Mutex created
> 14:02:37.564         mtx0x80537cea0  .Mutex created
> 14:02:37.564        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3460048, cap=3476096)
> 14:02:37.564        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3476096, cur.used=3460048
> 14:02:37.564        pept0x804c21000  . block created,
> buffer=0x80537d028-0x80537dfa0
> 14:02:37.564         mtx0x80537d1a0  .Mutex created
> 14:02:37.565         mtx0x80537d340  .Mutex created
> 14:02:37.565         mtx0x80537d4e0  .Mutex created
> 14:02:37.565         mtx0x80537d680  .Mutex created
> 14:02:37.565         mtx0x80537d820  .Mutex created
> 14:02:37.565         mtx0x80537d9c0  .Mutex created
> 14:02:37.565         mtx0x80537db60  .Mutex created
> 14:02:37.565         mtx0x80537dd00  .Mutex created
> 14:02:37.565         mtx0x80537dea0  .Mutex created
> 14:02:37.565        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3463832, cap=3480096)
> 14:02:37.565        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3480096, cur.used=3463832
> 14:02:37.565        pept0x804c21000  . block created,
> buffer=0x80537e028-0x80537efa0
> 14:02:37.565         mtx0x80537e1a0  .Mutex created
> 14:02:37.565         mtx0x80537e340  .Mutex created
> 14:02:37.565         mtx0x80537e4e0  .Mutex created
> 14:02:37.565         mtx0x80537e680  .Mutex created
> 14:02:37.565         mtx0x80537e820  .Mutex created
> 14:02:37.565         mtx0x80537e9c0  .Mutex created
> 14:02:37.565         mtx0x80537eb60  .Mutex created
> 14:02:37.565         mtx0x80537ed00  .Mutex created
> 14:02:37.565         mtx0x80537eea0  .Mutex created
> 14:02:37.565        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3467616, cap=3484096)
> 14:02:37.565        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3484096, cur.used=3467616
> 14:02:37.565        pept0x804c21000  . block created,
> buffer=0x80537f028-0x80537ffa0
> 14:02:37.565         mtx0x80537f1a0  .Mutex created
> 14:02:37.565         mtx0x80537f340  .Mutex created
> 14:02:37.565         mtx0x80537f4e0  .Mutex created
> 14:02:37.565         mtx0x80537f680  .Mutex created
> 14:02:37.565         mtx0x80537f820  .Mutex created
> 14:02:37.565         mtx0x80537f9c0  .Mutex created
> 14:02:37.565         mtx0x80537fb60  .Mutex created
> 14:02:37.565         mtx0x80537fd00  .Mutex created
> 14:02:37.565         mtx0x80537fea0  .Mutex created
> 14:02:37.565        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3471400, cap=3488096)
> 14:02:37.566        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3488096, cur.used=3471400
> 14:02:37.566        pept0x804c21000  . block created,
> buffer=0x805380028-0x805380fa0
> 14:02:37.566         mtx0x8053801a0  .Mutex created
> 14:02:37.566         mtx0x805380340  .Mutex created
> 14:02:37.566         mtx0x8053804e0  .Mutex created
> 14:02:37.566         mtx0x805380680  .Mutex created
> 14:02:37.566         mtx0x805380820  .Mutex created
> 14:02:37.566         mtx0x8053809c0  .Mutex created
> 14:02:37.566         mtx0x805380b60  .Mutex created
> 14:02:37.566         mtx0x805380d00  .Mutex created
> 14:02:37.566         mtx0x805380ea0  .Mutex created
> 14:02:37.566        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3475184, cap=3492096)
> 14:02:37.566        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3492096, cur.used=3475184
> 14:02:37.566        pept0x804c21000  . block created,
> buffer=0x805381028-0x805381fa0
> 14:02:37.566         mtx0x8053811a0  .Mutex created
> 14:02:37.566         mtx0x805381340  .Mutex created
> 14:02:37.566         mtx0x8053814e0  .Mutex created
> 14:02:37.566         mtx0x805381680  .Mutex created
> 14:02:37.566         mtx0x805381820  .Mutex created
> 14:02:37.566         mtx0x8053819c0  .Mutex created
> 14:02:37.566         mtx0x805381b60  .Mutex created
> 14:02:37.566         mtx0x805381d00  .Mutex created
> 14:02:37.566         mtx0x805381ea0  .Mutex created
> 14:02:37.566        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3478968, cap=3496096)
> 14:02:37.566        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3496096, cur.used=3478968
> 14:02:37.566        pept0x804c21000  . block created,
> buffer=0x805385028-0x805385fa0
> 14:02:37.566         mtx0x8053851a0  .Mutex created
> 14:02:37.566         mtx0x805385340  .Mutex created
> 14:02:37.566         mtx0x8053854e0  .Mutex created
> 14:02:37.566         mtx0x805385680  .Mutex created
> 14:02:37.566         mtx0x805385820  .Mutex created
> 14:02:37.566         mtx0x8053859c0  .Mutex created
> 14:02:37.567         mtx0x805385b60  .Mutex created
> 14:02:37.567         mtx0x805385d00  .Mutex created
> 14:02:37.567         mtx0x805385ea0  .Mutex created
> 14:02:37.567        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3482752, cap=3500096)
> 14:02:37.567        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3500096, cur.used=3482752
> 14:02:37.567        pept0x804c21000  . block created,
> buffer=0x805386028-0x805386fa0
> 14:02:37.567         mtx0x8053861a0  .Mutex created
> 14:02:37.567         mtx0x805386340  .Mutex created
> 14:02:37.567         mtx0x8053864e0  .Mutex created
> 14:02:37.567         mtx0x805386680  .Mutex created
> 14:02:37.567         mtx0x805386820  .Mutex created
> 14:02:37.567         mtx0x8053869c0  .Mutex created
> 14:02:37.567         mtx0x805386b60  .Mutex created
> 14:02:37.567         mtx0x805386d00  .Mutex created
> 14:02:37.567         mtx0x805386ea0  .Mutex created
> 14:02:37.567        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3486536, cap=3504096)
> 14:02:37.567        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3504096, cur.used=3486536
> 14:02:37.567        pept0x804c21000  . block created,
> buffer=0x805387028-0x805387fa0
> 14:02:37.567         mtx0x8053871a0  .Mutex created
> 14:02:37.567         mtx0x805387340  .Mutex created
> 14:02:37.567         mtx0x8053874e0  .Mutex created
> 14:02:37.567         mtx0x805387680  .Mutex created
> 14:02:37.567         mtx0x805387820  .Mutex created
> 14:02:37.567         mtx0x8053879c0  .Mutex created
> 14:02:37.567         mtx0x805387b60  .Mutex created
> 14:02:37.567         mtx0x805387d00  .Mutex created
> 14:02:37.567         mtx0x805387ea0  .Mutex created
> 14:02:37.567        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3490320, cap=3508096)
> 14:02:37.567        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3508096, cur.used=3490320
> 14:02:37.567        pept0x804c21000  . block created,
> buffer=0x805388028-0x805388fa0
> 14:02:37.567         mtx0x8053881a0  .Mutex created
> 14:02:37.567         mtx0x805388340  .Mutex created
> 14:02:37.567         mtx0x8053884e0  .Mutex created
> 14:02:37.567         mtx0x805388680  .Mutex created
> 14:02:37.567         mtx0x805388820  .Mutex created
> 14:02:37.567         mtx0x8053889c0  .Mutex created
> 14:02:37.568         mtx0x805388b60  .Mutex created
> 14:02:37.568         mtx0x805388d00  .Mutex created
> 14:02:37.568         mtx0x805388ea0  .Mutex created
> 14:02:37.568        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3494104, cap=3512096)
> 14:02:37.568        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3512096, cur.used=3494104
> 14:02:37.568        pept0x804c21000  . block created,
> buffer=0x805389028-0x805389fa0
> 14:02:37.568         mtx0x8053891a0  .Mutex created
> 14:02:37.568         mtx0x805389340  .Mutex created
> 14:02:37.568         mtx0x8053894e0  .Mutex created
> 14:02:37.568         mtx0x805389680  .Mutex created
> 14:02:37.568         mtx0x805389820  .Mutex created
> 14:02:37.568         mtx0x8053899c0  .Mutex created
> 14:02:37.568         mtx0x805389b60  .Mutex created
> 14:02:37.568         mtx0x805389d00  .Mutex created
> 14:02:37.568         mtx0x805389ea0  .Mutex created
> 14:02:37.568        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3497888, cap=3516096)
> 14:02:37.568        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3516096, cur.used=3497888
> 14:02:37.568        pept0x804c21000  . block created,
> buffer=0x80538a028-0x80538afa0
> 14:02:37.568         mtx0x80538a1a0  .Mutex created
> 14:02:37.568         mtx0x80538a340  .Mutex created
> 14:02:37.568         mtx0x80538a4e0  .Mutex created
> 14:02:37.568         mtx0x80538a680  .Mutex created
> 14:02:37.568         mtx0x80538a820  .Mutex created
> 14:02:37.568         mtx0x80538a9c0  .Mutex created
> 14:02:37.568         mtx0x80538ab60  .Mutex created
> 14:02:37.568         mtx0x80538ad00  .Mutex created
> 14:02:37.568         mtx0x80538aea0  .Mutex created
> 14:02:37.568        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3501672, cap=3520096)
> 14:02:37.568        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3520096, cur.used=3501672
> 14:02:37.568        pept0x804c21000  . block created,
> buffer=0x80538b028-0x80538bfa0
> 14:02:37.568         mtx0x80538b1a0  .Mutex created
> 14:02:37.569         mtx0x80538b340  .Mutex created
> 14:02:37.569         mtx0x80538b4e0  .Mutex created
> 14:02:37.569         mtx0x80538b680  .Mutex created
> 14:02:37.569         mtx0x80538b820  .Mutex created
> 14:02:37.569         mtx0x80538b9c0  .Mutex created
> 14:02:37.569         mtx0x80538bb60  .Mutex created
> 14:02:37.569         mtx0x80538bd00  .Mutex created
> 14:02:37.569         mtx0x80538bea0  .Mutex created
> 14:02:37.569        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3505456, cap=3524096)
> 14:02:37.569        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3524096, cur.used=3505456
> 14:02:37.569        pept0x804c21000  . block created,
> buffer=0x80538c028-0x80538cfa0
> 14:02:37.569         mtx0x80538c1a0  .Mutex created
> 14:02:37.569         mtx0x80538c340  .Mutex created
> 14:02:37.569         mtx0x80538c4e0  .Mutex created
> 14:02:37.569         mtx0x80538c680  .Mutex created
> 14:02:37.569         mtx0x80538c820  .Mutex created
> 14:02:37.569         mtx0x80538c9c0  .Mutex created
> 14:02:37.569         mtx0x80538cb60  .Mutex created
> 14:02:37.569         mtx0x80538cd00  .Mutex created
> 14:02:37.569         mtx0x80538cea0  .Mutex created
> 14:02:37.569        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3509240, cap=3528096)
> 14:02:37.569        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3528096, cur.used=3509240
> 14:02:37.569        pept0x804c21000  . block created,
> buffer=0x80538d028-0x80538dfa0
> 14:02:37.569         mtx0x80538d1a0  .Mutex created
> 14:02:37.569         mtx0x80538d340  .Mutex created
> 14:02:37.569         mtx0x80538d4e0  .Mutex created
> 14:02:37.569         mtx0x80538d680  .Mutex created
> 14:02:37.569         mtx0x80538d820  .Mutex created
> 14:02:37.569         mtx0x80538d9c0  .Mutex created
> 14:02:37.569         mtx0x80538db60  .Mutex created
> 14:02:37.569         mtx0x80538dd00  .Mutex created
> 14:02:37.569         mtx0x80538dea0  .Mutex created
> 14:02:37.569        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3513024, cap=3532096)
> 14:02:37.569        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3532096, cur.used=3513024
> 14:02:37.570        pept0x804c21000  . block created,
> buffer=0x80538e028-0x80538efa0
> 14:02:37.570         mtx0x80538e1a0  .Mutex created
> 14:02:37.570         mtx0x80538e340  .Mutex created
> 14:02:37.570         mtx0x80538e4e0  .Mutex created
> 14:02:37.570         mtx0x80538e680  .Mutex created
> 14:02:37.570         mtx0x80538e820  .Mutex created
> 14:02:37.570         mtx0x80538e9c0  .Mutex created
> 14:02:37.570         mtx0x80538eb60  .Mutex created
> 14:02:37.570         mtx0x80538ed00  .Mutex created
> 14:02:37.570         mtx0x80538eea0  .Mutex created
> 14:02:37.570        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3516808, cap=3536096)
> 14:02:37.570        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3536096, cur.used=3516808
> 14:02:37.570        pept0x804c21000  . block created,
> buffer=0x805392028-0x805392fa0
> 14:02:37.570         mtx0x8053921a0  .Mutex created
> 14:02:37.570         mtx0x805392340  .Mutex created
> 14:02:37.570         mtx0x8053924e0  .Mutex created
> 14:02:37.570         mtx0x805392680  .Mutex created
> 14:02:37.570         mtx0x805392820  .Mutex created
> 14:02:37.570         mtx0x8053929c0  .Mutex created
> 14:02:37.570         mtx0x805392b60  .Mutex created
> 14:02:37.570         mtx0x805392d00  .Mutex created
> 14:02:37.570         mtx0x805392ea0  .Mutex created
> 14:02:37.570        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3520592, cap=3540096)
> 14:02:37.570        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3540096, cur.used=3520592
> 14:02:37.570        pept0x804c21000  . block created,
> buffer=0x805393028-0x805393fa0
> 14:02:37.570         mtx0x8053931a0  .Mutex created
> 14:02:37.570         mtx0x805393340  .Mutex created
> 14:02:37.570         mtx0x8053934e0  .Mutex created
> 14:02:37.570         mtx0x805393680  .Mutex created
> 14:02:37.570         mtx0x805393820  .Mutex created
> 14:02:37.570         mtx0x8053939c0  .Mutex created
> 14:02:37.570         mtx0x805393b60  .Mutex created
> 14:02:37.570         mtx0x805393d00  .Mutex created
> 14:02:37.570         mtx0x805393ea0  .Mutex created
> 14:02:37.570        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3524376, cap=3544096)
> 14:02:37.570        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3544096, cur.used=3524376
> 14:02:37.570        pept0x804c21000  . block created,
> buffer=0x805394028-0x805394fa0
> 14:02:37.570         mtx0x8053941a0  .Mutex created
> 14:02:37.570         mtx0x805394340  .Mutex created
> 14:02:37.570         mtx0x8053944e0  .Mutex created
> 14:02:37.570         mtx0x805394680  .Mutex created
> 14:02:37.570         mtx0x805394820  .Mutex created
> 14:02:37.571         mtx0x8053949c0  .Mutex created
> 14:02:37.571         mtx0x805394b60  .Mutex created
> 14:02:37.571         mtx0x805394d00  .Mutex created
> 14:02:37.571         mtx0x805394ea0  .Mutex created
> 14:02:37.571        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3528160, cap=3548096)
> 14:02:37.571        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3548096, cur.used=3528160
> 14:02:37.571        pept0x804c21000  . block created,
> buffer=0x805395028-0x805395fa0
> 14:02:37.571         mtx0x8053951a0  .Mutex created
> 14:02:37.571         mtx0x805395340  .Mutex created
> 14:02:37.571         mtx0x8053954e0  .Mutex created
> 14:02:37.571         mtx0x805395680  .Mutex created
> 14:02:37.571         mtx0x805395820  .Mutex created
> 14:02:37.571         mtx0x8053959c0  .Mutex created
> 14:02:37.571         mtx0x805395b60  .Mutex created
> 14:02:37.571         mtx0x805395d00  .Mutex created
> 14:02:37.571         mtx0x805395ea0  .Mutex created
> 14:02:37.571        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3531944, cap=3552096)
> 14:02:37.571        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3552096, cur.used=3531944
> 14:02:37.571        pept0x804c21000  . block created,
> buffer=0x805396028-0x805396fa0
> 14:02:37.571         mtx0x8053961a0  .Mutex created
> 14:02:37.571         mtx0x805396340  .Mutex created
> 14:02:37.571         mtx0x8053964e0  .Mutex created
> 14:02:37.571         mtx0x805396680  .Mutex created
> 14:02:37.572         mtx0x805396820  .Mutex created
> 14:02:37.572         mtx0x8053969c0  .Mutex created
> 14:02:37.572         mtx0x805396b60  .Mutex created
> 14:02:37.572         mtx0x805396d00  .Mutex created
> 14:02:37.572         mtx0x805396ea0  .Mutex created
> 14:02:37.572        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3535728, cap=3556096)
> 14:02:37.572        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3556096, cur.used=3535728
> 14:02:37.572        pept0x804c21000  . block created,
> buffer=0x805397028-0x805397fa0
> 14:02:37.572         mtx0x8053971a0  .Mutex created
> 14:02:37.572         mtx0x805397340  .Mutex created
> 14:02:37.572         mtx0x8053974e0  .Mutex created
> 14:02:37.572         mtx0x805397680  .Mutex created
> 14:02:37.572         mtx0x805397820  .Mutex created
> 14:02:37.572         mtx0x8053979c0  .Mutex created
> 14:02:37.572         mtx0x805397b60  .Mutex created
> 14:02:37.572         mtx0x805397d00  .Mutex created
> 14:02:37.572         mtx0x805397ea0  .Mutex created
> 14:02:37.572        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3539512, cap=3560096)
> 14:02:37.572        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3560096, cur.used=3539512
> 14:02:37.572        pept0x804c21000  . block created,
> buffer=0x805398028-0x805398fa0
> 14:02:37.572         mtx0x8053981a0  .Mutex created
> 14:02:37.572         mtx0x805398340  .Mutex created
> 14:02:37.572         mtx0x8053984e0  .Mutex created
> 14:02:37.572         mtx0x805398680  .Mutex created
> 14:02:37.572         mtx0x805398820  .Mutex created
> 14:02:37.572         mtx0x8053989c0  .Mutex created
> 14:02:37.572         mtx0x805398b60  .Mutex created
> 14:02:37.572         mtx0x805398d00  .Mutex created
> 14:02:37.572         mtx0x805398ea0  .Mutex created
> 14:02:37.572        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3543296, cap=3564096)
> 14:02:37.572        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3564096, cur.used=3543296
> 14:02:37.572        pept0x804c21000  . block created,
> buffer=0x805399028-0x805399fa0
> 14:02:37.572         mtx0x8053991a0  .Mutex created
> 14:02:37.572         mtx0x805399340  .Mutex created
> 14:02:37.572         mtx0x8053994e0  .Mutex created
> 14:02:37.572         mtx0x805399680  .Mutex created
> 14:02:37.572         mtx0x805399820  .Mutex created
> 14:02:37.572         mtx0x8053999c0  .Mutex created
> 14:02:37.572         mtx0x805399b60  .Mutex created
> 14:02:37.572         mtx0x805399d00  .Mutex created
> 14:02:37.572         mtx0x805399ea0  .Mutex created
> 14:02:37.573        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3547080, cap=3568096)
> 14:02:37.573        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3568096, cur.used=3547080
> 14:02:37.573        pept0x804c21000  . block created,
> buffer=0x80539a028-0x80539afa0
> 14:02:37.573         mtx0x80539a1a0  .Mutex created
> 14:02:37.573         mtx0x80539a340  .Mutex created
> 14:02:37.573         mtx0x80539a4e0  .Mutex created
> 14:02:37.573         mtx0x80539a680  .Mutex created
> 14:02:37.573         mtx0x80539a820  .Mutex created
> 14:02:37.573         mtx0x80539a9c0  .Mutex created
> 14:02:37.573         mtx0x80539ab60  .Mutex created
> 14:02:37.573         mtx0x80539ad00  .Mutex created
> 14:02:37.573         mtx0x80539aea0  .Mutex created
> 14:02:37.573        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3550864, cap=3572096)
> 14:02:37.573        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3572096, cur.used=3550864
> 14:02:37.573        pept0x804c21000  . block created,
> buffer=0x80539b028-0x80539bfa0
> 14:02:37.573         mtx0x80539b1a0  .Mutex created
> 14:02:37.573         mtx0x80539b340  .Mutex created
> 14:02:37.573         mtx0x80539b4e0  .Mutex created
> 14:02:37.573         mtx0x80539b680  .Mutex created
> 14:02:37.573         mtx0x80539b820  .Mutex created
> 14:02:37.573         mtx0x80539b9c0  .Mutex created
> 14:02:37.573         mtx0x80539bb60  .Mutex created
> 14:02:37.573         mtx0x80539bd00  .Mutex created
> 14:02:37.573         mtx0x80539bea0  .Mutex created
> 14:02:37.573        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3554648, cap=3576096)
> 14:02:37.573        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3576096, cur.used=3554648
> 14:02:37.573        pept0x804c21000  . block created,
> buffer=0x80539c028-0x80539cfa0
> 14:02:37.574         mtx0x80539c1a0  .Mutex created
> 14:02:37.574         mtx0x80539c340  .Mutex created
> 14:02:37.574         mtx0x80539c4e0  .Mutex created
> 14:02:37.574         mtx0x80539c680  .Mutex created
> 14:02:37.574         mtx0x80539c820  .Mutex created
> 14:02:37.574         mtx0x80539c9c0  .Mutex created
> 14:02:37.574         mtx0x80539cb60  .Mutex created
> 14:02:37.574         mtx0x80539cd00  .Mutex created
> 14:02:37.574         mtx0x80539cea0  .Mutex created
> 14:02:37.574        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3558432, cap=3580096)
> 14:02:37.574        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3580096, cur.used=3558432
> 14:02:37.574        pept0x804c21000  . block created,
> buffer=0x80539d028-0x80539dfa0
> 14:02:37.574         mtx0x80539d1a0  .Mutex created
> 14:02:37.574         mtx0x80539d340  .Mutex created
> 14:02:37.574         mtx0x80539d4e0  .Mutex created
> 14:02:37.574         mtx0x80539d680  .Mutex created
> 14:02:37.574         mtx0x80539d820  .Mutex created
> 14:02:37.574         mtx0x80539d9c0  .Mutex created
> 14:02:37.574         mtx0x80539db60  .Mutex created
> 14:02:37.574         mtx0x80539dd00  .Mutex created
> 14:02:37.574         mtx0x80539dea0  .Mutex created
> 14:02:37.574        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3562216, cap=3584096)
> 14:02:37.574        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3584096, cur.used=3562216
> 14:02:37.574        pept0x804c21000  . block created,
> buffer=0x80539e028-0x80539efa0
> 14:02:37.574         mtx0x80539e1a0  .Mutex created
> 14:02:37.574         mtx0x80539e340  .Mutex created
> 14:02:37.574         mtx0x80539e4e0  .Mutex created
> 14:02:37.574         mtx0x80539e680  .Mutex created
> 14:02:37.574         mtx0x80539e820  .Mutex created
> 14:02:37.574         mtx0x80539e9c0  .Mutex created
> 14:02:37.574         mtx0x80539eb60  .Mutex created
> 14:02:37.574         mtx0x80539ed00  .Mutex created
> 14:02:37.574         mtx0x80539eea0  .Mutex created
> 14:02:37.575        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3566000, cap=3588096)
> 14:02:37.575        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3588096, cur.used=3566000
> 14:02:37.575        pept0x804c21000  . block created,
> buffer=0x80539f028-0x80539ffa0
> 14:02:37.575         mtx0x80539f1a0  .Mutex created
> 14:02:37.575         mtx0x80539f340  .Mutex created
> 14:02:37.575         mtx0x80539f4e0  .Mutex created
> 14:02:37.575         mtx0x80539f680  .Mutex created
> 14:02:37.575         mtx0x80539f820  .Mutex created
> 14:02:37.575         mtx0x80539f9c0  .Mutex created
> 14:02:37.575         mtx0x80539fb60  .Mutex created
> 14:02:37.575         mtx0x80539fd00  .Mutex created
> 14:02:37.575         mtx0x80539fea0  .Mutex created
> 14:02:37.575        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3569784, cap=3592096)
> 14:02:37.575        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3592096, cur.used=3569784
> 14:02:37.575        pept0x804c21000  . block created,
> buffer=0x8053a0028-0x8053a0fa0
> 14:02:37.575         mtx0x8053a01a0  .Mutex created
> 14:02:37.575         mtx0x8053a0340  .Mutex created
> 14:02:37.575         mtx0x8053a04e0  .Mutex created
> 14:02:37.575         mtx0x8053a0680  .Mutex created
> 14:02:37.575         mtx0x8053a0820  .Mutex created
> 14:02:37.575         mtx0x8053a09c0  .Mutex created
> 14:02:37.575         mtx0x8053a0b60  .Mutex created
> 14:02:37.575         mtx0x8053a0d00  .Mutex created
> 14:02:37.575         mtx0x8053a0ea0  .Mutex created
> 14:02:37.575        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3573568, cap=3596096)
> 14:02:37.575        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3596096, cur.used=3573568
> 14:02:37.575        pept0x804c21000  . block created,
> buffer=0x8053a1028-0x8053a1fa0
> 14:02:37.575         mtx0x8053a11a0  .Mutex created
> 14:02:37.575         mtx0x8053a1340  .Mutex created
> 14:02:37.575         mtx0x8053a14e0  .Mutex created
> 14:02:37.575         mtx0x8053a1680  .Mutex created
> 14:02:37.575         mtx0x8053a1820  .Mutex created
> 14:02:37.575         mtx0x8053a19c0  .Mutex created
> 14:02:37.576         mtx0x8053a1b60  .Mutex created
> 14:02:37.576         mtx0x8053a1d00  .Mutex created
> 14:02:37.576         mtx0x8053a1ea0  .Mutex created
> 14:02:37.576        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3577352, cap=3600096)
> 14:02:37.576        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3600096, cur.used=3577352
> 14:02:37.576        pept0x804c21000  . block created,
> buffer=0x8053a2028-0x8053a2fa0
> 14:02:37.576         mtx0x8053a21a0  .Mutex created
> 14:02:37.576         mtx0x8053a2340  .Mutex created
> 14:02:37.576         mtx0x8053a24e0  .Mutex created
> 14:02:37.576         mtx0x8053a2680  .Mutex created
> 14:02:37.576         mtx0x8053a2820  .Mutex created
> 14:02:37.576         mtx0x8053a29c0  .Mutex created
> 14:02:37.576         mtx0x8053a2b60  .Mutex created
> 14:02:37.576         mtx0x8053a2d00  .Mutex created
> 14:02:37.576         mtx0x8053a2ea0  .Mutex created
> 14:02:37.576        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3581136, cap=3604096)
> 14:02:37.576        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3604096, cur.used=3581136
> 14:02:37.576        pept0x804c21000  . block created,
> buffer=0x8053a3028-0x8053a3fa0
> 14:02:37.576         mtx0x8053a31a0  .Mutex created
> 14:02:37.576         mtx0x8053a3340  .Mutex created
> 14:02:37.576         mtx0x8053a34e0  .Mutex created
> 14:02:37.576         mtx0x8053a3680  .Mutex created
> 14:02:37.576         mtx0x8053a3820  .Mutex created
> 14:02:37.576         mtx0x8053a39c0  .Mutex created
> 14:02:37.576         mtx0x8053a3b60  .Mutex created
> 14:02:37.576         mtx0x8053a3d00  .Mutex created
> 14:02:37.576         mtx0x8053a3ea0  .Mutex created
> 14:02:37.576        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3584920, cap=3608096)
> 14:02:37.576        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3608096, cur.used=3584920
> 14:02:37.576        pept0x804c21000  . block created,
> buffer=0x8053a4028-0x8053a4fa0
> 14:02:37.576         mtx0x8053a41a0  .Mutex created
> 14:02:37.576         mtx0x8053a4340  .Mutex created
> 14:02:37.577         mtx0x8053a44e0  .Mutex created
> 14:02:37.577         mtx0x8053a4680  .Mutex created
> 14:02:37.577         mtx0x8053a4820  .Mutex created
> 14:02:37.577         mtx0x8053a49c0  .Mutex created
> 14:02:37.577         mtx0x8053a4b60  .Mutex created
> 14:02:37.577         mtx0x8053a4d00  .Mutex created
> 14:02:37.577         mtx0x8053a4ea0  .Mutex created
> 14:02:37.577        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3588704, cap=3612096)
> 14:02:37.577        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3612096, cur.used=3588704
> 14:02:37.577        pept0x804c21000  . block created,
> buffer=0x8053a5028-0x8053a5fa0
> 14:02:37.577         mtx0x8053a51a0  .Mutex created
> 14:02:37.577         mtx0x8053a5340  .Mutex created
> 14:02:37.577         mtx0x8053a54e0  .Mutex created
> 14:02:37.577         mtx0x8053a5680  .Mutex created
> 14:02:37.577         mtx0x8053a5820  .Mutex created
> 14:02:37.577         mtx0x8053a59c0  .Mutex created
> 14:02:37.577         mtx0x8053a5b60  .Mutex created
> 14:02:37.577         mtx0x8053a5d00  .Mutex created
> 14:02:37.577         mtx0x8053a5ea0  .Mutex created
> 14:02:37.577        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3592488, cap=3616096)
> 14:02:37.577        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3616096, cur.used=3592488
> 14:02:37.577        pept0x804c21000  . block created,
> buffer=0x8053a9028-0x8053a9fa0
> 14:02:37.577         mtx0x8053a91a0  .Mutex created
> 14:02:37.577         mtx0x8053a9340  .Mutex created
> 14:02:37.577         mtx0x8053a94e0  .Mutex created
> 14:02:37.577         mtx0x8053a9680  .Mutex created
> 14:02:37.577         mtx0x8053a9820  .Mutex created
> 14:02:37.577         mtx0x8053a99c0  .Mutex created
> 14:02:37.577         mtx0x8053a9b60  .Mutex created
> 14:02:37.577         mtx0x8053a9d00  .Mutex created
> 14:02:37.577         mtx0x8053a9ea0  .Mutex created
> 14:02:37.577        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3596272, cap=3620096)
> 14:02:37.578        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3620096, cur.used=3596272
> 14:02:37.578        pept0x804c21000  . block created,
> buffer=0x8053aa028-0x8053aafa0
> 14:02:37.578         mtx0x8053aa1a0  .Mutex created
> 14:02:37.578         mtx0x8053aa340  .Mutex created
> 14:02:37.578         mtx0x8053aa4e0  .Mutex created
> 14:02:37.578         mtx0x8053aa680  .Mutex created
> 14:02:37.578         mtx0x8053aa820  .Mutex created
> 14:02:37.578         mtx0x8053aa9c0  .Mutex created
> 14:02:37.578         mtx0x8053aab60  .Mutex created
> 14:02:37.578         mtx0x8053aad00  .Mutex created
> 14:02:37.578         mtx0x8053aaea0  .Mutex created
> 14:02:37.578        pept0x804c21000  .336 bytes requested, resizing
> pool by 4000 bytes (used=3600056, cap=3624096)
> 14:02:37.578        pept0x804c21000  .create_block(sz=4000),
> cur.cap=3624096, cur.used=3600056
> 14:02:37.578        pept0x804c21000  . block created,
> buffer=0x8053ab028-0x8053abfa0
> 14:02:37.578         mtx0x8053ab1a0  .Mutex created
> 14:02:37.578         mtx0x8053ab340  .Mutex created
> 14:02:37.578         mtx0x8053ab4e0  .Mutex created
> 14:02:37.578         mtx0x8053ab680  .Mutex created
> 14:02:37.578         mtx0x8053ab820  .Mutex created
> 14:02:37.578         mtx0x8053ab9c0  .Mutex created
> 14:02:37.578         mtx0x8053abb60  .Mutex created
> 14:02:37.578         ioq0x8053abbb0  .Mutex created
> 14:02:37.578                  pjlib  .select() I/O Queue created
> (0x804c529e8)
> 14:02:37.578         sip_endpoint.c  .Module "mod-msg-print" registered
> 14:02:37.578            cachingpool  .Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.578            cachingpool  .Mutex acquired by thread
> thr0x804c16000
> 14:02:37.578                  tpmgr  .pool created, size=256
> 14:02:37.579            cachingpool  .Mutex released by thread
> thr0x804c16000
> 14:02:37.579                  tpmgr  .2600 bytes requested, resizing
> pool by 2688 bytes (used=168, cap=256)
> 14:02:37.579                  tpmgr  .create_block(sz=2688),
> cur.cap=256, cur.used=168
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x8053b4028-0x8053b4a80
> 14:02:37.579                hashtbl  .hash table 0x8053b4a50 created
> from pool tpmgr
> 14:02:37.579                  tpmgr  .256 bytes requested, resizing
> pool by 320 bytes (used=2840, cap=2944)
> 14:02:37.579                  tpmgr  .create_block(sz=320),
> cur.cap=2944, cur.used=2840
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c47168-0x804c47280
> 14:02:37.579        tmgr0x8053b30d0  .Mutex created
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3216, cap=3264)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3264, cur.used=3216
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f628-0x804c3f680
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3312, cap=3392)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3392, cur.used=3312
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f6a8-0x804c3f700
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3408, cap=3520)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3520, cur.used=3408
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f728-0x804c3f780
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3504, cap=3648)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3648, cur.used=3504
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f7a8-0x804c3f800
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3600, cap=3776)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3776, cur.used=3600
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f828-0x804c3f880
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3696, cap=3904)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=3904, cur.used=3696
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f8a8-0x804c3f900
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3792, cap=4032)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4032, cur.used=3792
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f928-0x804c3f980
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3888, cap=4160)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4160, cur.used=3888
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3f9a8-0x804c3fa00
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=3984, cap=4288)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4288, cur.used=3984
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fa28-0x804c3fa80
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4080, cap=4416)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4416, cur.used=4080
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3faa8-0x804c3fb00
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4176, cap=4544)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4544, cur.used=4176
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fb28-0x804c3fb80
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4272, cap=4672)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4672, cur.used=4272
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fba8-0x804c3fc00
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4368, cap=4800)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4800, cur.used=4368
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fc28-0x804c3fc80
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4464, cap=4928)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=4928, cur.used=4464
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fca8-0x804c3fd00
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4560, cap=5056)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=5056, cur.used=4560
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fd28-0x804c3fd80
> 14:02:37.579                  tpmgr  .56 bytes requested, resizing
> pool by 128 bytes (used=4656, cap=5184)
> 14:02:37.579                  tpmgr  .create_block(sz=128),
> cur.cap=5184, cur.used=4656
> 14:02:37.579                  tpmgr  . block created,
> buffer=0x804c3fda8-0x804c3fe00
> 14:02:37.579        sip_transport.c  .Transport manager created.
> 14:02:37.579            pjsua_timer  .Mutex created
> 14:02:37.579           pjsua_core.c  .PJSUA state changed: NULL -->
> CREATED
> 14:02:37.580            cachingpool  Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.580            cachingpool  Mutex acquired by thread
> thr0x804c16000
> 14:02:37.580              pjsua-app  pool created, size=1024
> 14:02:37.580            cachingpool  Mutex released by thread
> thr0x804c16000
> 14:02:37.580            cachingpool  Mutex: thread thr0x804c16000 is
> waiting
> 14:02:37.580            cachingpool  Mutex acquired by thread
> thr0x804c16000
> 14:02:37.580              tmp-pjsua  pool created, size=1024
> 14:02:37.580            cachingpool  Mutex released by thread
> thr0x804c16000
> >>>>
> Account list:
>   [ 0] <sip:192.168.1.22:5060>: does not register
>        Online status: Online
>  *[ 1] <sip:192.168.1.22:5060;transport=TCP>: does not register
>        Online status: Online
> Buddy list:
>  -none-
>
> +=============================================================================+
> |       Call Commands:         |   Buddy, IM & Presence: |    
> Account:      |
> |                              | |                   |
> |  m  Make new call            | +b  Add new buddy       .| +a Add new
> accnt |
> |  M  Make multiple calls      | -b  Delete buddy         | -a Delete
> accnt. |
> |  a  Answer call              |  i  Send IM              | !a Modify
> accnt. |
> |  h  Hangup call  (ha=all)    |  s  Subscribe presence   | rr
> (Re-)register |
> |  H  Hold call                |  u  Unsubscribe presence | ru
> Unregister    |
> |  v  re-inVite (release hold) |  t  ToGgle Online status | >  Cycle
> next ac.|
> |  U  send UPDATE              |  T  Set online status    | <  Cycle
> prev ac.|
> | ],[ Select next/prev call
> +--------------------------+-------------------+
> |  x  Xfer call                |      Media Commands:     | Status &
> Config: |
> |  X  Xfer with Replaces       | |                   |
> |  #  Send RFC 2833 DTMF       | cl  List ports           |  d Dump
> status   |
> |  *  Send DTMF with INFO      | cc  Connect port         | dd Dump
> detailed |
> | dq  Dump curr. call quality  | cd  Disconnect port      | dc Dump
> config   |
> |                              |  V  Adjust audio Volume  |  f Save
> config   |
> |  S  Send arbitrary REQUEST   | Cp  Codec priorities
> |                   |
> +-----------------------------------------------------------------------------+
> |  q  QUIT   L  ReLoad   sleep MS   echo [0|1|txt]     n: detect NAT
> type     |
> +=============================================================================+
> You have 0 active call
> >>>


_______________________________________________
Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@xxxxxxxxxxxxxxx
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org

_______________________________________________
Visit our blog: http://blog.pjsip.org

pjsip mailing list
pjsip@xxxxxxxxxxxxxxx
http://lists.pjsip.org/mailman/listinfo/pjsip_lists.pjsip.org





[Index of Archives]     [Asterisk Users]     [Asterisk App Development]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [Linux API]
  Powered by Linux