search for: stdscr

Displaying 9 results from an estimated 9 matches for "stdscr".

Did you mean: stderr
2006 Oct 17
0
[PATCH] misc compile fixes for tools on Solaris
...dio.h> #include <stdlib.h> +#include <stdarg.h> #include <string.h> #include <sys/time.h> #include <time.h> @@ -266,7 +267,7 @@ static void print(const char *fmt, ...) if (!batch) { if((current_row() < lines()-1)) { va_start(args, fmt); - vw_printw(stdscr, fmt, args); + vwprintw(stdscr, (char *)fmt, args); va_end(args); } } else { @@ -280,7 +281,7 @@ static void attr_addstr(int attr, const static void attr_addstr(int attr, const char *str) { attron(attr); - addstr(str); + addstr((char *)str); attroff(attr); } @@ -1035,7 +1036,9...
2012 Mar 09
2
iotop :: OSError: Netlink error: Invalid argument (22)
...7, in <lambda> main_loop = lambda: run_iotop(options) File "/usr/lib/python2.4/site-packages/iotop/ui.py", line 465, in run_iotop return curses.wrapper(run_iotop_window, options) File "/usr/lib64/python2.4/curses/wrapper.py", line 44, in wrapper return func(stdscr, *args, **kwds) File "/usr/lib/python2.4/site-packages/iotop/ui.py", line 457, in run_iotop_window process_list = ProcessList(taskstats_connection, options) File "/usr/lib/python2.4/site-packages/iotop/data.py", line 375, in __init__ self.update_process_counts() Fi...
2006 Mar 06
0
[patch] xenmon.py: add next/previous bindings to curses mode
...if c == ord(''c''): cpu = (cpu + 1) % ncpu + # n/p = cycle to the next/previous CPU + if c == ord(''n''): + cpu = (cpu + 1) % ncpu + if c == ord(''p''): + cpu = (cpu - 1) % ncpu + stdscr.erase() _c.nocbreak() -- Web/Blog/Gallery: http://floatingsun.net/blog _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 May 21
1
pygrub cannot find kernel
...] vcpus=2 on_reboot = 'destroy' on_crash = 'destroy' this is the error: Traceback (most recent call last): File "/usr/bin/pygrub", line 499, in ? curses.wrapper(run_main) File "/usr/lib/python2.4/curses/wrapper.py", line 44, in wrapper return func(stdscr, *args, **kwds) File "/usr/bin/pygrub", line 455, in run_main sel = g.run() File "/usr/bin/pygrub", line 358, in run self.run_main(timeout) File "/usr/bin/pygrub", line 381, in run_main draw() File "/usr/bin/pygrub", line 366, in draw...
2006 Jun 03
4
xentop.c error
...rning: implicit declaration of function `cbreak'' xentop.c:862: warning: implicit declaration of function `noecho'' xentop.c:863: warning: implicit declaration of function `nonl'' xentop.c:864: warning: implicit declaration of function `keypad'' xentop.c:864: error: `stdscr'' undeclared (first use in this function) xentop.c:864: error: `TRUE'' undeclared (first use in this function) xentop.c:865: warning: implicit declaration of function `halfdelay'' xentop.c:866: warning: implicit declaration of function `use_default_colors'' xentop.c:...
2007 Nov 12
7
[Bug 1391] New: Problem compiling openssh 4.7p1
....5: undefined reference to `_nc_update_screensize' /usr/lib/libncurses.so.5: undefined reference to `setupterm' /usr/lib/libncurses.so.5: undefined reference to `_nc_keypad' /usr/lib/libncurses.so.5: undefined reference to `flushinp' /usr/local/lib/libgpm.so: undefined reference to `stdscr' /usr/lib/libncurses.so.5: undefined reference to `_nc_prescreen' /usr/lib/libncurses.so.5: undefined reference to `typeahead' /usr/lib/libncurses.so.5: undefined reference to `noraw' /usr/lib/libncurses.so.5: undefined reference to `COLS' /usr/lib/libncurses.so.5: undefined ref...
2017 Jan 23
2
undefined symbols during linking LLDB 4.0 RC1
...ortIRNS_6__lessImmEEPmEEvT0_S5_T_ 0000000000000000 DF *UND* 0000000000000005 Base _Znam 0000000000000000 DF *UND* 0000000000000125 GLIBC_2.2.5 getgrgid 0000000000000000 DF *UND* 0000000000000025 GLIBC_2.2.5 access 0000000000000000 DO *UND* 0000000000000008 Base stdscr 0000000000000000 DF *UND* 0000000000000005 Base _ZdaPv 0000000000000000 DF *UND* 0000000000000003 GLIBC_2.2.5 pthread_mutexattr_destroy 0000000000000000 DF *UND* 0000000000000026 Base waddch 0000000000000000 DF *UND* 0000000000000025 GLIBC_2.2.5 getrlimit 00000...
2017 Jan 19
2
undefined symbols during linking LLDB 4.0 RC1
Hello, I update my building scripts to build LLVM 4.0 RC1 (with clang, lldb, libc++, libc++abi, lld) on CentOS 6 and I got a lot of undefined symbols during linking LLDB. I'm using clang-3.9 and this configuration: -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++
2015 Jun 07
21
[PATCH RFC 00/20] expose global performance counters
Hello, This series exposes global performance counters (PCOUNTER) to the userspace through the nvif interface by reworking most of the code related to the PM engine. This interface will allow the userspace to control and monitor complex hardware events like the proprietary driver already does, for example with CUPTI and PerfKit. For now, this series only exposes performance counters on NV50,