Operating Systems
- 1883
- Partysip
- SIP proxy server. It can operate as registrar server, redirect server and stateful proxy server. SIP is an open standard (IETF) replacement for H323.
- 1884
- Siproxd Project
- Proxy/masquerading daemon for the SIP protocol. It handles registrations of SIP clients on a private IP network and performs rewriting of the SIP message bodies to make SIP connections work via a masquerading firewall (NAT).
- 1885
- Fuzz home page
- Fuzz is a tool for testing other software. It does this by bombarding the program being evaluated with random data.
- 1886
- Leaky
- Leaky can help you track down memory leaks and some kinds of memory corruption. It also has entry pointers for logging addref / release calls. The key thing that leaky does is this: it logs all calls to malloc / free / realloc / new / delete into a log file. The logging data includes information about size and address, as well as the call stack of the operation. The leaky program then can translate the call stack data from addresses into symbols and then dump the data out.
- 1887
- Linux Trace Toolkit
- Catalogs system events in minute detail, and allows a user to determine exactly what is transpiring on his system, down to the microsecond.
- 1888
- The Cxref Homepage
- Cxref is a program that will produce documentation (in LaTeX, HTML, RTF or SGML) including cross-references from C program source code. It works for ANSI C, including most gcc extensions. The documentation for the program is produced from comments in the code that are appropriately formatted. The cross referencing comes from the code itself and requires no extra work.
- 1889
- User-mode Linux Kernel
- This kernel allows developers to write and debug code using the normal process-level tools, like gdb, gprof, and gcov.
- 1891
- viewcore
- Coredump debugging software which works on Linux(ELF) and Mac OS X(mach-o). It helps the programmer to obtain essential information about the abnormal termination of a process or a thread.
- 1892
- GNU Autoconf
- GNU autoconf is a package for generating configure scripts. These scripts are present in a large number of free software packages and are used to detect system features at compilation time. Autoconf is mostly needed by people producing packages that run on a wide variety of platforms--particularly UNIX-a-likes.
- 1893
- GNU Libtool - GNU Project - Free Software Foundation (FSF)
- NU libtool is a generic library support script. Libtool hides the complexity of using shared and static libraries behind a consistent, portable interface. Libtool supports building static libraries on all platforms.
- 1895
- Makeheaders -- A program to generate header files for C or C++
- The makeheaders program is a simple utility that will automatically generate all the ``.h'' files for large programming project based on information gleaned from the ``.c'' or ``.cpp'' source files. It operates by scanning the C and/or C++ source code, extracting appropriate macros, structure and subroutine declarations and writing this declarations, in the correct order, into the generated header files.
- 1896
- Programming in C
- A tutorial on programming UNIX System Calls and Subroutines using C by A. D. Marshall.