mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
Remove some more ASSERT_IS_MAIN_THREADs
These aren't helping and are blocking testing of concurrent execution. No functional change here.
This commit is contained in:
parent
e9a793532e
commit
8abc8315de
2 changed files with 0 additions and 3 deletions
|
@ -124,8 +124,6 @@ static void builtin_complete_print(const wcstring &cmd, io_streams_t &streams, p
|
||||||
/// The complete builtin. Used for specifying programmable tab-completions. Calls the functions in
|
/// The complete builtin. Used for specifying programmable tab-completions. Calls the functions in
|
||||||
// complete.cpp for any heavy lifting.
|
// complete.cpp for any heavy lifting.
|
||||||
maybe_t<int> builtin_complete(parser_t &parser, io_streams_t &streams, const wchar_t **argv) {
|
maybe_t<int> builtin_complete(parser_t &parser, io_streams_t &streams, const wchar_t **argv) {
|
||||||
ASSERT_IS_MAIN_THREAD();
|
|
||||||
|
|
||||||
const wchar_t *cmd = argv[0];
|
const wchar_t *cmd = argv[0];
|
||||||
int argc = builtin_count_args(argv);
|
int argc = builtin_count_args(argv);
|
||||||
completion_mode_t result_mode{};
|
completion_mode_t result_mode{};
|
||||||
|
|
|
@ -136,7 +136,6 @@ void io_buffer_t::begin_filling(autoclose_fd_t fd) {
|
||||||
|
|
||||||
separated_buffer_t io_buffer_t::complete_background_fillthread_and_take_buffer() {
|
separated_buffer_t io_buffer_t::complete_background_fillthread_and_take_buffer() {
|
||||||
// Mark that our fillthread is done, then wake it up.
|
// Mark that our fillthread is done, then wake it up.
|
||||||
ASSERT_IS_MAIN_THREAD();
|
|
||||||
assert(fillthread_running() && "Should have a fillthread");
|
assert(fillthread_running() && "Should have a fillthread");
|
||||||
assert(this->item_id_ > 0 && "Should have a valid item ID");
|
assert(this->item_id_ > 0 && "Should have a valid item ID");
|
||||||
shutdown_fillthread_ = true;
|
shutdown_fillthread_ = true;
|
||||||
|
|
Loading…
Reference in a new issue