diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-02-13 00:05:12 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2021-02-13 00:05:12 +0100 |
| commit | e5511abce9d189eb04ebdc965c9af3f33bd2d03f (patch) | |
| tree | d95e63e0b9b7344bc209f8a8bfb939059f919ea5 /src/main.odin | |
| parent | 9f0e4500777dba0ffa4c38432c7a5d8854d9c8df (diff) | |
some random freezes with threading after linux changes - forcing it back to single thread for users.
Diffstat (limited to 'src/main.odin')
| -rw-r--r-- | src/main.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.odin b/src/main.odin index 9cfc3bf..e480e35 100644 --- a/src/main.odin +++ b/src/main.odin @@ -39,7 +39,7 @@ verbose_logger: log.Logger; run :: proc(reader: ^server.Reader, writer: ^server.Writer) { config: common.Config; - config.debug_single_thread = false; + config.debug_single_thread = true; config.collections = make(map [string] string); log.info("Starting Odin Language Server"); |