atomic-queue-devel-1.6.5-1.el10_0> 6 6_ ܉3!}Nbh&3م~Xf 3م~XtԐ=Fz}/΢CbhA2ru7T%1\ WgT4 EU =3\LJ>G|RE g~s }0Т[Pqۛi=_zm;۫L[No!퍡1Eo֙7 Xt=BV( {{dj@pO/3 3S(Nʷ^cv;){#Le+Xly<`' ӬF`/Om^:RKDӫ."1d9QTJOX[h#hU,*CjȏUs}W.uV}A09GdtU_2m-^<7X8Is#2[hSX0x{pa|$仵0bàt&Y$eS/qY, fTNĎ}EetIW0oFڜiR0t@M?+&!<$AjuRc9b05576ac45325d470249659d13946cbac31add672399af863b6dc1ea60ac3b91f051f92e36dbfda7085c27a326db8620073ee0^>>g^z (>;?d $ G         % N T \              4X (<8H9:G H I X Y\4 ]\ ^bzdeflt4 u\ v<@Catomic-queue-devel1.6.51.el10_0Development files for atomic-queueC++14 multiple-producer-multiple-consumer lockless queues based on circular buffer with std::atomic. It has been developed, tested and benchmarked on Linux, but should support any C++14 platforms which implement std::atomic. The main design principle these queues follow is minimalism: the bare minimum of atomic operations, fixed size buffer, value semantics. These qualities are also limitations: • The maximum queue size must be set at compile time or construction time. The circular buffer side-steps the memory reclamation problem inherent in linked-list based queues for the price of fixed buffer size. See Effective memory reclamation for lock-free data structures in C++ for more details. Fixed buffer size may not be that much of a limitation, since once the queue gets larger than the maximum expected size that indicates a problem that elements aren’t processed fast enough, and if the queue keeps growing it may eventually consume all available memory which may affect the entire system, rather than the problematic process only. The only apparent inconvenience is that one has to do an upfront back-of-the-envelope calculation on what would be the largest expected/acceptable queue size. • There are no OS-blocking push/pop functions. This queue is designed for ultra-low-latency scenarios and using an OS blocking primitive would be sacrificing push-to-pop latency. For lowest possible latency one cannot afford blocking in the OS kernel because the wake-up latency of a blocked thread is about 1-3 microseconds, whereas this queue’s round-trip time can be as low as 150 nanoseconds. Ultra-low-latency applications need just that and nothing more. The minimalism pays off, see the throughput and latency benchmarks. Available containers are: • AtomicQueue - a fixed size ring-buffer for atomic elements. • OptimistAtomicQueue - a faster fixed size ring-buffer for atomic elements which busy-waits when empty or full. • AtomicQueue2 - a fixed size ring-buffer for non-atomic elements. • OptimistAtomicQueue2 - a faster fixed size ring-buffer for non-atomic elements which busy-waits when empty or full. These containers have corresponding AtomicQueueB, OptimistAtomicQueueB, AtomicQueueB2, OptimistAtomicQueueB2 versions where the buffer size is specified as an argument to the constructor. Totally ordered mode is supported. In this mode consumers receive messages in the same FIFO order the messages were posted. This mode is supported for push and pop functions, but for not the try_ versions. On Intel x86 the totally ordered mode has 0 cost, as of 2019. Single-producer-single-consumer mode is supported. In this mode, no read-modify-write instructions are necessary, only the atomic loads and stores. That improves queue throughput significantly. Move-only queue element types are fully supported. For example, a queue of std::unique_ptr elements would be AtomicQueue2B> or AtomicQueue2, CAPACITY>. The atomic-queue-devel package contains libraries and header files for developing applications that use atomic-queue.fbuildvm-a64-30.iad2.fedoraproject.orgFedora ProjectFedora ProjectMITFedora ProjectUnspecifiedhttps://github.com/max0x7ba/atomic_queuelinuxnoarchc )bA1A큤A큤A큤fQOfQOfQOfQOfQOfQOfހfQOfހfQO8289d7486ecee77f0e95d2c527cd21cc57e1b17729c5b780c9e10d6251a4d8f17e7de2fdec4106ac66f8825daff6bdf841f567990c9007952faff42ab6355b5a112fdf338e9da19f510eb8ec1fa656d31a78f4677087f4ce8d0ea40f868acc34435d8d81336f9d721e9ab4de55ea34df5a5784ebda0e1839443b80e2fa9ed221b59cdcfa39502f5277a7664a503d7202e61549ebbad9db474d0269de2fdffe1977fcdb5232b9043219428815d99b796aa1c9a6656e4f08d77b2e4b40c6f9181722e4fce4f072000d810546875f26ad1e8b23fcb942fe0a00c85602eb3626c1bbrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootatomic-queue-1.6.5-1.el10_0.src.rpmatomic-queue-develatomic-queue-static    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsZstd)3.0.4-14.6.0-14.0-15.4.18-14.19.1.1f@fIf@eee̫@eXed@eV@d@d)n@c@c@cR@cR@Packit - 1.6.5-1Benjamin A. Beasley - 1.6.4-1Fedora Release Engineering - 1.6.3-3Benjamin A. Beasley - 1.6.3-1Benjamin A. Beasley - 1.6.2-1Benjamin A. Beasley - 1.6.1-1Fedora Release Engineering - 1.5-3Fedora Release Engineering - 1.5-2Benjamin A. Beasley - 1.5-1Fedora Release Engineering - 1.4-3Benjamin A. Beasley - 1.4-1Benjamin A. Beasley - 1.1-1Fedora Release Engineering - 1.0-9Benjamin A. Beasley - 1.0-8Benjamin A. Beasley - 1.0-7- Update to 1.6.5 upstream release - Resolves: rhbz#2316270- Update to 1.6.4 (close RHBZ#2299261)- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild- Update to 1.6.3: Fixes C++20 compile errors- Update to 1.6.2- [packit] 1.6.1 upstream release- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild- Update to 1.5 (close RHBZ#2249919)- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild- Update to 1.4 (close RHBZ#2183486)- Update to 1.1 (close RHBZ#2173288)- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild- Indicate dirs. in files list with trailing slashes- Leaf package: remove i686 support 1.6.5-1.el10_01.6.5-1.el10_0atomic_queueatomic_queue.hatomic_queue_mutex.hbarrier.hdefs.hspinlock.hatomic-queue-develREADME.mdatomic-queue-develLICENSE/usr/include//usr/include/atomic_queue//usr/share/doc//usr/share/doc/atomic-queue-devel//usr/share/licenses//usr/share/licenses/atomic-queue-devel/-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -mbranch-protection=standard -fasynchronous-unwind-tables -fstack-clash-protection cpiozstd19aarch64-redhat-linux-gnudirectoryASCII text, with very long lines (828)ASCII texthttps://bugz.fedoraproject.org/atomic-queueutf-8c43432a8811fa5ea4e04e526e99662d9a0edd81a85c8e06a889a3935655a07637eb141009cbffda27deac232978b2eac6ef4d4b67c66dad77155f04cca9bb824?P(/h=P=22HkFwI-їHBB2$iMA(TWFt~ҟt nߙ|WJvąg$Q4g){ ul5AMh0X @ ?qB_E4wJ AWq-? *t]4:9.[4NC4b8 P\,#[]Iص?ǹb9<{qT6Ϙ%6&PRAQ 4DBMhmqS*,ً߷ަͨs#7"%=aWyG߽^o鼎G >'&'!쩢$]Eʺ8eZ ѵu]4kԩѠJ:*P qd tD5{>]j/kp<+Qd s\+` [ ?/s1Yto*N`i)Gjϥ:*P&^I]EwIkvف䬮}c):v'Y~bmngپN__;W;bO-?EKkwv/~_ߢ_yIMO#L<4) +X޼UWެkjɲCG$$" P,(My4D{1rgFFsޠWN Q|\sꍡ/0q7aƐ'2~^t\s ?eA^\2v:vI̵w?}WSӠ̦:1׎0MiG֔wyK49N DHsd Ą0!%,q[6IVSk[VgS"=g-9?jl'Y1H"ӳ8be*g .Y 99$4<_j=8 "AakjX40-wx(H~}NyDd\,,9ڢyF}va0EŁwa6d3|,i7o!{85Լ$ G7/y2 >B(ax(@]a1c/n@S cP'"ࢡP5FtgeaDZ+V7U^ɛB ;_} N&<*ڤlkH<u ty1L*NLg ljT/!NJ)Y&ԗߌg*.]IbL!px0峁 FW&] ^]ouNlh<0ĸdu+taZ lBO&Vبϒ„#>:|6KC:$2m(.Q=Ye_W2߇ѱ-SzՂWh@ST_BO]u]a@heW*j]]x9{rgoґP b^Xh^) :k|iaPS'X| T8{a5DLl0 cDTX0BZJce]UB,P4oFXLx7]X@@Pź+LL(>UhQ@#@B B9 q:p2:dє)rxeq;j׺F9%PS Ï$Ǯn76u\3]Am9׈K АFl1!AՙLtqQS%ACTښ*tDNoI =ؘK4|(RcRNDE&5G2aHYdN8fbp\7}Z$m]#H$rLZz ׉i+U9~:3h248j09?`^vt`sa1r)݅-Kzga&\I8/K}Ht*7^^$鳱[zQ/in4j-j/ u/f,6~7?vj=R!_U6FUJ!;}}$c{ͣ;7DeUm.矏QlEɵ\s5IC5~,|@7{4VgzcZbKNn^v-+^L>{Nn/6XNw\UxT+J}]D,.30ԪE*~mm7i[Ĉŏ$Y<5{tF{~XڕHDX]od 7Qo.]b.e<]ha&DX]L_^p8&/~ށJp֛xYhž{4WE#2Y }2 v=: x5ߗ7mb85gcm/jqhG%`,nY) ں.fgyyMDRQr`]>EdY,ˣQ_+]SbOøubLj =oJ8h2X0j 6'td y*łp`X66DX0 MA 2*:,Bi< G UǢ ]2 -Lp@ GDX0&PÉd4xJ Xz8OB P>8x*iRh]jfَ4{*|> SsR#Vh^C| $1Il m I]`ဠsBH øH8ghq2p0XZ+p`v^eYMz"Z.v=% d> /n?H[旨3ҕL? OeS~5v>bTXKkA VqyNWnE9Va 4jI"qU"h=cjl2Ȥ-볬h[uLChрt>YLꌅ=gqSwRƳxfMbK$f4YQAAaUE1՘|h"7ff7=}gnHcvn׫DNF?q,YV5XK[o^^-G1V5}Y\n罸M& %1ꔡ@@ G`ģVLDLc1"C @cFtao|&33nR^ \=TeO+PkE=i t%DE5+yPJ&r{vc/]C6H\7| ( Wmar*΀tY3 YTQ H^~Ѫ s)ҜnzSυ; P4{l>.a|X=wt/]a59o)'U"=ذm#c 1 V?GCT)IƾTœꢵ='XKGVK,VAWe o`=@W$iN ؚy=R;1^$eb6LRC. PUL.Fq܍=lNǷh4y5.foo"%JW/E*2@-l &lgIOlhZ/Sycz -݇HjVt43 ͩiVJ􈑖@7)PErƱq5 z@Z`a^ȖSgIl~uԅ %B-ZH{W0'&oݰG5šhԝCIi\crfSp"Ϊ(cs25.%5K!~zLT'ev,!νf0MŖhn y'l Μ`FY@{F5oWֽzU(u*]Qu3C~eY)Z /^7SUKXDE ô9LΙ'37 TNu~N@,u2u-GvOITOxPs=@-!H9dER$M/s1dGm醫H[C?m)gwꓛԗd)<%ۈM`͔EiBhyTV_KrF! @?9Klhc+뛉M:a ,}߈֡I/I}/UIǫo[m4G2:}ɁV*~u]Q\BBzWX5Q_Ys!,eyEcn3yŬs݄)`GӽOwןagvAϽMiS;!OԻl݌(\rK/HO* PAh ɧ+Z5vRJ/ON*qᯔ|49廨]AL=5)y;v$׎kIlJVdK kU aK`GFneRωC9!ݵ W6@TZ/ƖÏiMAFP0$@0NvՕm`.WSC%eZx*SJ89 n "pOvx{ogQb}-aQ*1D  ;aC8ߝ㙠 n.T=<.aMq8tqke=N./5 t1(]?4}߬aCaJ4 cBXO+wi<8IVϟ.+Y"hL /L}ĜWѯ̪)E&7؆: L]P'RK͂ҋSZY*3Qݘ׹ IV"٫tdN9bV 7WAYE :EWF%#CHb$Qo`iym̝:G!iAQbyFUA _jlO@%4Yf<cTb7Q?3@],1+ Bgy'TO;0rU=?D"SrUآ}>A7U[ĹC\ҦgAOiZ୭X\t(\/$8jUgty?TyMi8 21@[,IbTjTU3O&ws' y "UAœ_$p87Y/1TOg/{*Ư+Ҥq>_TPRZ H G S o+&uB&THc?&7E(|G^ZhPC^j$T10.'m.0Ǵ /,ن<@{ C Bњ+iOwҔ,dy hyKN tsRqG` Lτ=`8g *u^S \"rۼ,#3>7PjCn},D$6j_5C ) P9Q 0 x7$ `x$E#%M6TJ|?y5RAb3)$Ɛ3nsbLUD)`Vr϶LpƆvjK3YI3qsSFO VN!Ua0V30|;CY 1JhԬۦ#,?T3*X"CmGw~ 5 vgť>^-gg k[ PbapqKWnE(G9HΠLi闄'2h^9"36tke۳m֙mI*4>C( &i#M"Jy $F,F1!uqaSIp[IE,WחR CչfxI~rYl[:1CX> NO{wrAT#;b^iB&b<דpϛ{$y~jUTt?A5v"HHP nSU3E=$?%ӒB(*jw*оeCLjyGdhDim{KpjE[&f !D'/"-d+(A!?AAT郄ԬBgKy/^_h>A~ُk188D|!](# n]8l #CuÕSH;g h*<\,8QEm'-,hQHמk 9͝ ̮adxS6P\2گ/XlD+ɇ1!`A `/ 5 ^AfzAeG6QCuxE\K/̲l.2Yvd4VyvբAKgjw`eꀺ}EQqB@Eh!a*Gf~K6^jqI й'9ZB5sO$f1 t({Ǟ%i|Vd_ H8RLIƕ,r,襬 *J髊dGs,X9y DZo\\[͒K\DyZQwrcC4H'j MV(^e)CWDm+o s[g!`5|K|0*CR.7, ͔1B򧞵<<):rK`;Ж*my;n,rJ<=E>]R%]R6k;?xlG.E7e`|߶CE*lWE|wikqJn4 l3qnObf[-N| р^x{R%TdAu p "mg*Gm1-,а> QB`D7 G]ȰG&QGyЎb/5#C?WdJ6:K{La4nm%eTG֙Vq-D iL F&оx{O: Nl=P ;h-fH?!@)Az@gMs .a*LzLnyLG$JQp֜THɷ.6eï}KB4x{3I Վ8!fd߮eE-`\$d0FKVYEª-i0P2;]UP\:rJ- L'?ķV BX ? LuuKbʵŖd'='vYyrPhk".Ck~_2HL;Q#q5R3 I4]vjv]Pv۵D6햍hk77;yM?|.6:(6F ;rћ~0D,V:AEsjG Ip-?!NkCOsAD>w8(abps:*ݻE<F 971` `,qkR->T/b=b1r6҉&~wnXy# ԏԃQ2"䩿uXH659z!̧v֥H9 ëOQ#$B{G8w0J\ h*(}"ey>ACVO֛@ghp{zZb!֖;RE:Db5.gzOtWe FEayc_gt/z'2rEy©;4daPNCkH3G\<޿,਺HfK;?E ,^Д۽X}RN}䓓i`aoZojx "(əV`dML)SjFRrILߌ%[Gh"ǧVG4c ׈r^?l_(y] $©m)! h֔- NsMҺ0ư} i-XPjp .l-4R!d NE#UNG/MBGu&r.Rx]o+E@~n;'TRE =1t9Mi֡3;c B`*r1Љc(Y<e+B:KG_;Aa^T{}›AQX cSg] }j%[eVpno$)?sɊKS,Kus 3!Ez%@ jO3Ty'6YJT$u1D,I\}QT2̙@>+24~gT> [V\Q2:=S";kYQ0n_ӞiɷEHG 4qZDoye84R1p5r3Ȼrgϴ2H>I x,HH]YV Gcf^ N;J%`n>&-ɍq.kRƐ f ݠzze8s࿤/ \tjjVcCgs9GZ13(cq.M[r2_@R8lu>\A_y3 JRD{(Z'P˥F \ئ&^=tLWJ بi,Xs]Ye$5/Ru#2>mJEʧ;z n298,[FFr)KpM };W[ s-)#|D`L4Iqrr & 8=ú|J0GH!0$[b+f~%PUF)tե]{p,i9tKm "폋.g#Ф8"Fϛa܁J_It% J;'lr~yUvc l|hcA?"b9:}z{;`(/߳C!=ac!4h|d{ Ub\QɁٶX`mѰ1"z+Q)UJz 8""HDd> B-Uًf\5 s #D ۡK@^cgg)IGKe0$z.Ю'-Zeae?-fƓze%3a^ g|?$#*I! w&*t f2fzsu_EAT,h2'ffdK)y/_z4 hU+񘹯w7=] L9S,?Ãnj욲ޏ7㽏jܝW!`!7ń!#%LlgԺ p┞&fɿaJ8z^ysIn:$DZy^+46)briz T1@w5qt_vN5Wjg +Ce@L2YO+`NAU"=;))UUpHs/)?l:Z uDO]f)a-\hƟ2w0# }nUs_-@ ߭M5+Lj$rR[7](e7{Ϟd؋:}dt[J%{El V'GmI j /v5|U7 dBXJC~M- !G*@[ZD5yDZ)ax-nKkE2-THI km)IDAc>I3{>25~k~0!')O>6m_ BDxӈݫƤ0,-Zy-MҼ> #}| %P;̌ 'oIBK=nɀp+bf]h4!Aњ9XȽn JD_`rmfwĂnaW cFtL;͒E9$eeLCD͕5kv" RZR2N,0!nK!k DvX~Є1q[K.bJD&@*޷>-t"B0Ѱ?N,hSiLt[wf/G Z=h@p V@ h#'*]&s. P#i8VAg)(EK.-9;[r@~R['#'t6؄ ꙥ;nV2Zk`k4Lڗ̹ ,^ܟYuG/V_A,ֻHsܢx` $8FO7gf=mdʨVɾN\x2TBģ2GQ 2>ា9O=+R4K3rQ'Q$1zݺ'D!+$!wj>CT;T! 2[muNkHd4|qh,h=gd*)[]{ z|n ˘1٢',aՀ's}oq1QX{#;YF{byYm[t= ؁3Au}d 5`E8nn;'_$֙@zam%4Zǃ Z..#^O@ZF;_YxL”x * -Ӳ 9_YȺ& |al1"@X(<^B1mb§Q,!Wfx͎n;`{2rC$Qt|&>ܥzxu6\ѻj!.CV{.(hBm^MSdNAǿXg:o˫)>'B5 TGi !Ht.4إ?:(~{$@g n(6OBJڧ8^z݂3K'.J XN8ilȫ>< sA"=QD.@ݭ%k@[mT¥t(8]< 6ݪb5[Bm/Cݹ4f[% =ENS_[.CJl)œ)* A5%1/.ul'YBVz3J_3 :[uD^8~j~(n_ I_kp' c2=΂=l' -Zc @3F:)Bx{]lh@[7O>( Cg 6=k12$dv4gôͲ ,#lW$%*TȐؚtuF@=N;IGy~ix4sl'+ לQ_ EV{GJEמ䁾\3)%sWv7A(;%!6;y^"lO2Qs3 B"n PK*M+}fnbZh-D \?}75VOA33d5 @Dve/YD̄V2Icmdc+ 8ݾ`XEH呅 ic =iU] PXo͵|TNL!A[D0iY^RttMOI@lO7 zANk&t,:IWK@@>v.