• 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
1349724 2019-09-17 23:31:15 Wojciech Nawrocki


Fix 1.28.0 build

c725403 2019-09-15 21:20:08 u2

chore: fix macro clippy lint

9c95360 2019-09-14 14:01:51 Jeehoon Kang

Fix leaks

4ec94c8 2019-09-13 00:27:44 Sergey "Shnatsel" Davidoff


Mark ugly array initialization as TODO

373f37f 2019-09-08 02:05:07 Sergey "Shnatsel" Davidoff

More concise Debug implementation

86c6bff 2019-09-08 01:24:07 Sergey "Shnatsel" Davidoff

Implement Debug for Bag manually

c596c15 2019-09-08 00:21:02 Sergey "Shnatsel" Davidoff

Drop ArrayVec dependency from Cargo.toml, etc.

80cfac2 2019-09-08 00:17:36 Sergey "Shnatsel" Davidoff

Rewrite Bag without using ArrayVec

7e2e2a6 2019-07-25 07:54:32 Stjepan Glavina

Bump crossbeam to 0.7.2

29dac3c 2019-07-25 07:50:33 Stjepan Glavina

Bump crossbeam-channel to 0.3.9

27c94a1 2019-07-25 07:42:58 Stjepan Glavina

Bump crossbeam-epoch to 0.7.2

9f50786 2019-07-25 07:40:14 Stjepan Glavina

Bump crossbeam-utils to 0.6.6

4eaf9e4 2019-07-25 07:35:13 Stjepan Glavina

Deprecate AtomicCell::get_mut

4bf8700 2019-07-23 04:51:52 Stjepan Glavina


Merge pull request #396 from Marwes/unwind_safe

feat: impl {Ref,}UnwindSafe for AtomicCell

0aab8d3 2019-07-22 20:59:23 bors[bot]

Merge #403

403: Fix meta variable misuse r=stjepang a=ia0



Co-authored-by: Julien Cretin <cretin@google.com>

109bc59 2019-07-18 07:00:36 Julien Cretin

Fix meta variable misuse

9898f92 2019-07-16 20:55:21 bors[bot]

Merge #402

402: update memoffset to 0.5, which contains plenty of soundness fixes r=jeehoonkang a=RalfJung



Co-authored-by: Ralf Jung <post@ralfj.de>

7169d4f 2019-07-16 20:52:36 Ralf Jung

update memoffset to 0.5, which contains plenty of soundness fixes

244a938 2019-06-27 10:14:32 bors[bot]

Merge #377

377: Fix list's finalize API r=jeehoonkang a=jeehoonkang

When an entry is unlinked from list, the current implementation calls `defer_unchecked()` the invocation of the entry's finalizer. This PR proposes to fix it in such a way that when an entry is unlinked from list, the finalizer is immediately called.

Here is an example why the current implementation is wrong, and this PR fixes it. Suppose an element is in two (intrusive) linked lists, and their corresponding two finalizers (1) check if the element is unlinked from both lists, and if so, (2) defer the deallocation of the element. The current implementation cannot express this idea because the invocation of the entry's finalizer is deferred. On the other hand, this PR can express this idea directly.

Co-authored-by: Jeehoon Kang <jeehoon.kang@kaist.ac.kr>

05e9049 2019-06-25 04:09:52 Markus Westerlind

feat: impl {Ref,}UnwindSafe for AtomicCell

This should be correct since `AtomicCell` never panics in a method and
will therefore always be correct (under any unrelated panics)

088012e 2019-06-17 15:03:16 Jeehoon Kang

Fix list's finalize API

43967df 2019-06-13 21:52:24 bors[bot]

Merge #393

393: Allow warnings on nightly r=jeehoonkang a=stjepang

Closes #389

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

eae3589 2019-06-13 20:45:51 Stjepan Glavina

Allow warnings on nightly

cfbbb66 2019-06-13 20:28:06 Stjepan Glavina


Merge pull request #391 from stjepang/fix-bug-garbage-padding

Fix a bug in AtomicCell with garbage padding

32ef2fd 2019-06-13 20:27:38 Stjepan Glavina

Small fixes and renames

df244f9 2019-06-13 02:31:54 Stjepan Glavina

Replace dbg with println

0ecfda6 2019-06-13 01:08:59 Stjepan Glavina

Fix a bug in AtomicCell with garbage padding

8cc906b 2019-05-25 20:00:22 bors[bot]

Merge #384

384: Perform try_X after X_timeout times out r=stjepang a=stjepang

Fixes the following problem reported by @leodasvacas:
https://discordapp.com/channels/569610676205781012/569610676205781015/581517999773712398

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

6686ece 2019-05-25 19:32:55 bors[bot]

Merge #358

358: Add Select::{clear,disable} r=stjepang a=stjepang

Closes #252

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

f50cf6f 2019-05-25 19:13:37 Stjepan Glavina

Perform try_X after X_timeout times out