atomic-queue-devel-1.4-1.el8 > 6 6_6 3!y덏%!E/֡d* !E/֡nÐqd(j{3(p(5M&Ϟbt yN51a!OV6Ƕ2 =?hR|;E>*Z%.*n^)H*5-vkk ӯ}!W98-z0 ѣ($4^;ȋ-W]YW7wvH֧99^sr#~Ф@VB}H/^<zqL/kV4]~ʿ@fkDtۊ'2s@6K-Ӏ町7*|6JF@dbѿ0MY,yoWjqۅ Ig[ ڒL0(N..O/evԒ-E4`$e_r']nq' σi y׍Ii!e#&JOXpbo`CzEC*CڣU.^['-l'`zx!65a9e1c5e40caad336280ab1a19f680b1a2002d642eac0ee32903132ff9fb5a30eba596ce8127de799dc3f5287dd216929ca4069QЉ3!y덏%!E/֡d* !E/֡^iN]>fbZi 2sgxR\A~u0:A ۙ!72nM$LUVWX6nCXT;Pfj[ މq̞GY1<vxBRLpwx p"T7@ х{gPmQ+/j ohV 4(g0kSNb2_y|i 7jझϷ & є7ؤۛEeby: <:Fm1P993&ʐTOqE,7M@AȻ^#_X:d]N<&gC-v ek4C"Ifn ,ўSG*5t噦maF~\¿ zÛZNqxĪT+w`o.x-|KCNdcp{DSyl/!i#?~QWa?im~7SyL{YJ7^oc4{~}h1ʆ0>p:@?0d  B         ! J P X              0P x(/889T:G H, IT X`Yh\| ] ^)bdeflt u< vd,Catomic-queue-devel1.41.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.d*%buildvm-a64-19.iad2.fedoraproject.orgFedora ProjectFedora ProjectMITFedora ProjectUnspecifiedhttps://github.com/max0x7ba/atomic_queuelinuxnoarcha0 ) G1A큤A큤A큤d(ѫd(ѫd(ѫd(ѫd(ѫd(ѫd*%d(ѫd*%d(ѫe4d24e22b60dd47c75e4683ca803f23d3df06362bc13067b18beaca0b25f141d7e7de2fdec4106ac66f8825daff6bdf841f567990c9007952faff42ab6355b5a112fdf338e9da19f510eb8ec1fa656d31a78f4677087f4ce8d0ea40f868acc34972869f4582cae1952c619284882d418441c267f4e3fc56ddcedb0b420472f2eb59cdcfa39502f5277a7664a503d7202e61549ebbad9db474d0269de2fdffe1983c06f2a3236df6af95d1b6ad891335a84ac2388e792c96ce00b3f1f0f58c65f22e4fce4f072000d810546875f26ad1e8b23fcb942fe0a00c85602eb3626c1bbrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootatomic-queue-1.4-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.3d)n@c@c@c@a*@aaBenjamin 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.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.4-1.el81.4-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-8b3075aca364374dee9859328998a3bc4baa441aa5f36f63afd0e7ee88d0b765d?`7zXZ !#,/5] b2u jӫ`(y/(LH gPl vBJnp;/D.zйa{mhה!zb: Ԝq/rԚ0XI<Ƙ/ g.H|Av |FwERk |`\ӬG W\.łUF^%Su|_'aBĶZ7q4=s p@B՛rC*%PT`/{O#XQ$pμV%ݔ%ޅibFgXwsykiKc#;#J?'@mH/y2& _.!i"/: `8[8ke&,@O;g5``DqQzXCXLlv*E1gW[bTMx7ךPceO8Ihzzh{ #nLXˑqD̓ht47OtABZidmgquU!szF]1pkKD3*^Q\0&sɆ1ؠUSw& P4;~f[Lcޢ*ճ. KJ$πf*Ċ)7C*W8ضo5i[As5.wڏJrg"4-Y U_Џ%[]:vv+',)8NVU^ROMtgs, P\X/}͂A"RWw2-]xY)p0*>`,Qh;X(\dsB<a&'"Mw UɼEZ)kjBĆP eٯ)xOݑ^HslH G.Y9=\T6zL3+؎AK uhQ/K=$ZcTRUwG{J*A4@XUGn}%v͸4@ht9!u@=$J60 HC@qb׀}]ëzDE yzi (ZV轢LuKCK$ղhVB^}$lٰӅ9NLy2BD@{'ݨ@ɖ){~]in!RRx=FM !Lq ClAZ'ϵ4TWV8 54cg5q"ˉ>ߣ> @ؠ 'ea*Kx-;$̻Z3K ӣaQCSm|;a; v%+Evfhk!G$z|ڈz Uڴ+?kEYsꖼ#\|?mtd"u6QIq6E_ˤn,>T`,~P;){ő/K)?sj vIv$ 9'7&j2'i.=1A{8?*8[Q 5Jf &|T wLOS"Zݘ;rRC8@U6ħw2 7D@ێL,Jlf6v4 pt7"9ҷ M traұ#O aUul@a4q4, e^:qTDL*4f9tT}yox#,Pֵ'D-NqL ED*hUhWh1J3=|XA ">)B9A:wC>έK4,xBrs2"2d\m#WbK6lłwL0csCa<%w3/r7\brfW_0 ZelYR65 &qWDF:_^Nׇ q"Үz,-ui BVEIږ Rs6kQiH7˰괤Д"Cti@ Rm,'ܝf3oznшH& .y=ZnPcՍ*[)C[F⢀t.~F%&7djC\ NҙX&3Kw|d*H?eQ2zϼ! ~3YeVKbH)csӖmPC'1oԈyub \F?hcmӻe]ղ^oə%Ju=VohAΕN=NK*N63_D,.M駘ʃcDHݦr݊3]U }::hbder{%G t YТAiQ 2 FZ xd; #XӐp,o&kaxP)`Wc~. %6^ }p+k5|,Q6`w\ {3[*`mຄ<<&]?g5wh3Uq'U푟)!}R=1v?wce䬶:P߽i↟&Eq{^!C{0y\PI)D;Ld4=^qt>9<^KKlo$+۽2;ԃ/ODP b0]t.75Tvϖ-0Տ"xrGXfxԏ{'+DW+UxrEdHboN@{W9@ ~z9s@܆}X֝/<Gሬѯ&70OqAC(,ؖ|uwׁ0[ɒm wyK>E(# dMdA3LJ8Bn&/ tɟx6|H@8E|37Ń;2{YPm /g.h}Y=Iog_s8*3qvԍ{jd$Mef^(:0ՂF/jP].x*}&駓~L7 envO-B~G㸼p^I `+iﬨHPd@B wWh\**nfxJqhhܜ7M=ލrҟZ~=Et|U*إx?zռ]VF$I! xLsǀm6dX:uΊ(T߈ظx5~nw'EETC~t9y+֝1*GObь2y.B#9埧OU]ν q'dfQڛڲ:'M4je*WE#2 -N,8dMgYaH4sgdcox* [ǹ9)H!& =264U~W(KZg: >3ѴjF򎀲(@&)D'0h֢p1\SU]dtB?Ť=7ZƸ=L}jȣO'ٳR`{m6K)I >/HXa Bx M:䤬 ]3pwSZ~V34o{w@rj$piuf vh~"5 ʏ|١vb?raÐ-d=Ɛ| Pı/ a8=d*S{SKGsBzX]hxm-ҧ֢yu|[amgMd2[T ^$qW1}#6]j5QD=ꌫG&RAi8چ?8?GQJVC֙{l卡' I>{ݒB񶬕8sf;&5-S"`'lY#xVYd$;3b;h)T)fY|Tʳ W$3ifa!E#uXXѶTN|X(?Z\|9u j@+L r\ 6*A)|y=V8f)*٬5;GL~М CS9<2Nm~WP5ͶQvsa 8myTp5*n` (l-Wţ@ʽv?Ef0*|(O޲Ws1R :m1lsq`HaGu[LH:Vñ4]|̌k)c4w@el"7⁾8)!]NRxg8" jUo.L޹ lJY-xEEֲ_?!|3|&DI|wI^Q֯O+k$!wiLb\ޑ$9׷_›a3D%>rxXvKвߤo/hBy@̿^۟25Un$r2͒ߝ nw:u}U6'('l<[r,4!{(U"Ö!%CTXΞ<.¬v->xk ~eFN€4m$zCC=_;zFu&.mc GD8viI\l^{dr'*ap Bm:ҞJ-SkEu[lb?8Ft`OMq=}G$Yş{VUVHP};@+7+EO]cf'+-vy|-Xߙ@͟PwV>BD=SdR@QVy3@TM,36!BBy*k_uXF:"y"DՂYca/= -LwOÚM4 X[է@w?7>ܨ`$A:'SeiKmu-I`:KuL9j7^w6ݥT 7U7 q<=C[FdYH@Y]gj掭NሞX'~g+\v^C Nm4n"BdJC|-J f" C2;w[~F&/AD:._Ҧ7pW5UjhVa%WN: -wClMA])nVom?2K"!v;}oK'L{KXz7 oR#tg m[ [5YN֝:YrEbQîe G{o}|y WG~Sx儠;yG\&#`24eE-=n'U)GQtMF6-~52] ⃴ Nv-d ]yL+X@ʐ[S?!pb0}#JÒ;[w g5R킥AGH?%ؖ,k#ɻKEB.Ѱ8S+/4YìbOJ5͒:b,os!nl)AЈj^1^u#q(yڌ6ݲ\ذSb8Q!n ֧FW8%%@Ufhb~NEkݬVP;}sI3:0 KVwx7Z aɡZM9T|Yp |ra׊$"IT fPp|P홞r7(a>!,9xy"z̍)zBzܲYd 9dc4qT(R0 .yɸ[k܃K*22OZ\W~0CӣE(P`.I9?|:6!]?6 M o5CΘO})7KQC7f6YM. OyDMjX49<8iTђIԵϬ^'?a폮\Vb:`[Ղouytn0<̚!D HQ{TK : ]lbW/O(lN9xZ83ȞٗQ:CPbM+F+ƼnS?cᬜ"F!Mql+QJ9 p`s&)-6Ef=(6@\p*iHW&:!e8܏xn@`Q^#Z=snP! [ 2[= ܱݦZCnGrxp9XĤWT*?gzEditK*CLM7\.24zo ֧\[kY,IkȜZ1=1봣W(o@g!K)O%_]ZLczZ-f?Wc1cV|4pq :VX~ѯVȡ-u{\LY(T Lo$1O/pw^{l(|*L62t&4%Yf\ubHi: `ȻsP\>Hv>NrFge~ev}64!`ߺ AR;8TQ&ܼV+PlصH򠋸/(tYYcVi-= q8J 'bJpl sv358[TJWSs&FPW NJa,uK'6#۾A8h Tt~R9EM _],%b̽)>p0{sͷTJCPFqa- ;9;`9붊'Of])ڜ+/@QFb3U&|ͅHjb^-5-E(=RIZ#o4cl!m!/Ï;rQR(,o3 ou@;R)}*2vފfq;QN}>gW^J덛\8-*ArPȶ*Is-ɻ8r+ ptW(0Dqk[2 cC9C1<j++Hեi6wه7/-_h$Qj% K{y&%fJ_IxeP&^iU8 DC-®+7; uŝCA Pr[>iDMOUZ;K!_ 'G@ʹ3@RclV)»L0a!fI23s<ƺLT" 1G?n_̲Wͽ?.(+FʴJ <K[@-_̿ݗƳj>7BktY*x|-]XРL>EwoUG&$sͦS^8uH6' temrAV)~5SܟREb5D9u:42$.Ƹ%'s؊k7No]Ť/M!)nzw?h_ܲ紺.D$OexRvnu]D.hfy=4ՃQ0,n_Nb(abe2mm"XNJVbxF.f՛/ %͟VɪjMW*nH+/RC>oE|?QWP87?>ߺX|֘ aZ.PHH<..ghVI#}<aʉbj|ː#DC՟ yjRr+edM pGK0iBSdxW+}0z f([r}ʒ*hvϕ4U{߰Du<ԁsId¶ o2i nt&w︨۬Tti(}>@t}j2ڥ+_>W[yrǤ `d앿r5c o^Xss/+U^j56u׭I^y̓x4 M]|1MYCf)hPح<`0Y=+1YFU\{I]Y7ٍCޓLj%9YI ]3k% YZ