include("site.inc"); $template = new Page; $template->initCommon(); include("project.inc"); /***********************************************************************/ /***********************************************************************/ /* Initialize the project */ $project = new Project; /***********************************************************************/ /************************ Begin project content ************************/ /***********************************************************************/ /* Display name is the proper name of the project -- * it is displayed at the top of the page */ $project->display_name="SystemTap"; $project->project_name="SystemTap"; /*$project->mailing_list="systemtap@sources.redhat.com";*/ /*$project->cvs_module="sml";*/ /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="
The SystemTap project aims to produce a Linux tool that lets application developers and system administrators take a deeper look into a running kernel. We aim to exploit the capability of a fully open-source Linux target to go beyond performance measurements, and perhaps even serve as a programmable debugger.
"; /* If the project uses Rawhide, then set the value to TRUE */ $project->rawhide=FALSE; /* Other useful variables (uncomment to use) */ /* Contacts */ /* Format: "Full Name", "email@hostname", "Title" * Note: Title is optional. If omitted, then your title is "Maintainer" */ $project->addMaintainer("Frank Eigler","fche@redhat.com", ""); $project->addMaintainer("Will Cohen","wcohen@redhat.com", ""); $project->addMaintainer("Martin Hunt","hunt@redhat.com", ""); /* Screenshots */ /* Format: "Basefilename.ext", "Short image description" * Note: Thumbnails must have -thumb before the .ext for the filenames. */ //$project->addScreenshot("redhat-artwork-packages.png","Screenshot for redhat-config-packages"); /* Directory prefix for the images */ //$project->screenshot_prefix="/projects/artwork-tools/images/"; /* Documentation */ //$project->addDocumentation("$RELEASE_NAME Manuals","http://www.redhat.com/docs/manuals/linux/"); $extra=""; $project->addMisc("",""); /***********************************************************************/ /************************* End project content *************************/ /***********************************************************************/ $template->options['title'].=': '.$project->display_name; /* Standard template footer */ $template->displayHeader(); /* Display the project content */ $project->displayProject(); ?>Current project members include Red Hat, IBM, and Intel.
The mailing list for the project is systemtap@sources.redhat.com
Standard sourceware-style CVS service is available:
cvs -d :pserver:anoncvs@sources.redhat.com:/cvs/systemtap login {enter "anoncvs" as the password} cvs -d :pserver:anoncvs@sources.redhat.com:/cvs/systemtap co -c
You can:
To learn about SystemTap in more detail, read Architecture of SystemTap: a Linux trace/probe tool.
/* Standard template footer */ $template->displayFooter('$Date: 2005/07/12 16:38:46 $'); ?>