Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Concurrent] Custom lock interface #1

Open
aary opened this issue Sep 7, 2016 · 0 comments
Open

[Concurrent] Custom lock interface #1

aary opened this issue Sep 7, 2016 · 0 comments

Comments

@aary
Copy link
Owner

aary commented Sep 7, 2016

Provide a custom lock interface for other mutex types to use their heterogenous lock methods. For example the interface could be like

LockedData<std::vector> locked_vector;
auto lock = locked_vector.lock_custom([](auto& mtx) {
    mtx.lock_upgrade();
}, [](auto& mtx) {
    mtx.unlock_upgrade();
});

cout << lock->size() << endl;
@aary aary changed the title LockedData [LockedData] Custom lock interface Sep 7, 2016
@aary aary changed the title [LockedData] Custom lock interface [Concurrent] Custom lock interface Oct 15, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant