• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

crossbeamパッケージ


RSS
Rev. Time Author
79210d6 2019-02-23 21:38:01 bors[bot]

Merge #336

336: channel: add microbenchmarks r=stjepang a=stjepang

Closes #328

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

8550ae3 2019-02-23 21:34:50 Stjepan Glavina

channel: add microbenchmarks

456fab0 2019-02-23 07:04:51 bors[bot]

Merge #335

335: channel: optimize disconnection r=stjepang a=stjepang

Just a minor improvement + more tests.

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

289f054 2019-02-23 07:00:48 Stjepan Glavina

channel: optimize disconnection

9dced9e 2019-02-23 06:10:49 Stjepan Glavina

Add a newline

66973e4 2019-02-23 00:35:15 Stjepan Glavina

Rename Mutex to Spinlock

b3283e4 2019-02-22 23:05:16 Stjepan Glavina

Remove unnecessary check in array.rs

e4b6ea7 2019-02-22 17:59:14 bors[bot]

Merge #329

329: Use acquire-release orderings in AtomicCell r=stjepang a=stjepang

Closes #317

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

dc37ed8 2019-02-22 17:11:16 bors[bot]

Merge #332

332: Deprecate AtomicCell::get_mut r=stjepang a=stjepang

This is an essential step in solving #315 - there is no way to make `AtomicCell::get_mut()` sound, unfortunately. Let's deprecate it and remove in the next release.

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

876c9cc 2019-02-22 16:48:43 Stjepan Glavina

Replace from_micros with new

4185525 2019-02-22 16:33:00 Stjepan Glavina

Fix a typo

a527577 2019-02-22 16:20:59 Stjepan Glavina

Add more golang tests

b8ef633 2019-02-22 15:15:37 bors[bot]

Merge #334

334: Rustfmt everything r=stjepang a=stjepang



Co-authored-by: Stjepan Glavina <stjepang@gmail.com>
Co-authored-by: Wojciech Nawrocki <wjnawrocki@protonmail.com>

66df7b6 2019-02-22 10:14:19 Wojciech Nawrocki


travis: use rustup to install cargo-fmt

27b8dbf 2019-02-22 09:49:06 Wojciech Nawrocki


travis: try to install rustfmt if it doesn't exist

1c383bf 2019-02-22 06:40:11 Stjepan Glavina

Add a rustfmt check to travis

2076c5a 2019-02-22 03:29:58 Stjepan Glavina

Rustfmt everything

5099531 2019-02-20 23:31:11 bors[bot]

Merge #331

331: CachePadded: use 128-byte alignment on x86-64 r=stjepang a=stjepang

Motivation: https://www.reddit.com/r/rust/comments/akzas0/lockfree_rust_crossbeam_in_2019/efa26r1/

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

711cd8c 2019-02-20 23:30:28 Stjepan Glavina

Explain N in more detail

2532e0d 2019-02-16 05:25:34 Stjepan Glavina

Deprecate AtomicCell::get_mut

183183d 2019-02-16 04:43:06 bors[bot]

Merge #330

330: Fix the AtomicCell::compare_and_swap example r=stjepang a=stjepang

Closes #327

Co-authored-by: Stjepan Glavina <stjepang@gmail.com>

e50e7b3 2019-02-15 22:42:18 Stjepan Glavina

CachePadded: use 128-byte alignment on x86-64

7d0f46c 2019-02-15 22:15:36 Stjepan Glavina

Fix the AtomicCell::compare_and_swap example

9257433 2019-02-15 22:12:16 Stjepan Glavina

Use acquire-release orderings in AtomicCell

ea2f68e 2019-02-07 18:20:31 bors[bot]

Merge #326

326: Skip use_while_exiting test on macOS r=stjepang a=Thomasdezeeuw

Updates #321.

As per @stjepang suggestion in https://github.com/crossbeam-rs/crossbeam/issues/321#issuecomment-461024423.

Co-authored-by: Thomas de Zeeuw <thomasdezeeuw@gmail.com>

edc8586 2019-02-07 17:25:34 Thomas de Zeeuw

Skip use_while_exiting test on macOS

816bd1b 2019-02-06 22:24:34 bors[bot]

Merge #323

323: Cleanup panicking test threads r=stjepang a=Thomasdezeeuw

Depends on #322.

Updates #321.

Co-authored-by: Thomas de Zeeuw <thomasdezeeuw@gmail.com>

d01625d 2019-02-06 19:09:41 Thomas de Zeeuw

Remove assertion from oneshot_multi_thread_send_close_stress

There was a race condition between dropping the channel and sending the value. The sending was changed to ignore the result.

e290bbc 2019-02-06 19:07:14 Thomas de Zeeuw

Cleanup panicking test threads

Now threads no longer panic while running the tests.

25dfcbe 2019-02-06 19:00:21 Thomas de Zeeuw

Add joining all spawn threads to list of changes to mpsc tests