_tracef, _tracedump, _traceattr, _traceattr2, _nc_tracebits, _tracecchar_t, _tracecchar_t2, _tracechar, _tracechtype, _tracechtype2, _tracemouse, trace - curses debugging routines
#include <curses.h> void _tracef(const char *format, ...); void _tracedump(const char *label, WINDOW *win); char *_traceattr(attr_t attr); char *_traceattr2(int buffer, chtype ch); char *_nc_tracebits(void); char * _tracecchar_t(const cchar_t *string); char * _tracecchar_t2(int buffer, const cchar_t *string); char *_tracechar(int ch); char *_tracechtype(chtype ch); char *_tracechtype2(int buffer, chtype ch); char *_tracemouse(const MEVENT *event); void trace(const unsigned int param);
The trace routines are used for debugging the ncurses libraries, as well as applications which use the ncurses libraries. These functions are normally available only with the debugging library e.g., libncurses_g.a, but may be compiled into any model (shared, static, profile) by defining the symbol TRACE. Additionally, some functions are only available with the wide-character configuration of the libraries. The principal parts of this interface are * trace, which selectively enables different tracing features, and * _tracef, which writes formatted data to the trace file. Calling trace with a nonzero parameter opens the file trace in the current directory for output. The parameter is formed by OR'ing values from the list of TRACE_xxx definitions in <curses.h>. These include: TRACE_DISABLE turn off tracing. TRACE_TIMES trace user and system times of updates. TRACE_TPUTS trace tputs calls. TRACE_UPDATE trace update actions, old & new screens. TRACE_MOVE trace cursor movement and scrolling. TRACE_CHARPUT trace all character outputs. TRACE_ORDINARY trace all update actions. The old and new screen contents are written to the trace file for each refresh. TRACE_CALLS trace all curses calls. The parameters for each call are traced, as well as return values. TRACE_VIRTPUT trace virtual character puts, i.e., calls to addch. TRACE_IEVENT trace low-level input processing, including timeouts. TRACE_BITS trace state of TTY control bits. TRACE_ICALLS trace internal/nested calls. TRACE_CCALLS trace per-character calls. TRACE_DATABASE trace read/write of terminfo/termcap data. TRACE_ATTRS trace changes to video attributes and colors. TRACE_MAXIMUM maximum trace level, enables all of the separate trace features. Some tracing features are enabled whenever the trace parameter is nonzero. Some features overlap. The specific names are used as a guideline. The other functions either return a pointer to a string-area (allocated by the corresponding function), or return no value (such as _tracedump, which implements the screen dump for TRACE_UPDATE). The caller should not free these strings, since the allocation is reused on successive calls. To work around the problem of a single string-area per function, some use a buffer-number parameter, telling the library to allocate additional string-areas. These functions check the NCURSES_TRACE environment variable, to set the tracing feature as if trace was called: filter, initscr, new_prescr, newterm, nofilter, restartterm, ripoffline, setupterm, slk_init, tgetent, use_env, use_extended_names, use_tioctl
Routines which return a value are designed to be used as parameters to the _tracef routine.
These functions are not part of the XSI interface. Some other curses implementations are known to have similar, undocumented features, but they are not compatible with ncurses.
ncurses(3NCURSES). trace(3NCURSES)
Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.
Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.
Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.
Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.
The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.
Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.
Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.
Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.