Sponsored Content
Full Discussion: forum for ncurses support?
Top Forums UNIX for Dummies Questions & Answers forum for ncurses support? Post 302550797 by frank_rizzo on Saturday 27th of August 2011 01:28:26 PM
Old 08-27-2011
Quote:
Originally Posted by fpmurphy
Not sure what you are implying by that remark.
by that I meant there is not a forum dedicated to programming ncurses. I re-read the question now and realize I misread it.
 

4 More Discussions You Might Find Interesting

1. Programming

ncurses/Darwin

I am using Darwin on Mac OS X.I.I (new to both Unix and C++). I downloaded the ncurses library from http://prdownloads.sourceforge.net/gnu-darwin/ncurses-5.2.tgz, but I don't know what to do with it now. Stuffit has expanded the archive, but I still have the original .tgz as well (if that's... (1 Reply)
Discussion started by: parmenides
1 Replies

2. Filesystems, Disks and Memory

Computek Support Forum

Do Floppy disks require drivers. I forgot, and one of my customers wants to know.:confused: :( :confused: :confused: (3 Replies)
Discussion started by: computek
3 Replies

3. Programming

Help with ncurses

Help with ncurses Hi, I need some help with ncurses.I'm supposed to write a program in C to display date and time and also to input the username and password using C.I chose ncurses for my task and here I am. Code: #include <stdio.h> #include <termios.h> #include... (1 Reply)
Discussion started by: rakesh_01
1 Replies

4. What is on Your Mind?

Emergency Support Forum usage

I think I've noticed over recent years that the number of threads started on the Emergency Support forum has become virtually nil. Why do we think that is? Members cannot easily to find that forum? The site layout has changed? The longevity of this forum means that all the answers are... (10 Replies)
Discussion started by: hicksd8
10 Replies
memleaks(3NCURSES)														memleaks(3NCURSES)

NAME
_nc_freeall _nc_free_and_exit - curses memory-leak checking SYNOPSIS
#include <curses.h> void _nc_freeall(void); void _nc_free_and_exit(int); DESCRIPTION
These functions are used to simplify analysis of memory leaks in the ncurses library. They are normally not available; they must be con- figured into the library at build time using the --disable-leaks option. That compiles-in code that frees memory that normally would not be freed. Any implementation of curses must not free the memory associated with a screen, since (even after calling endwin), it must be available for use in the next call to refresh. There are also chunks of memory held for performance reasons. That makes it hard to analyze curses ap- plications for memory leaks. To work around this, one can build a debugging version of the ncurses library which frees those chunks which it can, and provides these functions to free all of the memory allocated by the ncurses library. The _nc_free_and_exit function is the preferred one since some of the memory which is freed may be required for the application to continue running. Its parameter is the code to pass to the exit routine. RETURN VALUE
These functions do not return a value. PORTABILITY
These functions are not part of the XSI interface. SEE ALSO
ncurses(3NCURSES). memleaks(3NCURSES)
All times are GMT -4. The time now is 07:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy