jemalloc-devel-4.0.3-4.1>t  DH`pX1S/=„faՑT4D,.sҹA P=-^j[XX)Oa"^? ]$ӿF!w0X =IxL3Y]!+/kjtLXYWB ugi^ %5jOM[UX #iM Tk\f|#kde($v;Ƒs88)P)MQw/X2hdK/' Byp%30fc1255d7cca16d2b4da5704ce33cc30be37dd11rX1S/=„ #WGTԜV0e1VMu\E[fXLCoWd( ByznyjA,ZYTb"A>@=% -Djl~ ΀{)X{VEm>|nlЊ 8.' |Mê]F~Pҁ`ؙc iy5{0 ǽFzI/izU4-2.a*y;lZL maᲥpۣ$qCM.4>:!d?!Td  : %+4D L T d   \p(89D:GFGHIXY\P]`^bc _d e f l u v w!x!,y!<z!DCjemalloc-devel4.0.34.1Development files for jemallocHeaders for jemalloc, general-purpose scalable concurrent malloc(3) implementation.X1@cloud1341openSUSE Leap 42.3openSUSEBSD-2-Clausehttp://bugs.opensuse.orgDevelopment/Libraries/C and C++http://canonware.com/jemalloc/linuxx86_640[A큤X1X1X1X188c091c22158742469f33a1886f88e7eb38463001384e28854742cdcb2b0b8cflibjemalloc.so.2rootrootrootrootrootrootrootrootjemalloc-4.0.3-4.1.src.rpmjemalloc-develjemalloc-devel(x86-64)pkgconfig(jemalloc)@   /usr/bin/pkg-configlibjemalloc2rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)4.0.33.0.4-14.0-14.4.6-14.11.2V7@S9XS9XS @R@RURfhQyQ(@Q8@Q"@PPE@NN@idonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comidonmez@suse.comjengelh@inai.dejengelh@inai.detony@daylessday.orgtony@daylessday.org- Update to version 4.0.3 * See included ChangeLog for complete changes.- Update to 3.6.0 * Fix a regression in arena_chunk_alloc() that caused crashes during small/large allocation if chunk allocation failed. * Fix backtracing for gcc intrinsics-based backtracing by specifying - fno-omit-frame-pointer to gcc. * Use dss allocation precedence for huge allocations as well as small/large allocations. * Testsuite fixes - Drop jemalloc-fix-backtracing.patch, merged upstream.- Enable profiling - Add jemalloc-fix-backtracing.patch to fix profiling tests on x86 (the failures were triggered due to profiling support.)- Update to version 3.5.1 * Fix junk filling for mremap(2)-based huge reallocation. * Unit test fixes - Remove jemalloc-fix-32bit-tests.patch, fixed upstream.- Add jemalloc-fix-32bit-tests.patch to fix test failures on i586- Update to version 3.5.0 * Add the *allocx() API, which is a successor to the experimental *allocm() API. The *allocx() functions are slightly simpler to use because they have fewer parameters, they directly return the results of primary interest, and mallocx()/rallocx() avoid the strict aliasing pitfall that allocm()/rallocx() share with posix_memalign(). Note that *allocm() is slated for removal in the next non-bugfix release. * Add support for LinuxThreads. * Unless heap profiling is enabled, disable floating point code and don't link with libm. This, in combination with e.g. EXTRA_CFLAGS=-mno-sse on x64 systems, makes it possible to completely disable floating point register use. Some versions of glibc neglect to save/restore caller-saved floating point registers during dynamic lazy symbol loading, and the symbol loading code uses whatever malloc the application happens to have linked/loaded with, the result being potential floating point register corruption. * Report ENOMEM rather than EINVAL if an OOM occurs during heap profiling backtrace creation in imemalign(). This bug impacted posix_memalign() and aligned_alloc(). * Fix a file descriptor leak in a prof_dump_maps() error path. * Fix prof_dump() to close the dump file descriptor for all relevant error paths. * Fix rallocm() to use the arena specified by the ALLOCM_ARENA(s) flag for allocation, not just deallocation. * Fix a data race for large allocation stats counters. * Fix a potential infinite loop during thread exit. This bug occurred on Solaris, and could affect other platforms with similar pthreads TSD implementations. * Don't junk-fill reallocations unless usable size changes. This fixes a violation of the *allocx()/*allocm() semantics. * Fix growing large reallocation to junk fill new space. * Fix huge deallocation to junk fill when munmap is disabled. * Change the default private namespace prefix from empty to je_, and change - -with-private-namespace-prefix so that it prepends an additional prefix rather than replacing je_. This reduces the likelihood of applications which statically link jemalloc experiencing symbol name collisions. * Add missing private namespace mangling (relevant when - -with-private-namespace is specified). * Add and use JEMALLOC_INLINE_C so that static inline functions are marked as static even for debug builds. * Add a missing mutex unlock in a malloc_init_hard() error path. In practice this error path is never executed. * Fix numerous bugs in malloc_strotumax() error handling/reporting. These bugs had no impact except for malformed inputs. * Fix numerous bugs in malloc_snprintf(). These bugs were not exercised by existing calls, so they had no impact.- Update to version 3.4.1 * Fix a race in the "arenas.extend" mallctl that could cause memory corruption of internal data structures and subsequent crashes. * Fix Valgrind integration flaws that caused Valgrind warnings about reads of uninitialized memory in: + arena chunk headers + internal zero-initialized data structures * Preserve errno during the first allocation. A readlink(2) call during initialization fails unless /etc/malloc.conf exists, so errno was typically set during the first allocation prior to this fix. * Fix compilation warnings reported by gcc 4.8.1- Rename pprof to pprof-jemalloc to prevent conflict with gperftools- Update to version 3.4.0 * Support for aarch64 * Fix race-triggered deadlocks in chunk_record()- Update to version 3.3.1 * Fix a locking order bug that could cause deadlock during fork if heap profiling were enabled. * Fix a chunk recycling bug that could cause the allocator to lose track of whether a chunk was zeroed. * Fix TLS-related memory corruption that could occur during thread exit if the thread never allocated memory. Only the quarantine and prof facilities were susceptible. * Internal reallocation of the quarantined object array leaked the old array. * Reallocation failure for internal reallocation of the quarantined object array (very unlikely) resulted in memory corruption. * Fix Valgrind integration to annotate all internally allocated memory in a way that keeps Valgrind happy about internal data structure access. * Fix building for s390 systems. - Implement %check- Update to version 3.3.0 * Add clipping support to lg_chunk option processing. * Add the --enable-ivsalloc option. * Add the --without-export option. * Add the --disable-zone-allocator option. * Fix "arenas.extend" mallctl to output the number of arenas. * Fix chunk_recycyle() to unconditionally inform Valgrind that returned memory is undefined. * Fix build break on FreeBSD related to alloca.h.- Update to new upstream release 3.2.0 * Fix deadlock in the "arenas.purge" mallctl. - Update to new upstream release 3.1.0 * Auto-detect whether running inside Valgrind, thus removing the need to manually specify MALLOC_CONF=valgrind:true. * Disable tcache by default if running inside Valgrind, in order to avoid making unallocated objects appear reachable to Valgrind. * Fix heap profiling crash if sampled object is freed via realloc(p, 0).- Update to new upstream release 3.0.0 * Implement Valgrind support, redzones, and quarantine. * Add support for additional architectures: MIPS, SH4, Tilera * Add nallocm(), which rounds a request size up to the nearest size class without actually allocating. * Implement aligned_alloc() * Add the "thread.tcache.enabled" and "opt.prof_final" mallctls. * Update pprof (from gperftools 2.0). * (For more, see the ChangeLog file in this RPM package.)- Add a patch to generate jemalloc.sh during configure- Initial package (version 2.2.3) for build.opensuse.orgcloud134 14897769604.0.3-4.14.0.3-4.14.0.3-0-ge9192eacf8935e29fc62fddc2701f7942b1cc02cjemallocjemalloc.hlibjemalloc.sojemalloc.pc/usr/include//usr/include/jemalloc//usr/lib64//usr/lib64/pkgconfig/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/d8ea91a5d5ed7c546cd5a22ee7bafea6-jemalloccpiolzma5x86_64-suse-linuxdirectoryC source, ASCII textpkgconfig filePRar?`] crt:bLL' ͌#N;\x . >,9ƒ))\Tcoe飿8­>eҨd+ٿoVj ۅVAB [17ha~kZo5w{JA]6y=3 %Σ ~'o>FNϗJ~&*ރ$TB~> Śbt, D(C2- Y|ҝ8/lvϖV>Sa 9wDֺl>wJL9chSeLS;ٛBjOQp J, c`:qEQ(]VqɏDTd@Ӓ҄\ «Vm eKCD{ʷ3 +̯D?fyP"U}05%4=D᬴ 8*,;zW߱A[S4dƯ/nv Ia!~,5J /ŽnW8M_WS꒢T.F67fhlڢ-zOK 0-ٕHh-&Trߕ@z\2݄Ac~r1:|ƺh f5o,]g"j կH\7anysW@ ѣ /?~_,C :!]`GŐlĐeɓÏ?Py"g ~<Aq, *yw۱:}~Fvx<^c"و`@+7K;|dRc ǵ K4G&#CkI߯12 Jhy,AnqkImvo>5"5ZI[_9N:Ar\mv*_m\M f2VCޝSǍsxqٔz΍8rzTEj^EyEK低*@ՠ(𢡊GZIJ:ԄHR*IJh_B}+N"L(LUGiBN<SfndJk{ Ue'6d)j`K8X-GmA( 'S 33`΍E+} ,2z'r*N\N<=y^-]Q :`J@VtIQ|H@HCҳ} ,\ʎD`w_G̮fOOe<?+0t45Y%*0}vDʗd5q3N,hu.\H J4Un -o- 2v*h}T'z/X&E6ВF[0?KI)(eXqX45С