atomic-queue-devel-1.5-1.el8 > 6 6_6 3!y덏%!E/֡eW[$ !E/֡իrtD40Zs8.nAm](-mv!~yeYݷK!+GCǬ%9^!iyTe&nU._BDOnDChR$~B^ \BV9H墵nW$]j~=rR/wؖ;gqsF 1^.^1&D]9֯.0 Dp\?mӚm;48O`:eI&~J v3 5baNr\?>CIT贻+|5 OlWL,_IƨFb?Qۏt\G1H.-~8{ʒAH# .]8Pyx7Jf2}ªQ8=ف:Hx{MYYza27썅gotqW m)0f0_ѱ|KGLwGŇ1WYd0f6101f6fbf3c7cece92a628f05d72909df4477b50e709d564d7e86f9e7e06839821eaed8e3a5385c82a431f17633858a5478921X3!y덏%!E/֡eW[% !E/֡_KNd!]%nq(@&xeBdQ_kGHҘU'BrOOs!x{W;FO=Eߪ8̮K#O_GOOOހh[u(zVgYA` IЪB,W۾q:1!e8ANMQf |MZc n`75 6v LzҼ XKauǃjq45xlIc i`#U ->1UAsbU/]* ~M\;G0gXfW w.E'|,>p:?d  B         ! J P X              0P x(/889X:Gd H I XY\ ] ^b"dNeSfVlXtt u vDJCatomic-queue-devel1.51.el8Development 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.eVbuildvm-a64-15.iad2.fedoraproject.orgFedora ProjectFedora ProjectMITFedora ProjectUnspecifiedhttps://github.com/max0x7ba/atomic_queuelinuxnoarch` )Z1A큤A큤A큤eUneUneUneUneUneUneVeUneVeUn1b89ad82be28a38d922cc081d2c6bd28d0d0ee9d1b68dde0687ea18e7cf4dcb37e7de2fdec4106ac66f8825daff6bdf841f567990c9007952faff42ab6355b5a112fdf338e9da19f510eb8ec1fa656d31a78f4677087f4ce8d0ea40f868acc34435d8d81336f9d721e9ab4de55ea34df5a5784ebda0e1839443b80e2fa9ed221b59cdcfa39502f5277a7664a503d7202e61549ebbad9db474d0269de2fdffe19f4553ae434a7cf834f0e7201eb821e0dac7ddab89896f51314dfb055a378dfaf22e4fce4f072000d810546875f26ad1e8b23fcb942fe0a00c85602eb3626c1bbrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootatomic-queue-1.5-1.el8.src.rpmatomic-queue-develatomic-queue-static    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3eV@d)n@c@c@c@a*@aaBenjamin A. Beasley - 1.5-1Benjamin A. Beasley - 1.4-1Benjamin A. Beasley - 1.1-1Benjamin A. Beasley - 1.0-4Benjamin A. Beasley - 1.0-3Benjamin A. Beasley - 1.0-2Benjamin A. Beasley - 1.0-1Benjamin A. Beasley - 0-0.1.20210816gitaa08199- Update to 1.5 (close RHBZ#2249919)- Update to 1.4 (close RHBZ#2183486)- Update to 1.1 (close RHBZ#2173288)- Indicate dirs. in files list with trailing slashes- Confirm that License is SPDX MIT (no License field change)- Let the devel subpackage be noarch- Update to 1.0 (close RHBZ#2030645)- Initial package for EPEL8 1.5-1.el81.5-1.el8atomic_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 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fstack-clash-protectioncpioxz2aarch64-redhat-linux-gnudirectoryC++ source, ASCII textASCII text, with very long linesASCII texthttps://bugz.fedoraproject.org/atomic-queueutf-8d322eaf2447271b603ce14f6bf7e389de95f9202deb9e44ed94c0deb57a71f80?`7zXZ !#,;] b2u jӫ`(y0MhxY\-~&, ܩ!r"Sqjj4!]{"Ze' T/NMu&t~MȊouK$12\K Kke\.:9T+yfZX.\ N&ƞ=yۖV*`h(OAd< 8JĂ4_{;.MùѠXB>5U[py!qdK;P6+md<gl%YrsNٙ2+]jhfea`ۄsy)ι3 6S(@\2rV8S/ZɌuτۗDd҇s̋c Y2Љ v5S#v84DDvoHBD^`NA=n 71Ȭe2u35YЛOxٖѴ1SN3P ]SFf9(b x:ל#/ðg8/y0ӧ8zŃ<ֶ R<ߘ֗C|ԏ\_p^v aPM).m 9Ý#>wael:1Hqo#9r: !^ޘPwJ#c$ƅ?*\qS%nB^7 2g> 8Ap)\ eNizHeAJîƅꏀ`Hm{鯅@tSM,b4;\ƈ\ FYUoz`c>GUd[6[) 1m0 }~_n:ቿ~k5\"WQɸʶUUNV-W¹bxXފ>󨭥W7i!uAKlz1/"&aGn +O~y%{= 85z(dD iEUs`@ୢ+ǎ)Ic#1rraD{4Òo_vS⑑3.}jb̬wL7.54 Q5s*Fgk\ ݥ7cg55zwƩO33ԱtnTw_Ԕ:۸W@#"AtxY\gE¹ JDկ ?d4NQ.Ahx^bO`@W aUC笡Nqwj)p'{LA+_fb2!%O,LoүRn4Vىu~T.:"%*`^o h48 YFbw ڊm|y0 ʸ|+QHjN;jirTMeb's4 \;yYlPݶP]'<b>Gjh!(ߦԍuÉBBSGRFv% $cW@k0{PN 2ڱ+qň~d6vTtOM{YZ<$Õre-C ۚ' Գbe.x<ኔ\rA=X\0Z#.n@ ø:'UFzkݛ^M Bͷ>SLqΑ/a}m4lSE&AD+FWV$L)]߃ZڒEWhۨmSu/XF=͚а퐕H28gJ$s"-(brKPύ2 ,T?峌Ā-4VۊSZ%H,O4P,iN06w3[6aLжJKa%u\`;Ԇ @ Q.旐 ?ɝ.T*n 0V"Ԁ0lyOF4z֢r,Q]kt6-Iꪚ:H`AlcA'wrLD(gq.RY%j'L_bo%cwzO]"py{xςn~zTxRrT ~ yO sn5#9jq eߜЄJ~ovME(=Fh/bðD:8Ym WXPFXCUBA:w )sl?-YH)ɲYp&$Ȇkr`wf]?Sѽ ? (~ tLncyHmOeyOh+@xr.~ {]6Tnf##sL %ϐecUXLV>3 Xo ܱf$W3GK3&BJJ%ۖ{/Y!-UfNvW߰.!(G絏$e9ݠչ@nZnac!tSՐ=}hym?Zv-ϒ߷ I} `5竚a CT`Crx EŌF|ĆFմ\HPP0YMqzfM^\LaST. $mpayuG3bd҂ON7\"o8 X>[_XS$qG|]M@ 0B9dgKq +9o|zD(RA}G8O5wLiqXCs$$cC(z=]}_r+Nc T39(F⩲v&q]g]R4ŮumXcԫ r-3 ]|b7G8ֶq"ȚFaAdJ!-`0ke)6j|G˳d! )/:CSfb3@e[vsG)wS/'vл wR&gL88a4Cܒ]V0dqgգ'L.#Oqcgsv)T儊$ʱ$ WU "md2q@RHCȺA" !N6'J7M52N?cNP/qnY)Nr++Ȅ1iIÐTo{{% ]vbGqm(=yv[z'/ƀ^BWGrsGϯGG 8c{UO۟Wl7A@ *'3~d"~J#Wn ~-Qm,|:+tp!у2ߴ?Gy;ͫz /wig\^2 L[ꑚH"持|yi!2@ fW%V#O|02vXC4^%,1^  6ѕ'@> "4 'g9`p}6_gשtbA4VuWLqW_~`ltߓnWF0GN!ԁȊP{kB=r|ڊcatTKL1ƻO x:am^o&L *N5D=]@ZTKVMc;T'5ert$ӒQ PL3ƒAU1,ڔݮyb=wbI=f=cO>PP-ŐV!!g3aq8< 6T˸fLzj\Мqjk#KCVVY F="s[.Lp Az}J㲻2:ۻwas2ɂD:t"q`Ŗ}PfkgW8crI55:~rp*4;Y^׻>sl hqլ|9.3ףZ >P7e|~yaпw~9y<{e2 ? ,B?K.f<BM~C*@*hbEKFue5owNڶ&9/`Pce{**jRļ2ĪGui T"y'.g3I}YP_u0(LFT ܉oNbvh*ρ?IK˪C5fR8|y+vCST%Ԛ|BR+=Ђ}8%M[óW΢a ziP$ A; FĭX~l}xt.._ >>]{E`#w2Xrʸm>j|z,%C{~|z $}'vr,lc($,meX LG=p?o[]؍mUw ہ jt$ǎroG@xEœKd$neB:NNnO]5F7ȃ$Ώ2nєI,VNaƩZ]"JnPn'pI&g첇U%ԉȺOZ}@ep Y !_H«?~)&tj}x/7#ٓx94J)M^}|i`㓲'svxZBtAfOpNI+٦0A kv)w-ܸ rw]ey1Zn,n8Ŕ.Flä*~K?TP(qCD'?.$j ljl>DM@~{X) PʜD+00ah7vdrn:s"3UB8. 'uo머[j#6j)|^tcZd^IૼcZ]Ua{dbl,@?phTӡ̅$A Aj1Sf,yG!z;\>P2+H xXRʯq_/J30'1lss~Dβ1(hz d>*DcsaIs'{/`Ozo >_% f2meڜt MA$jdǒ:vDl_dM|JM遅"5XQ;reԾ7'~ .dUJ 2hWւ,CTpr~TSB@e-W U5g"' C*~X3lFEZ@"տ7=M ɼm'rUCȲs0']F5/w{nz}BUI#-;m+Cōۄ Ң=onWGRI_ =^ =@GcvDvA WP\{QQtFYFRgSJs^ 2"-;Nh8A)T0Id!1Qơg:62JkӷM\ҸO#fo>O,dz,S7B' V|-<+Bi9=ILOҺ%0tRYo4D V]29㠠cOI[|$h#,` !LV읅 :zwే3ww|2I>C]I')梙EvD&`i,Ju~9dH&W1~UI=7fYJ̇+Iɇ$APd PZ狂l9fzuX. /{oB,K!L'.Z"~OiinjX 1xniW;5'ƕ/-5`=dg"W}KlFeB6qpBϔ9vuf)!ekodK]N.)Ac3,m_:a_LpD;8LtU5יZ`tnO1.g0r4R۷~u|d̰M;NHWXLai;G5|eu#Jvi##p{g=Hz%DT}Tx{HF=Wٛ=OEO<rfBƳ]yI{f*P#:+!y?YU?LU!c:1ܜU\XF*ɠ!ژ"x"9/ OM`fK q|5)y}my;"Jax]R ͺLbm\KJk(bGTi;BS!tLkioyFݲSp/J5d ]#DUxÙ_uәWKqaxc{'sB6 H$JTss2"~`AI<* 5Ⱥ& `62-.{@Jk:/˞ *eqJ+W<&nI}.]ozR**bPGwH"[6ChRU?[RŔ*-70&ECbt_FX^5 *>>7B Zk"Cf./y'H:"bVwq2<3?۲BjGK;ӣ[ eu\8\inS pđK Oղhm,ɈIJq-Vy6.Js=%E=QImBKմp*#ap/>8: IaP&ﰬ c}poz\pzfk0StRg,0!l*U\!ᄎB1 yb cWYy㡘ܸ7U NL:<)Vt6Mug/ꪍ|Ve1ޑ$ ڵ鑼P@4A67my ֊7tooKF%.al}8`,m; X1,u<|+7E&x֥jV1!5[g~4Mj!JA-*ĸѹ2X2STYJ?T nl&蟨fx0/K-O4 V( 9EBM W )yX5j#^|cA 10w"G-ڕH^XmHyJMk:6)#60`TRM@ qll.n- zC5/hY! n{k~#J_^\_GR+8eDi!Fo3bAuhK:FL@XOOġĻ|Y,fǖSq6M8?9ۺ K?"2}pnb!'%fci#4)soZ&@JA-z\Ňpzkws?uhxeT\}; jG Nm|yaudAi1 ^ ULB+pu Rl2lq*]. YzYI0`Oy:j?؃ /v{U{XT}s\? `#܂t zwuB~1ۚј cJƯ6"}[ .a\}RCeBet% $%~vB͍A 3{KRP+|iv7ܑ/*\v2 ew9ƥa4),N 'yf{AS%gjk֬(Lz )4?}H qBby::pdd8Y}^3CB (]⥧C.K=jW%09fEWB'OLX::?bXnߵ5D2+5<\\aI*? x]'pRՋ&@{A~7At緸ւCq0Pܳ# F\zM'S'BD] ; .ҋ"R΂+>^Eo{ko^,\N\K[cզĿ9Y5-+|}^ѼvS?a\} m^ny@q!5q@^u,_cIɃwPB^Y,K/NT ؛ڲ Ku^Wn릞َ>:%D%nPH d_ EwR;g'2BܹHmIE)ZyC~6WV0j2KCaIDHq(Uw`lu]&.9 Xh?b#yidHlh)ae3#ܬU\bVl:| `US2dxP|O(J-ɺezjD>,tƩNjF`Ljy0 7dӎDg6Ho0< ñ^Qї2swsIT'5""ІL(_56Z nQ93fO^V5HzH /Ok'^qu ]PV^|-)0)sdvWm3NЌϼI\X/9@vkC5p`A7"ۚęozgm4F=^ʛ)| f5#w+bV0.x@)?*31raӏ ?{k1*`9B@k_c=XXݐ2MJkl7a?lp+ $-5U 0>>^%i4hr|y]%ը#\WBJvkW;1WO{כ7kc6bQl$0#kV'åF ֺzCJʛ!+*N'pr@GptYWxMt[c9"pYb}_5Ⱥ?`6h_tBmN_`4H%JW'{ Z󝝼?bb2ئ}lq+bgsyS=[Œ -K̖F,6 MN0?PʚM"xWte0.A.wX/'DzX%64oeQđe =ZL#2f) A e@&- H;+5J1SNFÛ:[w|*L9n(U 39ۻȑ̎C"~H:\@A;1:EtOUk +~XwEٚ k{`k5H@?Q*}"fIE=;XgDog'K^UE2nMrK@[y(&WoK.XS%C5K`rl %#yfFyQ˴Kgr@s=̙МH"FgF~Z")<UO4؆)O .`8p¸lv,ULRϙ2`JKzoUάJ@-䦲=g$D"*>AK~iL)3,4ƫ5} R?jK C^USPB f=lXLZV͢Y_.ѱCU8h a֗/9}  H|cfvsr4)C|%=G~jR1WkfTJº kU {-;i*ɽL=^} e% eeX):ok뼳dnp-);3\'h2€2t- iծh0)y$7mukllF/6-rTň|MG2KQזDKFSze p&53l+8q cGIщоq~ ƨMK? K@|K_iEc.PM݁krvuKXZ*˗ qgj-8ExOTHȱTU̕8y4ks9t6rv>qz,@%dz-Twqä[`'wf=Er eh(?."׈/9A-ciiH{`,xݕxS ە!P23 9r,r@f"+6x>3IɆRcBPD8j2AHhFn fl|(x; ECC+cދ cS.$5a2w2UN]R/lFxÀWA_Hhi=v^;%!aW $-Ha~/{nb@:ྋVy6vxR3Bwv]txf )$-t#@dMX94#(ut |Д^G@* %p3Ǣ,R@>R yS_6t(Nj,&ꆋXo;W i@jy$n=vJyp2tNGe;6 S[TʜA"u`7v@toMxx].msB& .(ss;b0x[C' C;UAPR(vtAAdH6efdc姖p47jsD8QVxJwJkue+]mY5 ݎ(0K5s㭉fgpuqTC7xɤC4׫\;NL&L*x#OF s6Z,̘D;:k OӰ@1)gJ^3ѯ$D2\ΏR>,u8# ,QZ=rp9 z 9h/LdR^(_U^-B>,OH<ô"T:1 ;;+/89Mٻ>/+Xf#MxX:ط*' {f~:Mj+6Z 3AcB2oUAW$`,m" hVb; wk58Mu?Sׅ8=M[4OeA"N[ҺVfG#(7p.Yψ)wY/#>[}#hcoq7+OXc̠Vyn%!Ƒb ;Q]:}ʦWn0ǻ[olz>(C#o.\SVس4ꐛ03x^# YZ