* Editing the system wide configuration
-You must activate relayfs and specify a mount point. This is typically done in
+You must activate debugfs and specify a mount point. This is typically done in
fstab such that it happens at boot time.
-If you have never used RelayFS before, these operation would do this for you :
+If you have never used DebugFS before, these operation would do this for you :
-mkdir /mnt/relayfs
+mkdir /mnt/debugfs
cp /etc/fstab /etc/fstab.lttng.bkp
-echo "relayfs /mnt/relayfs relayfs rw 0 0" >> /etc/fstab
+echo "debugfs /mnt/debugfs debugfs rw 0 0" >> /etc/fstab
-then, rebooting or issuing the following command will activate relayfs :
+then, rebooting or issuing the following command will activate debugfs :
-mount /mnt/relayfs
+mount /mnt/debugfs
You need to load the ltt-control module to be able to control tracing from user
space. This is done by issuing the command :
Start tracing :
-lttctl -n trace -d -l /mnt/relayfs/ltt -t /tmp/trace
+lttctl -n trace -d -l /mnt/debugfs/ltt -t /tmp/trace
Stop tracing and destroy trace channels :
AC_PREREQ(2.57)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
#AC_WITH_LTDL # not needed ?
-AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.60-13092006)
+AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.61-16092006)
AM_CONFIG_HEADER(config.h)
AM_PROG_LIBTOOL
tcd->channel_dir_label = gtk_label_new("Channel directory:");
gtk_widget_show (tcd->channel_dir_label);
tcd->channel_dir_entry = gtk_entry_new();
- gtk_entry_set_text(GTK_ENTRY(tcd->channel_dir_entry),"/mnt/relayfs/ltt");
+ gtk_entry_set_text(GTK_ENTRY(tcd->channel_dir_entry),"/mnt/debugfs/ltt");
gtk_widget_show (tcd->channel_dir_entry);
gtk_table_attach( GTK_TABLE(tcd->main_box),tcd->channel_dir_label,0,2,2,3,GTK_FILL,GTK_FILL,2,2);
gtk_table_attach( GTK_TABLE(tcd->main_box),tcd->channel_dir_entry,2,6,2,3,GTK_FILL|GTK_EXPAND|GTK_SHRINK,GTK_FILL,0,0);