X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Ftracefile.c;h=e2db16122004fc5a44c604507608f90c19aed611;hb=c7d44cfc0060d9108a4dc57629d8722d15e160f6;hp=0af8976a170b4f6537f5139d63c4bb5e33950b67;hpb=9f797243e1537f470b67cd27ff2030bfd2d89bcb;p=lttv.git diff --git a/ltt/branches/poly/ltt/tracefile.c b/ltt/branches/poly/ltt/tracefile.c index 0af8976a..e2db1612 100644 --- a/ltt/branches/poly/ltt/tracefile.c +++ b/ltt/branches/poly/ltt/tracefile.c @@ -1,3 +1,21 @@ +/* This file is part of the Linux Trace Toolkit viewer + * Copyright (C) 2003-2004 Xiangxiu Yang + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License Version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA. + */ + #include #include #include @@ -349,7 +367,8 @@ void getCpuFileInfo(LttTrace *t, char* cpu) while((entry = readdir(dir)) != NULL){ if(strcmp(entry->d_name,".") != 0 && - strcmp(entry->d_name,"..") != 0 ){ + strcmp(entry->d_name,"..") != 0 && + strcmp(entry->d_name,".svn") != 0){ strcpy(name,cpu); strcat(name,entry->d_name); ltt_tracefile_open_cpu(t,name); @@ -365,6 +384,10 @@ void getCpuFileInfo(LttTrace *t, char* cpu) * *When a trace is closed, all the associated facilities, types and fields *are released as well. + * + * MD : If pathname is already absolute, we do not add current working + * directory to it. + * ****************************************************************************/ void get_absolute_pathname(const char *pathname, char * abs_pathname) @@ -372,11 +395,19 @@ void get_absolute_pathname(const char *pathname, char * abs_pathname) char * ptr, *ptr1; size_t size = DIR_NAME_SIZE; abs_pathname[0] = '\0'; + + if(pathname[0] == '/') + { + strcat(abs_pathname, pathname); + return; + } + if(!getcwd(abs_pathname, size)){ g_warning("Can not get current working directory\n"); strcat(abs_pathname, pathname); return; } + strcat(abs_pathname,"/"); ptr = (char*)pathname;