We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 074c4fd commit 1cec9f1Copy full SHA for 1cec9f1
common/console.cpp
100644
100755
@@ -241,7 +241,9 @@ namespace console {
241
(void)codepoint;
242
return 1;
243
#else
244
- return wcwidth(codepoint);
+ //return wcwidth(codepoint);
245
+ (void)codepoint;
246
+ return 1;
247
#endif
248
}
249
src/llama-mmap.cpp
@@ -482,9 +482,9 @@ struct llama_mlock::impl {
482
suggest = false;
483
484
struct rlimit lock_limit;
485
- if (suggest && getrlimit(RLIMIT_MEMLOCK, &lock_limit)) {
486
- suggest = false;
487
- }
+ //if (suggest && getrlimit(RLIMIT_MEMLOCK, &lock_limit)) {
+ // suggest = false;
+ //}
488
if (suggest && (lock_limit.rlim_max > lock_limit.rlim_cur + size)) {
489
490
0 commit comments