babeltrace-1.2.1/0000755000175000017500000000000012306621160010575 500000000000000babeltrace-1.2.1/mit-license.txt0000644000175000017500000000202212075630002013461 00000000000000Copyright (c) ... Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. babeltrace-1.2.1/config/0000755000175000017500000000000012306621156012047 500000000000000babeltrace-1.2.1/config/depcomp0000755000175000017500000004426711540013526013354 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u="sed s,\\\\\\\\,/,g" depmode=msvisualcpp fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: babeltrace-1.2.1/config/py-compile0000755000175000017500000001040012011302632013752 00000000000000#!/bin/sh # py-compile - Compile a Python program scriptversion=2011-06-08.12; # UTC # Copyright (C) 2000, 2001, 2003, 2004, 2005, 2008, 2009, 2011 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . if [ -z "$PYTHON" ]; then PYTHON=python fi me=py-compile usage_error () { echo "$me: $*" >&2 echo "Try \`$me --help' for more information." >&2 exit 1 } basedir= destdir= while test $# -ne 0; do case "$1" in --basedir) if test $# -lt 2; then usage_error "option '--basedir' requires an argument" else basedir=$2 fi shift ;; --destdir) if test $# -lt 2; then usage_error "option '--destdir' requires an argument" else destdir=$2 fi shift ;; -h|--help) cat <<\EOF Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..." Byte compile some python scripts FILES. Use --destdir to specify any leading directory path to the FILES that you don't want to include in the byte compiled file. Specify --basedir for any additional path information you do want to be shown in the byte compiled file. Example: py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py Report bugs to . EOF exit $? ;; -v|--version) echo "$me $scriptversion" exit $? ;; --) shift break ;; -*) usage_error "unrecognized option '$1'" ;; *) break ;; esac shift done files=$* if test -z "$files"; then usage_error "no files given" fi # if basedir was given, then it should be prepended to filenames before # byte compilation. if [ -z "$basedir" ]; then pathtrans="path = file" else pathtrans="path = os.path.join('$basedir', file)" fi # if destdir was given, then it needs to be prepended to the filename to # byte compile but not go into the compiled file. if [ -z "$destdir" ]; then filetrans="filepath = path" else filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)" fi $PYTHON -c " import sys, os, py_compile files = '''$files''' sys.stdout.write('Byte-compiling python modules...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() py_compile.compile(filepath, filepath + 'c', path) sys.stdout.write('\n')" || exit $? # this will fail for python < 1.5, but that doesn't matter ... $PYTHON -O -c " import sys, os, py_compile files = '''$files''' sys.stdout.write('Byte-compiling python modules (optimized versions) ...\n') for file in files.split(): $pathtrans $filetrans if not os.path.exists(filepath) or not (len(filepath) >= 3 and filepath[-3:] == '.py'): continue sys.stdout.write(file) sys.stdout.flush() py_compile.compile(filepath, filepath + 'o', path) sys.stdout.write('\n')" 2>/dev/null || : # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: babeltrace-1.2.1/config/ltmain.sh0000644000175000017500000105202612306621076013616 00000000000000 # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.1 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.2 Debian-2.4.2-1.1" TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 babeltrace-1.2.1/config/missing0000755000175000017500000002623311540013527013370 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: babeltrace-1.2.1/config/config.sub0000755000175000017500000010532712123363416013761 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-04-18' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # 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, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i386-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: babeltrace-1.2.1/config/config.guess0000755000175000017500000012743212123363416014317 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. timestamp='2012-02-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # 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, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-gnueabi else echo ${UNAME_MACHINE}-unknown-linux-gnueabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-gnu exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: babeltrace-1.2.1/config/ylwrap0000755000175000017500000001404311540013527013231 00000000000000#! /bin/sh # ylwrap - wrapper for lex/yacc invocations. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005, # 2007, 2009 Free Software Foundation, Inc. # # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # 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, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . case "$1" in '') echo "$0: No files given. Try \`$0 --help' for more information." 1>&2 exit 1 ;; --basedir) basedir=$2 shift 2 ;; -h|--h*) cat <<\EOF Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]... Wrapper for lex/yacc invocations, renaming files as desired. INPUT is the input file OUTPUT is one file PROG generates DESIRED is the file we actually want instead of OUTPUT PROGRAM is program to run ARGS are passed to PROG Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF exit $? ;; -v|--v*) echo "ylwrap $scriptversion" exit $? ;; esac # The input. input="$1" shift case "$input" in [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) # Relative path. Make it absolute. input="`pwd`/$input" ;; esac pairlist= while test "$#" -ne 0; do if test "$1" = "--"; then shift break fi pairlist="$pairlist $1" shift done # The program to run. prog="$1" shift # Make any relative path in $prog absolute. case "$prog" in [\\/]* | ?:[\\/]*) ;; *[\\/]*) prog="`pwd`/$prog" ;; esac # FIXME: add hostname here for parallel makes that run commands on # other machines. But that might take us over the 14-char limit. dirname=ylwrap$$ trap "cd '`pwd`'; rm -rf $dirname > /dev/null 2>&1" 1 2 3 15 mkdir $dirname || exit 1 cd $dirname case $# in 0) "$prog" "$input" ;; *) "$prog" "$@" "$input" ;; esac ret=$? if test $ret -eq 0; then set X $pairlist shift first=yes # Since DOS filename conventions don't allow two dots, # the DOS version of Bison writes out y_tab.c instead of y.tab.c # and y_tab.h instead of y.tab.h. Test to see if this is the case. y_tab_nodot="no" if test -f y_tab.c || test -f y_tab.h; then y_tab_nodot="yes" fi # The directory holding the input. input_dir=`echo "$input" | sed -e 's,\([\\/]\)[^\\/]*$,\1,'` # Quote $INPUT_DIR so we can use it in a regexp. # FIXME: really we should care about more than `.' and `\'. input_rx=`echo "$input_dir" | sed 's,\\\\,\\\\\\\\,g;s,\\.,\\\\.,g'` while test "$#" -ne 0; do from="$1" # Handle y_tab.c and y_tab.h output by DOS if test $y_tab_nodot = "yes"; then if test $from = "y.tab.c"; then from="y_tab.c" else if test $from = "y.tab.h"; then from="y_tab.h" fi fi fi if test -f "$from"; then # If $2 is an absolute path name, then just use that, # otherwise prepend `../'. case "$2" in [\\/]* | ?:[\\/]*) target="$2";; *) target="../$2";; esac # We do not want to overwrite a header file if it hasn't # changed. This avoid useless recompilations. However the # parser itself (the first file) should always be updated, # because it is the destination of the .y.c rule in the # Makefile. Divert the output of all other files to a temporary # file so we can compare them to existing versions. if test $first = no; then realtarget="$target" target="tmp-`echo $target | sed s/.*[\\/]//g`" fi # Edit out `#line' or `#' directives. # # We don't want the resulting debug information to point at # an absolute srcdir; it is better for it to just mention the # .y file with no path. # # We want to use the real output file name, not yy.lex.c for # instance. # # We want the include guards to be adjusted too. FROM=`echo "$from" | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'\ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'` TARGET=`echo "$2" | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'\ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g'` sed -e "/^#/!b" -e "s,$input_rx,," -e "s,$from,$2," \ -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$? # Check whether header files must be updated. if test $first = no; then if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then echo "$2" is unchanged rm -f "$target" else echo updating "$2" mv -f "$target" "$realtarget" fi fi else # A missing file is only an error for the first file. This # is a blatant hack to let us support using "yacc -d". If -d # is not specified, we don't want an error when the header # file is "missing". if test $first = yes; then ret=1 fi fi shift shift first=no done else ret=$? fi # Remove the directory. cd .. rm -rf $dirname exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: babeltrace-1.2.1/config/install-sh0000755000175000017500000003253711540013526014000 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: babeltrace-1.2.1/bindings/0000755000175000017500000000000012306621160012372 500000000000000babeltrace-1.2.1/bindings/python/0000755000175000017500000000000012306621160013713 500000000000000babeltrace-1.2.1/bindings/python/Makefile.am0000644000175000017500000000202012304150543015661 00000000000000babeltrace.i: babeltrace.i.in sed "s/BABELTRACE_VERSION_STR/Babeltrace $(PACKAGE_VERSION)/g" < \ $(top_srcdir)/bindings/python/babeltrace.i.in > \ $(top_builddir)/bindings/python/babeltrace.i AM_CFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ EXTRA_DIST = babeltrace.i.in nodist_python_PYTHON = babeltrace.py pyexec_LTLIBRARIES = _babeltrace.la MAINTAINERCLEANFILES = babeltrace_wrap.c babeltrace.py nodist__babeltrace_la_SOURCES = babeltrace_wrap.c _babeltrace_la_SOURCES = python-complements.h python-complements.c _babeltrace_la_LDFLAGS = -module _babeltrace_la_CFLAGS = $(GLIB_CFLAGS) $(AM_CFLAGS) _babeltrace_la_LIBS = $(GLIB_LIBS) _babeltrace_la_LIBADD = $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la # SWIG 'warning md variable unused' fixed after SWIG build: babeltrace_wrap.c: babeltrace.i $(SWIG) -python -Wall -I. -I$(top_srcdir)/include \ $(top_builddir)/bindings/python/babeltrace.i CLEANFILES = babeltrace.i babeltrace.py babeltrace_wrap.c babeltrace-1.2.1/bindings/python/Makefile.in0000644000175000017500000006117612306621104015711 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = bindings/python DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(pythondir)" LTLIBRARIES = $(pyexec_LTLIBRARIES) _babeltrace_la_DEPENDENCIES = \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la am__babeltrace_la_OBJECTS = _babeltrace_la-python-complements.lo nodist__babeltrace_la_OBJECTS = _babeltrace_la-babeltrace_wrap.lo _babeltrace_la_OBJECTS = $(am__babeltrace_la_OBJECTS) \ $(nodist__babeltrace_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent _babeltrace_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(_babeltrace_la_CFLAGS) $(CFLAGS) $(_babeltrace_la_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(_babeltrace_la_SOURCES) $(nodist__babeltrace_la_SOURCES) DIST_SOURCES = $(_babeltrace_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile) py_compile = $(top_srcdir)/config/py-compile ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PYTHON_INCLUDE) -I$(top_srcdir)/include/ EXTRA_DIST = babeltrace.i.in nodist_python_PYTHON = babeltrace.py pyexec_LTLIBRARIES = _babeltrace.la MAINTAINERCLEANFILES = babeltrace_wrap.c babeltrace.py nodist__babeltrace_la_SOURCES = babeltrace_wrap.c _babeltrace_la_SOURCES = python-complements.h python-complements.c _babeltrace_la_LDFLAGS = -module _babeltrace_la_CFLAGS = $(GLIB_CFLAGS) $(AM_CFLAGS) _babeltrace_la_LIBS = $(GLIB_LIBS) _babeltrace_la_LIBADD = $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la CLEANFILES = babeltrace.i babeltrace.py babeltrace_wrap.c all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign bindings/python/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign bindings/python/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-pyexecLTLIBRARIES: $(pyexec_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(pyexecdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pyexecdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pyexecdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pyexecdir)"; \ } uninstall-pyexecLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(pyexec_LTLIBRARIES)'; test -n "$(pyexecdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pyexecdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pyexecdir)/$$f"; \ done clean-pyexecLTLIBRARIES: -test -z "$(pyexec_LTLIBRARIES)" || rm -f $(pyexec_LTLIBRARIES) @list='$(pyexec_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done _babeltrace.la: $(_babeltrace_la_OBJECTS) $(_babeltrace_la_DEPENDENCIES) $(EXTRA__babeltrace_la_DEPENDENCIES) $(AM_V_CCLD)$(_babeltrace_la_LINK) -rpath $(pyexecdir) $(_babeltrace_la_OBJECTS) $(_babeltrace_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_babeltrace_la-babeltrace_wrap.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/_babeltrace_la-python-complements.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< _babeltrace_la-python-complements.lo: python-complements.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_babeltrace_la_CFLAGS) $(CFLAGS) -MT _babeltrace_la-python-complements.lo -MD -MP -MF $(DEPDIR)/_babeltrace_la-python-complements.Tpo -c -o _babeltrace_la-python-complements.lo `test -f 'python-complements.c' || echo '$(srcdir)/'`python-complements.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/_babeltrace_la-python-complements.Tpo $(DEPDIR)/_babeltrace_la-python-complements.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='python-complements.c' object='_babeltrace_la-python-complements.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_babeltrace_la_CFLAGS) $(CFLAGS) -c -o _babeltrace_la-python-complements.lo `test -f 'python-complements.c' || echo '$(srcdir)/'`python-complements.c _babeltrace_la-babeltrace_wrap.lo: babeltrace_wrap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_babeltrace_la_CFLAGS) $(CFLAGS) -MT _babeltrace_la-babeltrace_wrap.lo -MD -MP -MF $(DEPDIR)/_babeltrace_la-babeltrace_wrap.Tpo -c -o _babeltrace_la-babeltrace_wrap.lo `test -f 'babeltrace_wrap.c' || echo '$(srcdir)/'`babeltrace_wrap.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/_babeltrace_la-babeltrace_wrap.Tpo $(DEPDIR)/_babeltrace_la-babeltrace_wrap.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='babeltrace_wrap.c' object='_babeltrace_la-babeltrace_wrap.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(_babeltrace_la_CFLAGS) $(CFLAGS) -c -o _babeltrace_la-babeltrace_wrap.lo `test -f 'babeltrace_wrap.c' || echo '$(srcdir)/'`babeltrace_wrap.c mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-nodist_pythonPYTHON: $(nodist_python_PYTHON) @$(NORMAL_INSTALL) @list='$(nodist_python_PYTHON)'; dlist=; list2=; test -n "$(pythondir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pythondir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pythondir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ $(am__strip_dir) \ dlist="$$dlist $$f"; \ list2="$$list2 $$b$$p"; \ else :; fi; \ done; \ for file in $$list2; do echo $$file; done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pythondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pythondir)" || exit $$?; \ done || exit $$?; \ if test -n "$$dlist"; then \ $(am__py_compile) --destdir "$(DESTDIR)" \ --basedir "$(pythondir)" $$dlist; \ else :; fi uninstall-nodist_pythonPYTHON: @$(NORMAL_UNINSTALL) @list='$(nodist_python_PYTHON)'; test -n "$(pythondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ dir='$(DESTDIR)$(pythondir)'; \ filesc=`echo "$$files" | sed 's|$$|c|'`; \ fileso=`echo "$$files" | sed 's|$$|o|'`; \ st=0; \ for files in "$$files" "$$filesc" "$$fileso"; do \ $(am__uninstall_files_from_dir) || st=$$?; \ done; \ exit $$st ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(pyexecdir)" "$(DESTDIR)$(pythondir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-pyexecLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-nodist_pythonPYTHON install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-pyexecLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-nodist_pythonPYTHON \ uninstall-pyexecLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-pyexecLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-nodist_pythonPYTHON install-pdf install-pdf-am \ install-ps install-ps-am install-pyexecLTLIBRARIES \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-nodist_pythonPYTHON uninstall-pyexecLTLIBRARIES babeltrace.i: babeltrace.i.in sed "s/BABELTRACE_VERSION_STR/Babeltrace $(PACKAGE_VERSION)/g" < \ $(top_srcdir)/bindings/python/babeltrace.i.in > \ $(top_builddir)/bindings/python/babeltrace.i # SWIG 'warning md variable unused' fixed after SWIG build: babeltrace_wrap.c: babeltrace.i $(SWIG) -python -Wall -I. -I$(top_srcdir)/include \ $(top_builddir)/bindings/python/babeltrace.i # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/bindings/python/python-complements.h0000644000175000017500000000475712304150543017666 00000000000000/* * python-complements.h * * Babeltrace Python module complements header, required for Python bindings * * Copyright 2012 EfficiOS Inc. * * Author: Danny Serres * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ #include #include #include #include #include #include #include #include #include /* File */ FILE *_bt_file_open(char *file_path, char *mode); void _bt_file_close(FILE *fp); /* ctf-field-list */ struct bt_definition **_bt_python_field_listcaller( const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, unsigned int *len); struct bt_definition *_bt_python_field_one_from_list( struct bt_definition **list, int index); /* event_decl_list */ struct bt_ctf_event_decl **_bt_python_event_decl_listcaller( int handle_id, struct bt_context *ctx, unsigned int *len); struct bt_ctf_event_decl *_bt_python_decl_one_from_list( struct bt_ctf_event_decl **list, int index); /* decl_fields */ struct bt_ctf_field_decl **_by_python_field_decl_listcaller( struct bt_ctf_event_decl *event_decl, enum bt_ctf_scope scope, unsigned int *len); struct bt_ctf_field_decl *_bt_python_field_decl_one_from_list( struct bt_ctf_field_decl **list, int index); /* definitions */ struct definition_array *_bt_python_get_array_from_def( struct bt_definition *field); struct definition_sequence *_bt_python_get_sequence_from_def( struct bt_definition *field); struct bt_declaration *_bt_python_get_array_element_declaration( struct bt_declaration *field); const char *_bt_python_get_array_string(struct bt_definition *field); /* ctf writer */ int _bt_python_field_integer_get_signedness(const struct bt_ctf_field *field); enum ctf_type_id _bt_python_get_field_type(const struct bt_ctf_field *field); babeltrace-1.2.1/bindings/python/python-complements.c0000644000175000017500000001116512304150543017650 00000000000000/* * python-complements.c * * Babeltrace Python module complements, required for Python bindings * * Copyright 2012 EfficiOS Inc. * * Author: Danny Serres * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ #include "python-complements.h" #include #include /* FILE functions ---------------------------------------------------- */ FILE *_bt_file_open(char *file_path, char *mode) { FILE *fp = stdout; if (file_path != NULL) fp = fopen(file_path, mode); return fp; } void _bt_file_close(FILE *fp) { if (fp != NULL) fclose(fp); } /* List-related functions ---------------------------------------------------- */ /* ctf-field-list */ struct bt_definition **_bt_python_field_listcaller( const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, unsigned int *len) { struct bt_definition **list; int ret; ret = bt_ctf_get_field_list(ctf_event, scope, (const struct bt_definition * const **)&list, len); if (ret < 0) /* For python to know an error occured */ list = NULL; return list; } struct bt_definition *_bt_python_field_one_from_list( struct bt_definition **list, int index) { return list[index]; } /* event_decl_list */ struct bt_ctf_event_decl **_bt_python_event_decl_listcaller( int handle_id, struct bt_context *ctx, unsigned int *len) { struct bt_ctf_event_decl **list; int ret; ret = bt_ctf_get_event_decl_list(handle_id, ctx, (struct bt_ctf_event_decl * const **)&list, len); if (ret < 0) /* For python to know an error occured */ list = NULL; return list; } struct bt_ctf_event_decl *_bt_python_decl_one_from_list( struct bt_ctf_event_decl **list, int index) { return list[index]; } /* decl_fields */ struct bt_ctf_field_decl **_by_python_field_decl_listcaller( struct bt_ctf_event_decl *event_decl, enum bt_ctf_scope scope, unsigned int *len) { struct bt_ctf_field_decl **list; int ret; ret = bt_ctf_get_decl_fields(event_decl, scope, (const struct bt_ctf_field_decl * const **)&list, len); if (ret < 0) /* For python to know an error occured */ list = NULL; return list; } struct bt_ctf_field_decl *_bt_python_field_decl_one_from_list( struct bt_ctf_field_decl **list, int index) { return list[index]; } struct definition_array *_bt_python_get_array_from_def( struct bt_definition *field) { const struct bt_declaration *array_decl; struct definition_array *array = NULL; if (!field) { goto end; } array_decl = bt_ctf_get_decl_from_def(field); if (bt_ctf_field_type(array_decl) == CTF_TYPE_ARRAY) { array = container_of(field, struct definition_array, p); } end: return array; } struct bt_declaration *_bt_python_get_array_element_declaration( struct bt_declaration *field) { struct declaration_array *array_decl; struct bt_declaration *ret = NULL; if (!field) { goto end; } array_decl = container_of(field, struct declaration_array, p); ret = array_decl->elem; end: return ret; } const char *_bt_python_get_array_string(struct bt_definition *field) { struct definition_array *array; const char *ret = NULL; if (!field) { goto end; } array = container_of(field, struct definition_array, p); ret = array->string->str; end: return ret; } struct definition_sequence *_bt_python_get_sequence_from_def( struct bt_definition *field) { if (field && bt_ctf_field_type( bt_ctf_get_decl_from_def(field)) == CTF_TYPE_SEQUENCE) { return container_of(field, struct definition_sequence, p); } return NULL; } int _bt_python_field_integer_get_signedness(const struct bt_ctf_field *field) { int ret; if (!field || field->type->declaration->id != CTF_TYPE_INTEGER) { ret = -1; goto end; } const struct bt_ctf_field_type_integer *type = container_of(field->type, const struct bt_ctf_field_type_integer, parent); ret = type->declaration.signedness; end: return ret; } enum ctf_type_id _bt_python_get_field_type(const struct bt_ctf_field *field) { enum ctf_type_id type_id = CTF_TYPE_UNKNOWN; if (!field) { goto end; } type_id = field->type->declaration->id; end: return type_id; } babeltrace-1.2.1/bindings/python/babeltrace.i.in0000644000175000017500000023106012304150543016500 00000000000000/* * babeltrace.i.in * * Babeltrace Python Module interface file * * Copyright 2012 EfficiOS Inc. * * Author: Danny Serres * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ %define DOCSTRING "BABELTRACE_VERSION_STR Babeltrace is a trace viewer and converter reading and writing the Common Trace Format (CTF). Its main use is to pretty-print CTF traces into a human-readable text output. To use this module, the first step is to create a TraceCollection and add a trace to it." %enddef %module(docstring=DOCSTRING) babeltrace %include "typemaps.i" %{ #define SWIG_FILE_WITH_INIT #include #include #include #include #include #include #include #include #include #include #include #include #include "python-complements.h" #include #include #include #include #include #include %} typedef unsigned long long uint64_t; typedef long long int64_t; typedef int bt_intern_str; typedef int64_t ssize_t; /* ================================================================= PYTHON-COMPLEMENTS.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ FILE *_bt_file_open(char *file_path, char *mode); void _bt_file_close(FILE *fp); struct bt_definition **_bt_python_field_listcaller( const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, unsigned int *OUTPUT); struct bt_definition *_bt_python_field_one_from_list( struct bt_definition **list, int index); struct bt_ctf_event_decl **_bt_python_event_decl_listcaller( int handle_id, struct bt_context *ctx, unsigned int *OUTPUT); struct bt_ctf_event_decl *_bt_python_decl_one_from_list( struct bt_ctf_event_decl **list, int index); struct bt_ctf_field_decl **_by_python_field_decl_listcaller( struct bt_ctf_event_decl *event_decl, enum bt_ctf_scope scope, unsigned int *OUTPUT); struct bt_ctf_field_decl *_bt_python_field_decl_one_from_list( struct bt_ctf_field_decl **list, int index); struct definition_array *_bt_python_get_array_from_def( struct bt_definition *field); struct definition_sequence *_bt_python_get_sequence_from_def( struct bt_definition *field); struct bt_declaration *_bt_python_get_array_element_declaration( struct bt_declaration *field); const char *_bt_python_get_array_string(struct bt_definition *field); int _bt_python_field_integer_get_signedness(const struct bt_ctf_field *field); enum ctf_type_id _bt_python_get_field_type(const struct bt_ctf_field *field); /* ================================================================= CONTEXT.H, CONTEXT-INTERNAL.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_context_create") bt_context_create(void); %rename("_bt_context_add_trace") bt_context_add_trace( struct bt_context *ctx, const char *path, const char *format, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), struct bt_mmap_stream_list *stream_list, FILE *metadata); %rename("_bt_context_remove_trace") bt_context_remove_trace( struct bt_context *ctx, int trace_id); %rename("_bt_context_get") bt_context_get(struct bt_context *ctx); %rename("_bt_context_put") bt_context_put(struct bt_context *ctx); %rename("_bt_ctf_event_get_context") bt_ctf_event_get_context( const struct bt_ctf_event *event); struct bt_context *bt_context_create(void); int bt_context_add_trace(struct bt_context *ctx, const char *path, const char *format, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), struct bt_mmap_stream_list *stream_list, FILE *metadata); void bt_context_remove_trace(struct bt_context *ctx, int trace_id); void bt_context_get(struct bt_context *ctx); void bt_context_put(struct bt_context *ctx); struct bt_context *bt_ctf_event_get_context(const struct bt_ctf_event *event); // class TraceCollection to prevent direct access to struct bt_context %pythoncode%{ class TraceCollection: """ The TraceCollection is the object that contains all currently opened traces. """ def __init__(self): self._tc = _bt_context_create() def __del__(self): _bt_context_put(self._tc) def add_trace(self, path, format_str): """ Add a trace by path to the TraceCollection. Open a trace. path is the path to the trace, it is not recursive. If "path" is None, stream_list is used instead as a list of mmap streams to open for the trace. format is a string containing the format name in which the trace was produced. Return: the corresponding TraceHandle on success or None on error. """ ret = _bt_context_add_trace(self._tc, path, format_str, None, None, None) if ret < 0: return None th = TraceHandle.__new__(TraceHandle) th._id = ret th._trace_collection = self return th def add_traces_recursive(self, path, format_str): """ Open a trace recursively. Find each trace present in the subdirectory starting from the given path, and add them to the TraceCollection. Return a dict of TraceHandle instances (the full path is the key). Return None on error. """ import os trace_handles = {} noTrace = True error = False for fullpath, dirs, files in os.walk(path): if "metadata" in files: trace_handle = self.add_trace(fullpath, format_str) if trace_handle is None: error = True continue trace_handles[fullpath] = trace_handle noTrace = False if noTrace and error: return None return trace_handles def remove_trace(self, trace_handle): """ Remove a trace from the TraceCollection. Effectively closing the trace. """ try: _bt_context_remove_trace(self._tc, trace_handle._id) except AttributeError: raise TypeError("in remove_trace, " "argument 2 must be a TraceHandle instance") @property def events(self): """ Generator function to iterate over the events of open in the current TraceCollection. """ begin_pos_ptr = _bt_iter_pos() end_pos_ptr = _bt_iter_pos() begin_pos_ptr.type = SEEK_BEGIN end_pos_ptr.type = SEEK_LAST for event in self._events(begin_pos_ptr, end_pos_ptr): yield event def events_timestamps(self, timestamp_begin, timestamp_end): """ Generator function to iterate over the events of open in the current TraceCollection from timestamp_begin to timestamp_end. """ begin_pos_ptr = _bt_iter_pos() end_pos_ptr = _bt_iter_pos() begin_pos_ptr.type = end_pos_ptr.type = SEEK_TIME begin_pos_ptr.u.seek_time = timestamp_begin end_pos_ptr.u.seek_time = timestamp_end for event in self._events(begin_pos_ptr, end_pos_ptr): yield event @property def timestamp_begin(self): pos_ptr = _bt_iter_pos() pos_ptr.type = SEEK_BEGIN return self._timestamp_at_pos(pos_ptr) @property def timestamp_end(self): pos_ptr = _bt_iter_pos() pos_ptr.type = SEEK_LAST return self._timestamp_at_pos(pos_ptr) def _timestamp_at_pos(self, pos_ptr): ctf_it_ptr = _bt_ctf_iter_create(self._tc, pos_ptr, pos_ptr) if ctf_it_ptr is None: raise NotImplementedError("Creation of multiple iterators is unsupported.") ev_ptr = _bt_ctf_iter_read_event(ctf_it_ptr) _bt_ctf_iter_destroy(ctf_it_ptr) if ev_ptr is None: return None; def _events(self, begin_pos_ptr, end_pos_ptr): ctf_it_ptr = _bt_ctf_iter_create(self._tc, begin_pos_ptr, end_pos_ptr) if ctf_it_ptr is None: raise NotImplementedError( "Creation of multiple iterators is unsupported.") while True: ev_ptr = _bt_ctf_iter_read_event(ctf_it_ptr) if ev_ptr is None: break ev = Event.__new__(Event) ev._e = ev_ptr try: yield ev except GeneratorExit: break ret = _bt_iter_next(_bt_ctf_get_iter(ctf_it_ptr)) if ret != 0: break _bt_ctf_iter_destroy(ctf_it_ptr) %} /* ================================================================= FORMAT.H, REGISTRY ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("lookup_format") bt_lookup_format(bt_intern_str qname); %rename("_bt_print_format_list") bt_fprintf_format_list(FILE *fp); %rename("register_format") bt_register_format(struct format *format); %rename("unregister_format") bt_unregister_format(struct bt_format *format); extern struct format *bt_lookup_format(bt_intern_str qname); extern void bt_fprintf_format_list(FILE *fp); extern int bt_register_format(struct bt_format *format); extern void bt_unregister_format(struct bt_format *format); %pythoncode %{ def print_format_list(babeltrace_file): """ Print a list of available formats to file. babeltrace_file must be a File instance opened in write mode. """ try: if babeltrace_file._file is not None: _bt_print_format_list(babeltrace_file._file) except AttributeError: raise TypeError("in print_format_list, " "argument 1 must be a File instance") %} /* ================================================================= ITERATOR.H, ITERATOR-INTERNAL.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_iter_create") bt_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); %rename("_bt_iter_destroy") bt_iter_destroy(struct bt_iter *iter); %rename("_bt_iter_next") bt_iter_next(struct bt_iter *iter); %rename("_bt_iter_get_pos") bt_iter_get_pos(struct bt_iter *iter); %rename("_bt_iter_free_pos") bt_iter_free_pos(struct bt_iter_pos *pos); %rename("_bt_iter_set_pos") bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); %rename("_bt_iter_create_time_pos") bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp); struct bt_iter *bt_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); void bt_iter_destroy(struct bt_iter *iter); int bt_iter_next(struct bt_iter *iter); struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter); void bt_iter_free_pos(struct bt_iter_pos *pos); int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp); %rename("_bt_iter_pos") bt_iter_pos; %rename("SEEK_TIME") BT_SEEK_TIME; %rename("SEEK_RESTORE") BT_SEEK_RESTORE; %rename("SEEK_CUR") BT_SEEK_CUR; %rename("SEEK_BEGIN") BT_SEEK_BEGIN; %rename("SEEK_LAST") BT_SEEK_LAST; // This struct is taken from iterator.h // All changes to the struct must also be made here struct bt_iter_pos { enum { BT_SEEK_TIME, /* uses u.seek_time */ BT_SEEK_RESTORE, /* uses u.restore */ BT_SEEK_CUR, BT_SEEK_BEGIN, BT_SEEK_LAST } type; union { uint64_t seek_time; struct bt_saved_pos *restore; } u; }; /* ================================================================= TRACE-HANDLE.H, TRACE-HANDLE-INTERNAL.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_trace_handle_create") bt_trace_handle_create(struct bt_context *ctx); %rename("_bt_trace_handle_destroy") bt_trace_handle_destroy(struct bt_trace_handle *bt); struct bt_trace_handle *bt_trace_handle_create(struct bt_context *ctx); void bt_trace_handle_destroy(struct bt_trace_handle *bt); %rename("_bt_trace_handle_get_path") bt_trace_handle_get_path(struct bt_context *ctx, int handle_id); %rename("_bt_trace_handle_get_timestamp_begin") bt_trace_handle_get_timestamp_begin( struct bt_context *ctx, int handle_id, enum bt_clock_type type); %rename("_bt_trace_handle_get_timestamp_end") bt_trace_handle_get_timestamp_end( struct bt_context *ctx, int handle_id, enum bt_clock_type type); const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id); uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id, enum bt_clock_type type); uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id, enum bt_clock_type type); %rename("_bt_ctf_event_get_handle_id") bt_ctf_event_get_handle_id( const struct bt_ctf_event *event); int bt_ctf_event_get_handle_id(const struct bt_ctf_event *event); %pythoncode%{ # Based on enum bt_clock_type in clock-type.h­ class ClockType: CLOCK_CYCLES = 0 CLOCK_REAL = 1 class TraceHandle(object): """ The TraceHandle allows the user to manipulate a trace file directly. It is a unique identifier representing a trace file. Do not instantiate. """ def __init__(self): raise NotImplementedError("TraceHandle cannot be instantiated") def __repr__(self): return "Babeltrace TraceHandle: trace_id('{0}')".format(self._id) @property def id(self): """Return the TraceHandle id.""" return self._id @property def path(self): """Return the path of a TraceHandle.""" return _bt_trace_handle_get_path(self._trace_collection._tc, self._id) @property def timestamp_begin(self): """Return the creation time of the buffers of a trace.""" return _bt_trace_handle_get_timestamp_begin( self._trace_collection._tc, self._id, ClockType.CLOCK_REAL) @property def timestamp_end(self): """Return the destruction timestamp of the buffers of a trace.""" return _bt_trace_handle_get_timestamp_end( self._trace_collection._tc, self._id, ClockType.CLOCK_REAL) @property def events(self): """ Generator returning all events (EventDeclaration) in a trace. """ ret = _bt_python_event_decl_listcaller(self.id, self._trace_collection._tc) if not isinstance(ret, list): return ptr_list, count = ret for i in range(count): tmp = EventDeclaration.__new__(EventDeclaration) tmp._ed = _bt_python_decl_one_from_list(ptr_list, i) yield tmp %} // ================================================================= // CTF // ================================================================= /* ================================================================= ITERATOR.H, EVENTS.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ //Iterator %rename("_bt_ctf_iter_create") bt_ctf_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); %rename("_bt_ctf_get_iter") bt_ctf_get_iter(struct bt_ctf_iter *iter); %rename("_bt_ctf_iter_destroy") bt_ctf_iter_destroy(struct bt_ctf_iter *iter); %rename("_bt_ctf_iter_read_event") bt_ctf_iter_read_event(struct bt_ctf_iter *iter); struct bt_ctf_iter *bt_ctf_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); struct bt_iter *bt_ctf_get_iter(struct bt_ctf_iter *iter); void bt_ctf_iter_destroy(struct bt_ctf_iter *iter); struct bt_ctf_event *bt_ctf_iter_read_event(struct bt_ctf_iter *iter); //Events %rename("_bt_ctf_get_top_level_scope") bt_ctf_get_top_level_scope(const struct bt_ctf_event *event, enum bt_ctf_scope scope); %rename("_bt_ctf_event_name") bt_ctf_event_name(const struct bt_ctf_event *ctf_event); %rename("_bt_ctf_get_timestamp") bt_ctf_get_timestamp( const struct bt_ctf_event *ctf_event); %rename("_bt_ctf_get_cycles") bt_ctf_get_cycles( const struct bt_ctf_event *ctf_event); %rename("_bt_ctf_get_field") bt_ctf_get_field(const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, const char *field); %rename("_bt_ctf_get_index") bt_ctf_get_index(const struct bt_ctf_event *ctf_event, const struct bt_definition *field, unsigned int index); %rename("_bt_ctf_field_name") bt_ctf_field_name(const struct bt_definition *field); %rename("_bt_ctf_field_type") bt_ctf_field_type(const struct bt_declaration *field); %rename("_bt_ctf_get_int_signedness") bt_ctf_get_int_signedness( const struct bt_declaration *field); %rename("_bt_ctf_get_int_base") bt_ctf_get_int_base(const struct bt_declaration *field); %rename("_bt_ctf_get_int_byte_order") bt_ctf_get_int_byte_order( const struct bt_declaration *field); %rename("_bt_ctf_get_int_len") bt_ctf_get_int_len(const struct bt_declaration *field); %rename("_bt_ctf_get_enum_int") bt_ctf_get_enum_int(const struct bt_definition *field); %rename("_bt_ctf_get_enum_str") bt_ctf_get_enum_str(const struct bt_definition *field); %rename("_bt_ctf_get_encoding") bt_ctf_get_encoding(const struct bt_declaration *field); %rename("_bt_ctf_get_array_len") bt_ctf_get_array_len(const struct bt_declaration *field); %rename("_bt_ctf_get_uint64") bt_ctf_get_uint64(const struct bt_definition *field); %rename("_bt_ctf_get_int64") bt_ctf_get_int64(const struct bt_definition *field); %rename("_bt_ctf_get_char_array") bt_ctf_get_char_array(const struct bt_definition *field); %rename("_bt_ctf_get_string") bt_ctf_get_string(const struct bt_definition *field); %rename("_bt_ctf_get_float") bt_ctf_get_float(const struct bt_definition *field); %rename("_bt_ctf_get_variant") bt_ctf_get_variant(const struct bt_definition *field); %rename("_bt_ctf_field_get_error") bt_ctf_field_get_error(void); %rename("_bt_ctf_get_decl_event_name") bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl *event); %rename("_bt_ctf_get_decl_field_name") bt_ctf_get_decl_field_name( const struct bt_ctf_field_decl *field); %rename("_bt_ctf_get_decl_from_def") bt_ctf_get_decl_from_def( const struct bt_definition *field); %rename("_bt_ctf_get_decl_from_field_decl") bt_ctf_get_decl_from_field_decl( const struct bt_ctf_field_decl *field); %rename("_bt_array_index") bt_array_index(struct definition_array *array, uint64_t i); %rename("_bt_sequence_len") bt_sequence_len(struct definition_sequence *sequence); %rename("_bt_sequence_index") bt_sequence_index(struct definition_sequence *sequence, uint64_t i); %rename("_bt_ctf_get_struct_field_count") bt_ctf_get_struct_field_count(const struct bt_definition *structure); %rename("_bt_ctf_get_struct_field_index") bt_ctf_get_struct_field_index(const struct bt_definition *structure, uint64_t i); const struct bt_definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event *ctf_event, enum bt_ctf_scope scope); const char *bt_ctf_event_name(const struct bt_ctf_event *ctf_event); uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *ctf_event); uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *ctf_event); const struct bt_definition *bt_ctf_get_field(const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, const char *field); const struct bt_definition *bt_ctf_get_index(const struct bt_ctf_event *ctf_event, const struct bt_definition *field, unsigned int index); const char *bt_ctf_field_name(const struct bt_definition *field); enum ctf_type_id bt_ctf_field_type(const struct bt_declaration *field); int bt_ctf_get_int_signedness(const struct bt_declaration *field); int bt_ctf_get_int_base(const struct bt_declaration *field); int bt_ctf_get_int_byte_order(const struct bt_declaration *field); ssize_t bt_ctf_get_int_len(const struct bt_declaration *field); const struct bt_definition *bt_ctf_get_enum_int(const struct bt_definition *field); const char *bt_ctf_get_enum_str(const struct bt_definition *field); enum ctf_string_encoding bt_ctf_get_encoding(const struct bt_declaration *field); int bt_ctf_get_array_len(const struct bt_declaration *field); struct bt_definition *bt_array_index(struct definition_array *array, uint64_t i); uint64_t bt_ctf_get_uint64(const struct bt_definition *field); int64_t bt_ctf_get_int64(const struct bt_definition *field); char *bt_ctf_get_char_array(const struct bt_definition *field); char *bt_ctf_get_string(const struct bt_definition *field); double bt_ctf_get_float(const struct bt_definition *field); const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field); int bt_ctf_field_get_error(void); const char *bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl *event); const char *bt_ctf_get_decl_field_name(const struct bt_ctf_field_decl *field); const struct bt_declaration *bt_ctf_get_decl_from_def(const struct bt_definition *field); const struct bt_declaration *bt_ctf_get_decl_from_field_decl(const struct bt_ctf_field_decl *field); uint64_t bt_sequence_len(struct definition_sequence *sequence); struct bt_definition *bt_sequence_index(struct definition_sequence *sequence, uint64_t i); uint64_t bt_ctf_get_struct_field_count(const struct bt_definition *structure); const struct bt_definition *bt_ctf_get_struct_field_index(const struct bt_definition *structure, uint64_t i); %pythoncode%{ class CTFStringEncoding: NONE = 0 UTF8 = 1 ASCII = 2 UNKNOWN = 3 # Based on the enum in ctf-writer/writer.h class ByteOrder: BYTE_ORDER_NATIVE = 0 BYTE_ORDER_LITTLE_ENDIAN = 1 BYTE_ORDER_BIG_ENDIAN = 2 BYTE_ORDER_NETWORK = 3 BYTE_ORDER_UNKNOWN = 4 # Python-specific entry #enum equivalent, accessible constants #These are taken directly from ctf/events.h #All changes to enums must also be made here class CTFTypeId: UNKNOWN = 0 INTEGER = 1 FLOAT = 2 ENUM = 3 STRING = 4 STRUCT = 5 UNTAGGED_VARIANT = 6 VARIANT = 7 ARRAY = 8 SEQUENCE = 9 NR_CTF_TYPES = 10 def type_name(id): name = "UNKNOWN_TYPE" constants = [attr for attr in dir(CTFTypeId) if not callable(getattr(CTFTypeId, attr)) and not attr.startswith("__")] for attr in constants: if getattr(CTFTypeId, attr) == id: name = attr break return name class CTFScope: TRACE_PACKET_HEADER = 0 STREAM_PACKET_CONTEXT = 1 STREAM_EVENT_HEADER = 2 STREAM_EVENT_CONTEXT = 3 EVENT_CONTEXT = 4 EVENT_FIELDS = 5 def scope_name(scope): name = "UNKNOWN_SCOPE" constants = [attr for attr in dir(CTFScope) if not callable(getattr(CTFScope, attr)) and not attr.startswith("__")] for attr in constants: if getattr(CTFScope, attr) == scope: name = attr break return name # Priority of the scopes when searching for event fields _scopes = [CTFScope.EVENT_FIELDS, CTFScope.EVENT_CONTEXT, CTFScope.STREAM_EVENT_CONTEXT, CTFScope.STREAM_EVENT_HEADER, CTFScope.STREAM_PACKET_CONTEXT, CTFScope.TRACE_PACKET_HEADER] import collections class Event(collections.Mapping): """ This class represents an event from the trace. It is obtained using the TraceCollection generator functions. Do not instantiate. """ def __init__(self): raise NotImplementedError("Event cannot be instantiated") @property def name(self): """Return the name of the event or None on error.""" return _bt_ctf_event_name(self._e) @property def cycles(self): """ Return the timestamp of the event as written in the packet (in cycles) or -1ULL on error. """ return _bt_ctf_get_cycles(self._e) @property def timestamp(self): """ Return the timestamp of the event offset with the system clock source or -1ULL on error. """ return _bt_ctf_get_timestamp(self._e) def field_with_scope(self, field_name, scope): """ Get field_name's value in scope. None is returned if no field matches field_name. """ if not scope in _scopes: raise ValueError("Invalid scope provided") field = self._field_with_scope(field_name, scope) if field is not None: return field.value return None def field_list_with_scope(self, scope): """Return a list of field names in scope.""" if not scope in _scopes: raise ValueError("Invalid scope provided") field_names = [] for field in self._field_list_with_scope(scope): field_names.append(field.name) return field_names @property def handle(self): """ Get the TraceHandle associated with this event Return None on error """ ret = _bt_ctf_event_get_handle_id(self._e) if ret < 0: return None th = TraceHandle.__new__(TraceHandle) th._id = ret th._trace_collection = self.get_trace_collection() return th @property def trace_collection(self): """ Get the TraceCollection associated with this event. Return None on error. """ trace_collection = TraceCollection() trace_collection._tc = _bt_ctf_event_get_context(self._e); if trace_collection._tc is None: return None else: return trace_collection def __getitem__(self, field_name): """ Get field_name's value. If the field_name exists in multiple scopes, the first field found is returned. The scopes are searched in the following order: 1) EVENT_FIELDS 2) EVENT_CONTEXT 3) STREAM_EVENT_CONTEXT 4) STREAM_EVENT_HEADER 5) STREAM_PACKET_CONTEXT 6) TRACE_PACKET_HEADER None is returned if no field matches field_name. Use field_with_scope() to explicitly access fields in a given scope. """ field = self._field(field_name) if field is not None: return field.value raise KeyError(field_name) def __iter__(self): for key in self.keys(): yield key def __len__(self): count = 0 for scope in _scopes: scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope) ret = _bt_python_field_listcaller(self._e, scope_ptr) if isinstance(ret, list): count += ret[1] return count def __contains__(self, field_name): return self._field(field_name) is not None def keys(self): """Return a list of field names.""" field_names = set() for scope in _scopes: for name in self.field_list_with_scope(scope): field_names.add(name) return list(field_names) def get(self, field_name, default = None): field = self._field(field_name) if field is None: return default return field.value def items(self): for field in self.keys(): yield (field, self[field]) def _field_with_scope(self, field_name, scope): scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope) if scope_ptr is None: return None definition_ptr = _bt_ctf_get_field(self._e, scope_ptr, field_name) if definition_ptr is None: return None field = _Definition(definition_ptr, scope) return field def _field(self, field_name): field = None for scope in _scopes: field = self._field_with_scope(field_name, scope) if field is not None: break return field def _field_list_with_scope(self, scope): fields = [] scope_ptr = _bt_ctf_get_top_level_scope(self._e, scope) # Returns a list [list_ptr, count]. If list_ptr is NULL, SWIG will only # provide the "count" return value count = 0 list_ptr = None ret = _bt_python_field_listcaller(self._e, scope_ptr) if isinstance(ret, list): list_ptr, count = ret for i in range(count): definition_ptr = _bt_python_field_one_from_list(list_ptr, i) if definition_ptr is not None: definition = _Definition(definition_ptr, scope) fields.append(definition) return fields class FieldError(Exception): def __init__(self, value): self.value = value def __str__(self): return repr(self.value) class EventDeclaration(object): """Event declaration class. Do not instantiate.""" def __init__(self): raise NotImplementedError("EventDeclaration cannot be instantiated") @property def name(self): """Return the name of the event or None on error""" return _bt_ctf_get_decl_event_name(self._ed) @property def fields(self): """ Generator returning all FieldDeclarations of an event, going through each scope in the following order: 1) EVENT_FIELDS 2) EVENT_CONTEXT 3) STREAM_EVENT_CONTEXT 4) STREAM_EVENT_HEADER 5) STREAM_PACKET_CONTEXT 6) TRACE_PACKET_HEADER """ for scope in _scopes: for declaration in self.fields_scope(scope): yield declaration def fields_scope(self, scope): """ Generator returning FieldDeclarations of the current event in scope. """ ret = _by_python_field_decl_listcaller(self._ed, scope) if not isinstance(ret, list): return list_ptr, count = ret for i in range(count): field_declaration_ptr = _bt_python_field_decl_one_from_list(list_ptr, i) if field_declaration_ptr is not None: declaration_ptr = _bt_ctf_get_decl_from_field_decl(field_declaration_ptr) field_declaration = _create_field_declaration(declaration_ptr, _bt_ctf_get_decl_field_name(field_declaration_ptr), scope) yield field_declaration class FieldDeclaration(object): """Field declaration class. Do not instantiate.""" def __init__(self): raise NotImplementedError("FieldDeclaration cannot be instantiated") def __repr__(self): return "({0}) {1} {2}".format(CTFScope.scope_name(self.scope), CTFTypeId.type_name(self.type), self.name) @property def name(self): """Return the name of a FieldDeclaration or None on error.""" return self._name @property def type(self): """ Return the FieldDeclaration's type. One of the entries in class CTFTypeId. """ return _bt_ctf_field_type(self._fd) @property def scope(self): """ Return the FieldDeclaration's scope. """ return self._s class IntegerFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("IntegerFieldDeclaration cannot be instantiated") @property def signedness(self): """ Return the signedness of an integer: 0 if unsigned; 1 if signed; -1 on error. """ return _bt_ctf_get_int_signedness(self._fd) @property def base(self): """Return the base of an int or a negative value on error.""" return _bt_ctf_get_int_base(self._fd) @property def byte_order(self): """ Return the byte order. One of class ByteOrder's entries. """ ret = _bt_ctf_get_int_byte_order(self._fd) if ret == 1234: return ByteOrder.BYTE_ORDER_LITTLE_ENDIAN elif ret == 4321: return ByteOrder.BYTE_ORDER_BIG_ENDIAN else: return ByteOrder.BYTE_ORDER_UNKNOWN @property def length(self): """ Return the size, in bits, of an int or a negative value on error. """ return _bt_ctf_get_int_len(self._fd) @property def encoding(self): """ Return the encoding. One of class CTFStringEncoding's entries. Return a negative value on error. """ return _bt_ctf_get_encoding(self._fd) class EnumerationFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("EnumerationFieldDeclaration cannot be instantiated") class ArrayFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("ArrayFieldDeclaration cannot be instantiated") @property def length(self): """ Return the length of an array or a negative value on error. """ return _bt_ctf_get_array_len(self._fd) @property def element_declaration(self): """ Return element declaration. """ field_decl_ptr = _bt_python_get_array_element_declaration(self._fd) return _create_field_declaration(field_decl_ptr, "", self.scope) class SequenceFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("SequenceFieldDeclaration cannot be instantiated") class FloatFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("FloatFieldDeclaration cannot be instantiated") class StructureFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("StructureFieldDeclaration cannot be instantiated") class StringFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("StringFieldDeclaration cannot be instantiated") class VariantFieldDeclaration(FieldDeclaration): """Do not instantiate.""" def __init__(self): raise NotImplementedError("VariantFieldDeclaration cannot be instantiated") def field_error(): """ Return the last error code encountered while accessing a field and reset the error flag. Return 0 if no error, a negative value otherwise. """ return _bt_ctf_field_get_error() def _create_field_declaration(declaration_ptr, name, scope): """ Private field declaration factory. """ if declaration_ptr is None: raise ValueError("declaration_ptr must be valid") if not scope in _scopes: raise ValueError("Invalid scope provided") type = _bt_ctf_field_type(declaration_ptr) declaration = None if type == CTFTypeId.INTEGER: declaration = IntegerFieldDeclaration.__new__(IntegerFieldDeclaration) elif type == CTFTypeId.ENUM: declaration = EnumerationFieldDeclaration.__new__(EnumerationFieldDeclaration) elif type == CTFTypeId.ARRAY: declaration = ArrayFieldDeclaration.__new__(ArrayFieldDeclaration) elif type == CTFTypeId.SEQUENCE: declaration = SequenceFieldDeclaration.__new__(SequenceFieldDeclaration) elif type == CTFTypeId.FLOAT: declaration = FloatFieldDeclaration.__new__(FloatFieldDeclaration) elif type == CTFTypeId.STRUCT: declaration = StructureFieldDeclaration.__new__(StructureFieldDeclaration) elif type == CTFTypeId.STRING: declaration = StringFieldDeclaration.__new__(StringFieldDeclaration) elif type == CTFTypeId.VARIANT: declaration = VariantFieldDeclaration.__new__(VariantFieldDeclaration) else: return declaration declaration._fd = declaration_ptr declaration._s = scope declaration._name = name return declaration class _Definition(object): def __init__(self, definition_ptr, scope): self._d = definition_ptr self._s = scope if not scope in _scopes: ValueError("Invalid scope provided") @property def name(self): """Return the name of a field or None on error.""" return _bt_ctf_field_name(self._d) @property def type(self): """Return the type of a field or -1 if unknown.""" return _bt_ctf_field_type(_bt_ctf_get_decl_from_def(self._d)) @property def declaration(self): """Return the associated Definition object.""" return _create_field_declaration(_bt_ctf_get_decl_from_def(self._d), self.name, self.scope) def _get_enum_str(self): """ Return the string matching the current enumeration. Return None on error. """ return _bt_ctf_get_enum_str(self._d) def _get_array_element_at(self, index): """ Return the array's element at position index. Return None on error """ array_ptr = _bt_python_get_array_from_def(self._d) if array_ptr is None: return None definition_ptr = _bt_array_index(array_ptr, index) if definition_ptr is None: return None return _Definition(definition_ptr, self.scope) def _get_sequence_len(self): """ Return the len of a sequence or a negative value on error. """ seq = _bt_python_get_sequence_from_def(self._d) return _bt_sequence_len(seq) def _get_sequence_element_at(self, index): """ Return the sequence's element at position index, otherwise return None """ seq = _bt_python_get_sequence_from_def(self._d) if seq is not None: definition_ptr = _bt_sequence_index(seq, index) if definition_ptr is not None: return _Definition(definition_ptr, self.scope) return None def _get_uint64(self): """ Return the value associated with the field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occured, use the field_error() function after accessing a field. """ return _bt_ctf_get_uint64(self._d) def _get_int64(self): """ Return the value associated with the field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occured, use the field_error() function after accessing a field. """ return _bt_ctf_get_int64(self._d) def _get_char_array(self): """ Return the value associated with the field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occurred, use the field_error() function after accessing a field. """ return _bt_ctf_get_char_array(self._d) def _get_str(self): """ Return the value associated with the field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occurred, use the field_error() function after accessing a field. """ return _bt_ctf_get_string(self._d) def _get_float(self): """ Return the value associated with the field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occurred, use the field_error() function after accessing a field. """ return _bt_ctf_get_float(self._d) def _get_variant(self): """ Return the variant's selected field. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occurred, use the field_error() function after accessing a field. """ return _bt_ctf_get_variant(self._d) def _get_struct_field_count(self): """ Return the number of fields contained in the structure. If the field does not exist or is not of the type requested, the value returned is undefined. """ return _bt_ctf_get_struct_field_count(self._d) def _get_struct_field_at(self, i): """ Return the structure's field at position i. If the field does not exist or is not of the type requested, the value returned is undefined. To check if an error occurred, use the field_error() function after accessing a field. """ return _bt_ctf_get_struct_field_index(self._d, i) @property def value(self): """ Return the value associated with the field according to its type. Return None on error. """ id = self.type value = None if id == CTFTypeId.STRING: value = self._get_str() elif id == CTFTypeId.ARRAY: element_decl = self.declaration.element_declaration if ((element_decl.type == CTFTypeId.INTEGER and element_decl.length == 8) and (element_decl.encoding == CTFStringEncoding.ASCII or element_decl.encoding == CTFStringEncoding.UTF8)): value = _bt_python_get_array_string(self._d) else: value = [] for i in range(self.declaration.length): element = self._get_array_element_at(i) value.append(element.value) elif id == CTFTypeId.INTEGER: if self.declaration.signedness == 0: value = self._get_uint64() else: value = self._get_int64() elif id == CTFTypeId.ENUM: value = self._get_enum_str() elif id == CTFTypeId.SEQUENCE: seq_len = self._get_sequence_len() value = [] for i in range(seq_len): evDef = self._get_sequence_element_at(i) value.append(evDef.value) elif id == CTFTypeId.FLOAT: value = self._get_float() elif id == CTFTypeId.VARIANT: variant = _Definition.__new__(_Definition) variant._d = self._get_variant(); value = variant.value elif id == CTFTypeId.STRUCT: value = {} for i in range(self._get_struct_field_count()): member = _Definition(self._get_struct_field_at(i), self.scope) value[member.name] = member.value if field_error(): raise FieldError("Error occurred while accessing field {} of type {}".format(self.name, CTFTypeId.type_name(id))) return value @property def scope(self): """Return the scope of a field or None on error.""" return self._s %} // ================================================================= // CTF Writer // ================================================================= /* ================================================================= CLOCK.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_clock_create") bt_ctf_clock_create(const char *name); %rename("_bt_ctf_clock_set_description") bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc); %rename("_bt_ctf_clock_set_frequency") bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq); %rename("_bt_ctf_clock_set_precision") bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision); %rename("_bt_ctf_clock_set_offset_s") bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s); %rename("_bt_ctf_clock_set_offset") bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset); %rename("_bt_ctf_clock_set_is_absolute") bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute); %rename("_bt_ctf_clock_set_time") bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time); %rename("_bt_ctf_clock_get") bt_ctf_clock_get(struct bt_ctf_clock *clock); %rename("_bt_ctf_clock_put") bt_ctf_clock_put(struct bt_ctf_clock *clock); struct bt_ctf_clock *bt_ctf_clock_create(const char *name); int bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc); int bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq); int bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision); int bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s); int bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset); int bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute); int bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time); void bt_ctf_clock_get(struct bt_ctf_clock *clock); void bt_ctf_clock_put(struct bt_ctf_clock *clock); /* ================================================================= EVENT-TYPES.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_field_type_integer_create") bt_ctf_field_type_integer_create(unsigned int size); %rename("_bt_ctf_field_type_integer_set_signed") bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *integer, int is_signed); %rename("_bt_ctf_field_type_integer_set_base") bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *integer, enum bt_ctf_integer_base base); %rename("_bt_ctf_field_type_integer_set_encoding") bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *integer, enum ctf_string_encoding encoding); %rename("_bt_ctf_field_type_enumeration_create") bt_ctf_field_type_enumeration_create(struct bt_ctf_field_type *integer_container_type); %rename("_bt_ctf_field_type_enumeration_add_mapping") bt_ctf_field_type_enumeration_add_mapping(struct bt_ctf_field_type *enumeration, const char *string, int64_t range_start, int64_t range_end); %rename("_bt_ctf_field_type_floating_point_create") bt_ctf_field_type_floating_point_create(void); %rename("_bt_ctf_field_type_floating_point_set_exponent_digits") bt_ctf_field_type_floating_point_set_exponent_digits(struct bt_ctf_field_type *floating_point, unsigned int exponent_digits); %rename("_bt_ctf_field_type_floating_point_set_mantissa_digits") bt_ctf_field_type_floating_point_set_mantissa_digits(struct bt_ctf_field_type *floating_point, unsigned int mantissa_digits); %rename("_bt_ctf_field_type_structure_create") bt_ctf_field_type_structure_create(void); %rename("_bt_ctf_field_type_structure_add_field") bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *structure, struct bt_ctf_field_type *field_type, const char *field_name); %rename("_bt_ctf_field_type_variant_create") bt_ctf_field_type_variant_create(struct bt_ctf_field_type *enum_tag, const char *tag_name); %rename("_bt_ctf_field_type_variant_add_field") bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *variant, struct bt_ctf_field_type *field_type, const char *field_name); %rename("_bt_ctf_field_type_array_create") bt_ctf_field_type_array_create(struct bt_ctf_field_type *element_type, unsigned int length); %rename("_bt_ctf_field_type_sequence_create") bt_ctf_field_type_sequence_create(struct bt_ctf_field_type *element_type, const char *length_field_name); %rename("_bt_ctf_field_type_string_create") bt_ctf_field_type_string_create(void); %rename("_bt_ctf_field_type_string_set_encoding") bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *string, enum ctf_string_encoding encoding); %rename("_bt_ctf_field_type_set_alignment") bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment); %rename("_bt_ctf_field_type_set_byte_order") bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order); %rename("_bt_ctf_field_type_get") bt_ctf_field_type_get(struct bt_ctf_field_type *type); %rename("_bt_ctf_field_type_put") bt_ctf_field_type_put(struct bt_ctf_field_type *type); struct bt_ctf_field_type *bt_ctf_field_type_integer_create(unsigned int size); int bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *integer, int is_signed); int bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *integer, enum bt_ctf_integer_base base); int bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *integer, enum ctf_string_encoding encoding); struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create(struct bt_ctf_field_type *integer_container_type); int bt_ctf_field_type_enumeration_add_mapping(struct bt_ctf_field_type *enumeration, const char *string, int64_t range_start, int64_t range_end); struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void); int bt_ctf_field_type_floating_point_set_exponent_digits(struct bt_ctf_field_type *floating_point, unsigned int exponent_digits); int bt_ctf_field_type_floating_point_set_mantissa_digits(struct bt_ctf_field_type *floating_point, unsigned int mantissa_digits); struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void); int bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *structure, struct bt_ctf_field_type *field_type, const char *field_name); struct bt_ctf_field_type *bt_ctf_field_type_variant_create(struct bt_ctf_field_type *enum_tag, const char *tag_name); int bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *variant, struct bt_ctf_field_type *field_type, const char *field_name); struct bt_ctf_field_type *bt_ctf_field_type_array_create(struct bt_ctf_field_type *element_type, unsigned int length); struct bt_ctf_field_type *bt_ctf_field_type_sequence_create(struct bt_ctf_field_type *element_type, const char *length_field_name); struct bt_ctf_field_type *bt_ctf_field_type_string_create(void); int bt_ctf_field_type_string_set_encoding(struct bt_ctf_field_type *string, enum ctf_string_encoding encoding); int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment); int bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order); void bt_ctf_field_type_get(struct bt_ctf_field_type *type); void bt_ctf_field_type_put(struct bt_ctf_field_type *type); /* ================================================================= EVENT-FIELDS.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_field_create") bt_ctf_field_create(struct bt_ctf_field_type *type); %rename("_bt_ctf_field_structure_get_field") bt_ctf_field_structure_get_field(struct bt_ctf_field *structure, const char *name); %rename("_bt_ctf_field_array_get_field") bt_ctf_field_array_get_field(struct bt_ctf_field *array, uint64_t index); %rename("_bt_ctf_field_sequence_set_length") bt_ctf_field_sequence_set_length(struct bt_ctf_field *sequence, struct bt_ctf_field *length_field); %rename("_bt_ctf_field_sequence_get_field") bt_ctf_field_sequence_get_field(struct bt_ctf_field *sequence, uint64_t index); %rename("_bt_ctf_field_variant_get_field") bt_ctf_field_variant_get_field(struct bt_ctf_field *variant, struct bt_ctf_field *tag); %rename("_bt_ctf_field_enumeration_get_container") bt_ctf_field_enumeration_get_container(struct bt_ctf_field *enumeration); %rename("_bt_ctf_field_signed_integer_set_value") bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *integer, int64_t value); %rename("_bt_ctf_field_unsigned_integer_set_value") bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *integer, uint64_t value); %rename("_bt_ctf_field_floating_point_set_value") bt_ctf_field_floating_point_set_value(struct bt_ctf_field *floating_point, double value); %rename("_bt_ctf_field_string_set_value") bt_ctf_field_string_set_value(struct bt_ctf_field *string, const char *value); %rename("_bt_ctf_field_get") bt_ctf_field_get(struct bt_ctf_field *field); %rename("_bt_ctf_field_put") bt_ctf_field_put(struct bt_ctf_field *field); struct bt_ctf_field *bt_ctf_field_create(struct bt_ctf_field_type *type); struct bt_ctf_field *bt_ctf_field_structure_get_field(struct bt_ctf_field *structure, const char *name); struct bt_ctf_field *bt_ctf_field_array_get_field(struct bt_ctf_field *array, uint64_t index); int bt_ctf_field_sequence_set_length(struct bt_ctf_field *sequence, struct bt_ctf_field *length_field); struct bt_ctf_field *bt_ctf_field_sequence_get_field(struct bt_ctf_field *sequence, uint64_t index); struct bt_ctf_field *bt_ctf_field_variant_get_field(struct bt_ctf_field *variant, struct bt_ctf_field *tag); struct bt_ctf_field *bt_ctf_field_enumeration_get_container(struct bt_ctf_field *enumeration); int bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *integer, int64_t value); int bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *integer, uint64_t value); int bt_ctf_field_floating_point_set_value(struct bt_ctf_field *floating_point, double value); int bt_ctf_field_string_set_value(struct bt_ctf_field *string, const char *value); void bt_ctf_field_get(struct bt_ctf_field *field); void bt_ctf_field_put(struct bt_ctf_field *field); /* ================================================================= EVENT.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_event_class_create") bt_ctf_event_class_create(const char *name); %rename("_bt_ctf_event_class_add_field") bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name); %rename("_bt_ctf_event_class_get") bt_ctf_event_class_get(struct bt_ctf_event_class *event_class); %rename("_bt_ctf_event_class_put") bt_ctf_event_class_put(struct bt_ctf_event_class *event_class); %rename("_bt_ctf_event_create") bt_ctf_event_create(struct bt_ctf_event_class *event_class); %rename("_bt_ctf_event_set_payload") bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value); %rename("_bt_ctf_event_get_payload") bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name); %rename("_bt_ctf_event_get") bt_ctf_event_get(struct bt_ctf_event *event); %rename("_bt_ctf_event_put") bt_ctf_event_put(struct bt_ctf_event *event); struct bt_ctf_event_class *bt_ctf_event_class_create(const char *name); int bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name); void bt_ctf_event_class_get(struct bt_ctf_event_class *event_class); void bt_ctf_event_class_put(struct bt_ctf_event_class *event_class); struct bt_ctf_event *bt_ctf_event_create(struct bt_ctf_event_class *event_class); int bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value); struct bt_ctf_field *bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name); void bt_ctf_event_get(struct bt_ctf_event *event); void bt_ctf_event_put(struct bt_ctf_event *event); /* ================================================================= STREAM.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_stream_class_create") bt_ctf_stream_class_create(const char *name); %rename("_bt_ctf_stream_class_set_clock") bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock); %rename("_bt_ctf_stream_class_add_event_class") bt_ctf_stream_class_add_event_class(struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class); %rename("_bt_ctf_stream_class_get") bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class); %rename("_bt_ctf_stream_class_put") bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class); %rename("_bt_ctf_stream_append_discarded_events") bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count); %rename("_bt_ctf_stream_append_event") bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event); %rename("_bt_ctf_stream_flush") bt_ctf_stream_flush(struct bt_ctf_stream *stream); %rename("_bt_ctf_stream_get") bt_ctf_stream_get(struct bt_ctf_stream *stream); %rename("_bt_ctf_stream_put") bt_ctf_stream_put(struct bt_ctf_stream *stream); struct bt_ctf_stream_class *bt_ctf_stream_class_create(const char *name); int bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock); int bt_ctf_stream_class_add_event_class(struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class); void bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class); void bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class); void bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count); int bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event); int bt_ctf_stream_flush(struct bt_ctf_stream *stream); void bt_ctf_stream_get(struct bt_ctf_stream *stream); void bt_ctf_stream_put(struct bt_ctf_stream *stream); /* ================================================================= WRITER.H ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ */ %rename("_bt_ctf_writer_create") bt_ctf_writer_create(const char *path); %rename("_bt_ctf_writer_create_stream") bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class); %rename("_bt_ctf_writer_add_environment_field") bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value); %rename("_bt_ctf_writer_add_clock") bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock); %newobject bt_ctf_writer_get_metadata_string; %rename("_bt_ctf_writer_get_metadata_string") bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer); %rename("_bt_ctf_writer_flush_metadata") bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer); %rename("_bt_ctf_writer_set_byte_order") bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order); %rename("_bt_ctf_writer_get") bt_ctf_writer_get(struct bt_ctf_writer *writer); %rename("_bt_ctf_writer_put") bt_ctf_writer_put(struct bt_ctf_writer *writer); struct bt_ctf_writer *bt_ctf_writer_create(const char *path); struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class); int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value); int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock); char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer); void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer); int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order); void bt_ctf_writer_get(struct bt_ctf_writer *writer); void bt_ctf_writer_put(struct bt_ctf_writer *writer); %pythoncode %{ class CTFWriter: class Clock: def __init__(self, name): self._c = _bt_ctf_clock_create(name) if self._c is None: raise ValueError("Invalid clock name.") def __del__(self): _bt_ctf_clock_put(self._c) """ Get the clock's description. """ @property def description(self): raise NotImplementedError("Getter not implemented.") """ Set the clock's description. The description appears in the clock's TSDL meta-data. """ @description.setter def description(self, desc): ret = _bt_ctf_clock_set_description(self._c, str(desc)) if ret < 0: raise ValueError("Invalid clock description.") """ Get the clock's frequency (Hz). """ @property def frequency(self): raise NotImplementedError("Getter not implemented.") """ Set the clock's frequency (Hz). """ @frequency.setter def frequency(self, freq): ret = _bt_ctf_clock_set_frequency(self._c, freq) if ret < 0: raise ValueError("Invalid frequency value.") """ Get the clock's precision (in clock ticks). """ @property def precision(self): raise NotImplementedError("Getter not implemented.") """ Set the clock's precision (in clock ticks). """ @precision.setter def precision(self, precision): ret = _bt_ctf_clock_set_precision(self._c, precision) """ Get the clock's offset in seconds from POSIX.1 Epoch. """ @property def offset_seconds(self): raise NotImplementedError("Getter not implemented.") """ Set the clock's offset in seconds from POSIX.1 Epoch. """ @offset_seconds.setter def offset_seconds(self, offset_s): ret = _bt_ctf_clock_set_offset_s(self._c, offset_s) if ret < 0: raise ValueError("Invalid offset value.") """ Get the clock's offset in ticks from POSIX.1 Epoch + offset in seconds. """ @property def offset(self): raise NotImplementedError("Getter not implemented.") """ Set the clock's offset in ticks from POSIX.1 Epoch + offset in seconds. """ @offset.setter def offset(self, offset): ret = _bt_ctf_clock_set_offset(self._c, offset) if ret < 0: raise ValueError("Invalid offset value.") """ Get a clock's absolute attribute. A clock is absolute if the clock is a global reference across the trace's other clocks. """ @property def absolute(self): raise NotImplementedError("Getter not implemented.") """ Set a clock's absolute attribute. A clock is absolute if the clock is a global reference across the trace's other clocks. """ @absolute.setter def absolute(self, is_absolute): ret = _bt_ctf_clock_set_is_absolute(self._c, int(is_absolute)) if ret < 0: raise ValueError("Could not set the clock's absolute attribute.") """ Get the current time in nanoseconds since the clock's origin (offset and offset_s attributes). """ @property def time(self): raise NotImplementedError("Getter not implemented.") """ Set the current time in nanoseconds since the clock's origin (offset and offset_s attributes). The clock's value will be sampled as events are appended to a stream. """ @time.setter def time(self, time): ret = _bt_ctf_clock_set_time(self._c, time) if ret < 0: raise ValueError("Invalid time value.") class FieldDeclaration: """ FieldDeclaration should not be instantiated directly. Please instantiate one of the concrete FieldDeclaration classes. """ class IntegerBase: # These values are based on the bt_ctf_integer_base enum # declared in event-types.h. INTEGER_BASE_UNKNOWN = -1 INTEGER_BASE_BINARY = 2 INTEGER_BASE_OCTAL = 8 INTEGER_BASE_DECIMAL = 10 INTEGER_BASE_HEXADECIMAL = 16 def __init__(self): if self._ft is None: raise ValueError("FieldDeclaration creation failed.") def __del__(self): _bt_ctf_field_type_put(self._ft) """ Get the field type's alignment. """ @property def alignment(self): raise NotImplementedError("Getter not implemented.") """ Set the field type's alignment. Defaults to 1 (bit-aligned). However, some types, such as structures and string, may impose other alignment constraints. """ @alignment.setter def alignment(self, alignment): ret = _bt_ctf_field_type_set_alignment(self._ft, alignment) if ret < 0: raise ValueError("Invalid alignment value.") """ Get the field type's byte order. One of the ByteOrder's constant. """ @property def byte_order(self): raise NotImplementedError("Getter not implemented.") """ Set the field type's byte order. Use constants defined in the ByteOrder class. """ @byte_order.setter def byte_order(self, byte_order): ret = _bt_ctf_field_type_set_byte_order(self._ft, byte_order) if ret < 0: raise ValueError("Could not set byte order value.") class IntegerFieldDeclaration(FieldDeclaration): """ Create a new integer field type of the given size. """ def __init__(self, size): self._ft = _bt_ctf_field_type_integer_create(size) super().__init__() """ Get an integer's signedness attribute. """ @property def signed(self): raise NotImplementedError("Getter not implemented.") """ Set an integer's signedness attribute. """ @signed.setter def signed(self, signed): ret = _bt_ctf_field_type_integer_set_signed(self._ft, signed) if ret < 0: raise ValueError("Could not set signed attribute.") """ Get the integer's base used to pretty-print the resulting trace. """ @property def base(self): raise NotImplementedError("Getter not implemented.") """ Set the integer's base used to pretty-print the resulting trace. The base must be a constant of the IntegerBase class. """ @base.setter def base(self, base): ret = _bt_ctf_field_type_integer_set_base(self._ft, base) if ret < 0: raise ValueError("Could not set base value.") """ Get the integer's encoding (one of the constants of the CTFStringEncoding class). """ @property def encoding(self): raise NotImplementedError("Getter not implemented.") """ An integer encoding may be set to signal that the integer must be printed as a text character. Must be a constant from the CTFStringEncoding class. """ @encoding.setter def encoding(self, encoding): ret = _bt_ctf_field_type_integer_set_encoding(self._ft, encoding) if ret < 0: raise ValueError("Could not set integer encoding.") class EnumerationFieldDeclaration(FieldDeclaration): """ Create a new enumeration field type with the given underlying type. """ def __init__(self, integer_type): if integer_type is None or not isinstance(integer_type, CTFWriter.IntegerFieldDeclaration): raise TypeError("Invalid integer container.") self._ft = _bt_ctf_field_type_enumeration_create(integer_type._ft) super().__init__() """ Add a mapping to the enumeration. The range's values are inclusive. """ def add_mapping(self, name, range_start, range_end): ret = _bt_ctf_field_type_enumeration_add_mapping(self._ft, str(name), range_start, range_end) if ret < 0: raise ValueError("Could not add mapping to enumeration type.") class FloatFieldDeclaration(FieldDeclaration): FLT_EXP_DIG = 8 DBL_EXP_DIG = 11 FLT_MANT_DIG = 24 DBL_MANT_DIG = 53 """ Create a new floating point field type. """ def __init__(self): self._ft = _bt_ctf_field_type_floating_point_create() super().__init__() """ Get the number of exponent digits to use to store the floating point field. """ @property def exponent_digits(self): raise NotImplementedError("Getter not implemented.") """ Set the number of exponent digits to use to store the floating point field. The only values currently supported are FLT_EXP_DIG and DBL_EXP_DIG which are defined as constants of this class. """ @exponent_digits.setter def exponent_digits(self, exponent_digits): ret = _bt_ctf_field_type_floating_point_set_exponent_digits(self._ft, exponent_digits) if ret < 0: raise ValueError("Could not set exponent digit count.") """ Get the number of mantissa digits to use to store the floating point field. """ @property def mantissa_digits(self): raise NotImplementedError("Getter not implemented.") """ Set the number of mantissa digits to use to store the floating point field. The only values currently supported are FLT_MANT_DIG and DBL_MANT_DIG which are defined as constants of this class. """ @mantissa_digits.setter def mantissa_digits(self, mantissa_digits): ret = _bt_ctf_field_type_floating_point_set_mantissa_digits(self._ft, mantissa_digits) if ret < 0: raise ValueError("Could not set mantissa digit count.") class StructureFieldDeclaration(FieldDeclaration): """ Create a new structure field type. """ def __init__(self): self._ft = _bt_ctf_field_type_structure_create() super().__init__() """ Add a field of type "field_type" to the structure. """ def add_field(self, field_type, field_name): ret = _bt_ctf_field_type_structure_add_field(self._ft, field_type._ft, str(field_name)) if ret < 0: raise ValueError("Could not add field to structure.") class VariantFieldDeclaration(FieldDeclaration): """ Create a new variant field type. """ def __init__(self, enum_tag, tag_name): if enum_tag is None or not isinstance(enum_tag, CTFWriter.EnumerationFieldDeclaration): raise TypeError("Invalid tag type; must be of type EnumerationFieldDeclaration.") self._ft = _bt_ctf_field_type_variant_create(enum_tag._ft, str(tag_name)) super().__init__() """ Add a field of type "field_type" to the variant. """ def add_field(self, field_type, field_name): ret = _bt_ctf_field_type_variant_add_field(self._ft, field_type._ft, str(field_name)) if ret < 0: raise ValueError("Could not add field to variant.") class ArrayFieldDeclaration(FieldDeclaration): """ Create a new array field type. """ def __init__(self, element_type, length): self._ft = _bt_ctf_field_type_array_create(element_type._ft, length) super().__init__() class SequenceFieldDeclaration(FieldDeclaration): """ Create a new sequence field type. """ def __init__(self, element_type, length_field_name): self._ft = _bt_ctf_field_type_sequence_create(element_type._ft, str(length_field_name)) super().__init__() class StringFieldDeclaration(FieldDeclaration): """ Create a new string field type. """ def __init__(self): self._ft = _bt_ctf_field_type_string_create() super().__init__() """ Get a string type's encoding (a constant from the CTFStringEncoding class). """ @property def encoding(self): raise NotImplementedError("Getter not implemented.") """ Set a string type's encoding. Must be a constant from the CTFStringEncoding class. """ @encoding.setter def encoding(self, encoding): ret = _bt_ctf_field_type_string_set_encoding(self._ft, encoding) if ret < 0: raise ValueError("Could not set string encoding.") """ Create an instance of a field. """ @staticmethod def create_field(self, field_type): if field_type is None or not isinstance(field_type, CTFWriter.FieldDeclaration): raise TypeError("Invalid field_type. Type must be a FieldDeclaration-derived class.") if isinstance(field_type, CTFWriter.IntegerFieldDeclaration): return CTFWriter.IntegerField(field_type) elif isinstance(field_type, CTFWriter.EnumerationFieldDeclaration): return CTFWriter.EnumerationField(field_type) elif isinstance(field_type, CTFWriter.FloatFieldDeclaration): return CTFWriter.FloatFieldingPoint(field_type) elif isinstance(field_type, CTFWriter.StructureFieldDeclaration): return CTFWriter.StructureField(field_type) elif isinstance(field_type, CTFWriter.VariantFieldDeclaration): return CTFWriter.VariantField(field_type) elif isinstance(field_type, CTFWriter.ArrayFieldDeclaration): return CTFWriter.ArrayField(field_type) elif isinstance(field_type, CTFWriter.SequenceFieldDeclaration): return CTFWriter.SequenceField(field_type) elif isinstance(field_type, CTFWriter.StringFieldDeclaration): return CTFWriter.StringField(field_type) class Field: """ Base class, do not instantiate. """ def __init__(self, field_type): if not isinstance(field_type, CTFWriter.FieldDeclaration): raise TypeError("Invalid field_type argument.") self._f = _bt_ctf_field_create(field_type._ft) if self._f is None: raise ValueError("Field creation failed.") def __del__(self): _bt_ctf_field_put(self._f) @staticmethod def _create_field_from_native_instance(native_field_instance): type_dict = { CTFTypeId.INTEGER : CTFWriter.IntegerField, CTFTypeId.FLOAT : CTFWriter.FloatFieldingPoint, CTFTypeId.ENUM : CTFWriter.EnumerationField, CTFTypeId.STRING : CTFWriter.StringField, CTFTypeId.STRUCT : CTFWriter.StructureField, CTFTypeId.VARIANT : CTFWriter.VariantField, CTFTypeId.ARRAY : CTFWriter.ArrayField, CTFTypeId.SEQUENCE : CTFWriter.SequenceField } field_type = _bt_python_get_field_type(native_field_instance) if field_type == CTFTypeId.UNKNOWN: raise TypeError("Invalid field instance") field = CTFWriter.Field.__new__(CTFWriter.Field) field._f = native_field_instance field.__class__ = type_dict[field_type] return field class IntegerField(Field): """ Get an integer field's value. """ @property def value(self): raise NotImplementedError("Getter not implemented.") """ Set an integer field's value. """ @value.setter def value(self, value): signedness = _bt_python_field_integer_get_signedness(self._f) if signedness < 0: raise TypeError("Invalid integer instance.") if signedness == 0: ret = _bt_ctf_field_unsigned_integer_set_value(self._f, value) else: ret = _bt_ctf_field_signed_integer_set_value(self._f, value) if ret < 0: raise ValueError("Could not set integer field value.") class EnumerationField(Field): """ Return the enumeration's underlying container field (an integer field). """ @property def container(self): container = CTFWriter.IntegerField.__new__(CTFWriter.IntegerField) container._f = _bt_ctf_field_enumeration_get_container(self._f) if container._f is None: raise TypeError("Invalid enumeration field type.") return container class FloatFieldingPoint(Field): """ Get a floating point field's value. """ @property def value(self): raise NotImplementedError("Getter not implemented.") """ Set a floating point field's value. """ @value.setter def value(self, value): ret = _bt_ctf_field_floating_point_set_value(self._f, float(value)) if ret < 0: raise ValueError("Could not set floating point field value.") class StructureField(Field): """ Get the structure's field corresponding to the provided field name. """ def field(self, field_name): native_instance = _bt_ctf_field_structure_get_field(self._f, str(field_name)) if native_instance is None: raise ValueError("Invalid field_name provided.") return CTFWriter.Field._create_field_from_native_instance(native_instance) class VariantField(Field): """ Return the variant's selected field. The "tag" field is the selector enum field. """ def field(self, tag): native_instance = _bt_ctf_field_variant_get_field(self._f, tag._f) if native_instance is None: raise ValueError("Invalid tag provided.") return CTFWriter.Field._create_field_from_native_instance(native_instance) class ArrayField(Field): """ Return the array's field at position "index". """ def field(self, index): native_instance = _bt_ctf_field_array_get_field(self._f, index) if native_instance is None: raise IndexError("Invalid index provided.") return CTFWriter.Field._create_field_from_native_instance(native_instance) class SequenceField(Field): """ Get the sequence's length field (IntegerField). """ @property def length(self): raise NotImplementedError("Getter not implemented.") """ Set the sequence's length field (IntegerField). """ @length.setter def length(self, length_field): if not isinstance(length, CTFWriter.IntegerField): raise TypeError("Invalid length field.") ret = _bt_ctf_field_sequence_set_length(self._f, length._f) if ret < 0: raise ValueError("Could not set sequence length.") """ Return the sequence's field at position "index". """ def field(self, index): native_instance = _bt_ctf_field_sequence_get_field(self._f, index) if native_instance is None: raise ValueError("Could not get sequence element at index.") return CTFWriter.Field._create_field_from_native_instance(native_instance) class StringField(Field): """ Get a string field's value. """ @property def value(self): raise NotImplementedError("Getter not implemented.") """ Set a string field's value. """ @value.setter def value(self, value): ret = _bt_ctf_field_string_set_value(self._f, str(value)) if ret < 0: raise ValueError("Could not set string field value.") class EventClass: """ Create a new event class of the given name. """ def __init__(self, name): self._ec = _bt_ctf_event_class_create(name) if self._ec is None: raise ValueError("Event class creation failed.") def __del__(self): _bt_ctf_event_class_put(self._ec) """ Add a field of type "field_type" to the event class. """ def add_field(self, field_type, field_name): ret = _bt_ctf_event_class_add_field(self._ec, field_type._ft, str(field_name)) if ret < 0: raise ValueError("Could not add field to event class.") class Event: """ Create a new event of the given event class. """ def __init__(self, event_class): if not isinstance(event_class, CTFWriter.EventClass): raise TypeError("Invalid event_class argument.") self._e = _bt_ctf_event_create(event_class._ec) if self._e is None: raise ValueError("Event creation failed.") def __del__(self): _bt_ctf_event_put(self._e) """ Set a manually created field as an event's payload. """ def set_payload(self, field_name, value_field): if not isinstance(value, CTFWriter.Field): raise TypeError("Invalid value type.") ret = _bt_ctf_event_set_payload(self._e, str(field_name), value._f) if ret < 0: raise ValueError("Could not set event field payload.") """ Get a field from event. """ def payload(self, field_name): native_instance = _bt_ctf_event_get_payload(self._e, str(field_name)) if native_instance is None: raise ValueError("Could not get event payload.") return CTFWriter.Field._create_field_from_native_instance(native_instance) class StreamClass: """ Create a new stream class of the given name. """ def __init__(self, name): self._sc = _bt_ctf_stream_class_create(name) if self._sc is None: raise ValueError("Stream class creation failed.") def __del__(self): _bt_ctf_stream_class_put(self._sc) """ Get a stream class' clock. """ @property def clock(self): raise NotImplementedError("Getter not implemented.") """ Assign a clock to a stream class. """ @clock.setter def clock(self, clock): if not isinstance(clock, CTFWriter.Clock): raise TypeError("Invalid clock type.") ret = _bt_ctf_stream_class_set_clock(self._sc, clock._c) if ret < 0: raise ValueError("Could not set stream class clock.") """ Add an event class to a stream class. New events can be added even after a stream has been instantiated and events have been appended. However, a stream will not accept events of a class that has not been registered beforehand. """ def add_event_class(self, event_class): if not isinstance(event_class, CTFWriter.EventClass): raise TypeError("Invalid event_class type.") ret = _bt_ctf_stream_class_add_event_class(self._sc, event_class._ec) if ret < 0: raise ValueError("Could not add event class.") class Stream: """ Create a stream of the given class. """ def __init__(self, stream_class): if not isinstance(stream_class, CTFWriter.StreamClass): raise TypeError("Invalid stream_class type.") self._s = _bt_ctf_stream_create(stream_class._sc) if self._s is None: raise ValueError("Stream creation failed.") def __del__(self): _bt_ctf_stream_put(self._s) """ Increase the current packet's discarded event count. """ def append_discarded_events(self, event_count): ret = _bt_ctf_stream_append_discarded_events(self._s, event_count) if ret < 0: raise ValueError("Could not append discarded events.") """ Append "event" to the stream's current packet. The stream's associated clock will be sampled during this call. The event shall not be modified after being appended to a stream. """ def append_event(self, event): ret = _bt_ctf_stream_append_event(self._s, event._e) if ret < 0: raise ValueError("Could not append event to stream.") """ The stream's current packet's events will be flushed to disk. Events subsequently appended to the stream will be added to a new packet. """ def flush(self): ret = _bt_ctf_stream_flush(self._s) if ret < 0: raise ValueError("Could not flush stream.") class Writer: """ Create a new writer that will produce a trace in the given path. """ def __init__(self, path): self._w = _bt_ctf_writer_create(path) if self._w is None: raise ValueError("Writer creation failed.") def __del__(self): _bt_ctf_writer_put(self._w) """ Create a new stream instance and register it to the writer. """ def create_stream(self, stream_class): if not isinstance(stream_class, CTFWriter.StreamClass): raise TypeError("Invalid stream_class type.") stream = CTFWriter.Stream.__new__(CTFWriter.Stream) stream._s = _bt_ctf_writer_create_stream(self._w, stream_class._sc) return stream """ Add an environment field to the trace. """ def add_environment_field(self, name, value): ret = _bt_ctf_writer_add_environment_field(self._w, str(name), str(value)) if ret < 0: raise ValueError("Could not add environment field to trace.") """ Add a clock to the trace. Clocks assigned to stream classes must be registered to the writer. """ def add_clock(self, clock): ret = _bt_ctf_writer_add_clock(self._w, clock._c) if ret < 0: raise ValueError("Could not add clock to Writer.") """ Get the trace's TSDL meta-data. """ @property def metadata(self): return _bt_ctf_writer_get_metadata_string(self._w) """ Flush the trace's metadata to the metadata file. """ def flush_metadata(self): _bt_ctf_writer_flush_metadata(self._w) """ Get the trace's byte order. Must be a constant from the ByteOrder class. """ @property def byte_order(self): raise NotImplementedError("Getter not implemented.") """ Set the trace's byte order. Must be a constant from the ByteOrder class. Defaults to BYTE_ORDER_NATIVE, the host machine's endianness. """ @byte_order.setter def byte_order(self, byte_order): ret = _bt_ctf_writer_set_byte_order(self._w, byte_order) if ret < 0: raise ValueError("Could not set trace's byte order.") %} babeltrace-1.2.1/bindings/Makefile.am0000644000175000017500000000004512304150543014345 00000000000000if USE_PYTHON SUBDIRS = python endif babeltrace-1.2.1/bindings/Makefile.in0000644000175000017500000004504712306621104014367 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = bindings DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = python DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @USE_PYTHON_TRUE@SUBDIRS = python all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign bindings/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign bindings/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/0000755000175000017500000000000012306621157012256 500000000000000babeltrace-1.2.1/formats/Makefile.am0000644000175000017500000000016112304150543014222 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = . ctf ctf-text ctf-metadata bt-dummy lttng-live babeltrace-1.2.1/formats/Makefile.in0000644000175000017500000004516612306621104014247 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = . ctf ctf-text ctf-metadata bt-dummy lttng-live all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/lttng-live/0000755000175000017500000000000012306621157014343 500000000000000babeltrace-1.2.1/formats/lttng-live/Makefile.am0000644000175000017500000000100012304150543016300 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_builddir)/include lib_LTLIBRARIES = libbabeltrace-lttng-live.la noinst_HEADERS = \ lttng-viewer-abi.h \ lttng-live.h libbabeltrace_lttng_live_la_SOURCES = \ lttng-live-plugin.c lttng-live-comm.c # Request that the linker keeps all static libraries objects. libbabeltrace_lttng_live_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_lttng_live_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la babeltrace-1.2.1/formats/lttng-live/lttng-live-plugin.c0000644000175000017500000001644112306620512020010 00000000000000/* * BabelTrace - LTTng live Output * * Copyright 2013 Julien Desfossez * Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "lttng-live.h" static volatile int should_quit; int lttng_live_should_quit(void) { return should_quit; } static void sighandler(int sig) { switch (sig) { case SIGTERM: case SIGINT: should_quit = 1; break; default: break; } } /* * TODO: Eventually, this signal handler setup should be done at the * plugin manager level, rather than within this plugin. Beware, we are * not cleaning up the signal handler after plugin execution. */ static int setup_sighandler(void) { struct sigaction sa; sigset_t sigset; int ret; if ((ret = sigemptyset(&sigset)) < 0) { perror("sigemptyset"); return ret; } sa.sa_handler = sighandler; sa.sa_mask = sigset; sa.sa_flags = 0; if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) { perror("sigaction"); return ret; } if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) { perror("sigaction"); return ret; } return 0; } /* * hostname parameter needs to hold NAME_MAX chars. */ static int parse_url(const char *path, struct lttng_live_ctx *ctx) { char remain[3][NAME_MAX]; int ret = -1, proto, proto_offset = 0; size_t path_len = strlen(path); /* not accounting \0 */ /* * Since sscanf API does not allow easily checking string length * against a size defined by a macro. Test it beforehand on the * input. We know the output is always <= than the input length. */ if (path_len >= NAME_MAX) { goto end; } ret = sscanf(path, "net%d://", &proto); if (ret < 1) { proto = 4; /* net:// */ proto_offset = strlen("net://"); } else { /* net4:// or net6:// */ proto_offset = strlen("netX://"); } if (proto_offset > path_len) { goto end; } /* TODO : parse for IPv6 as well */ /* Parse the hostname or IP */ ret = sscanf(&path[proto_offset], "%[a-zA-Z.0-9%-]%s", ctx->relay_hostname, remain[0]); if (ret == 2) { /* Optional port number */ switch (remain[0][0]) { case ':': ret = sscanf(remain[0], ":%d%s", &ctx->port, remain[1]); /* Optional session ID with port number */ if (ret == 2) { ret = sscanf(remain[1], "/%s", remain[2]); /* Accept 0 or 1 (optional) */ if (ret < 0) { goto end; } } else if (ret == 0) { fprintf(stderr, "[error] Missing port number after delimitor ':'\n"); ret = -1; goto end; } break; case '/': /* Optional session ID */ ret = sscanf(remain[0], "/%s", remain[2]); /* Accept 0 or 1 (optional) */ if (ret < 0) { goto end; } break; default: fprintf(stderr, "[error] wrong delimitor : %c\n", remain[0][0]); ret = -1; goto end; } } if (ctx->port < 0) { ctx->port = LTTNG_DEFAULT_NETWORK_VIEWER_PORT; } if (strlen(remain[2]) == 0) { printf_verbose("Connecting to hostname : %s, port : %d, " "proto : IPv%d\n", ctx->relay_hostname, ctx->port, proto); ret = 0; goto end; } ret = sscanf(remain[2], "host/%[a-zA-Z.0-9%-]/%s", ctx->traced_hostname, ctx->session_name); if (ret != 2) { fprintf(stderr, "[error] Format : " "net:///host//\n"); goto end; } printf_verbose("Connecting to hostname : %s, port : %d, " "traced hostname : %s, session name : %s, " "proto : IPv%d\n", ctx->relay_hostname, ctx->port, ctx->traced_hostname, ctx->session_name, proto); ret = 0; end: return ret; } static int lttng_live_open_trace_read(const char *path) { int ret = 0; struct lttng_live_ctx *ctx; ctx = g_new0(struct lttng_live_ctx, 1); ctx->session = g_new0(struct lttng_live_session, 1); /* We need a pointer to the context from the packet_seek function. */ ctx->session->ctx = ctx; /* HT to store the CTF traces. */ ctx->session->ctf_traces = g_hash_table_new(g_direct_hash, g_direct_equal); ctx->port = -1; ctx->session_ids = g_array_new(FALSE, TRUE, sizeof(uint64_t)); ret = parse_url(path, ctx); if (ret < 0) { goto end_free; } ret = setup_sighandler(); if (ret < 0) { goto end_free; } ret = lttng_live_connect_viewer(ctx); if (ret < 0) { goto end_free; } printf_verbose("LTTng-live connected to relayd\n"); ret = lttng_live_establish_connection(ctx); if (ret < 0) { goto end_free; } printf_verbose("Listing sessions\n"); ret = lttng_live_list_sessions(ctx, path); if (ret < 0) { goto end_free; } if (ctx->session_ids->len > 0) { lttng_live_read(ctx); } end_free: g_hash_table_destroy(ctx->session->ctf_traces); g_free(ctx->session); g_free(ctx->session->streams); g_free(ctx); if (lttng_live_should_quit()) { ret = 0; } return ret; } static struct bt_trace_descriptor *lttng_live_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_text_stream_pos *pos; switch (flags & O_ACCMODE) { case O_RDONLY: /* OK */ break; case O_RDWR: fprintf(stderr, "[error] lttng live plugin cannot be used as output plugin.\n"); goto error; default: fprintf(stderr, "[error] Incorrect open flags.\n"); goto error; } pos = g_new0(struct ctf_text_stream_pos, 1); pos->parent.rw_table = NULL; pos->parent.event_cb = NULL; pos->parent.trace = &pos->trace_descriptor; lttng_live_open_trace_read(path); return &pos->trace_descriptor; error: return NULL; } static int lttng_live_close_trace(struct bt_trace_descriptor *td) { struct ctf_text_stream_pos *pos = container_of(td, struct ctf_text_stream_pos, trace_descriptor); free(pos); return 0; } static struct bt_format lttng_live_format = { .open_trace = lttng_live_open_trace, .close_trace = lttng_live_close_trace, }; static void __attribute__((constructor)) lttng_live_init(void) { int ret; lttng_live_format.name = g_quark_from_static_string("lttng-live"); ret = bt_register_format(<tng_live_format); assert(!ret); } static void __attribute__((destructor)) lttng_live_exit(void) { bt_unregister_format(<tng_live_format); } babeltrace-1.2.1/formats/lttng-live/Makefile.in0000644000175000017500000004775712306621104016344 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/lttng-live DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_lttng_live_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la am_libbabeltrace_lttng_live_la_OBJECTS = lttng-live-plugin.lo \ lttng-live-comm.lo libbabeltrace_lttng_live_la_OBJECTS = \ $(am_libbabeltrace_lttng_live_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_lttng_live_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libbabeltrace_lttng_live_la_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_lttng_live_la_SOURCES) DIST_SOURCES = $(libbabeltrace_lttng_live_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_builddir)/include lib_LTLIBRARIES = libbabeltrace-lttng-live.la noinst_HEADERS = \ lttng-viewer-abi.h \ lttng-live.h libbabeltrace_lttng_live_la_SOURCES = \ lttng-live-plugin.c lttng-live-comm.c # Request that the linker keeps all static libraries objects. libbabeltrace_lttng_live_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_lttng_live_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/lttng-live/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/lttng-live/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace-lttng-live.la: $(libbabeltrace_lttng_live_la_OBJECTS) $(libbabeltrace_lttng_live_la_DEPENDENCIES) $(EXTRA_libbabeltrace_lttng_live_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_lttng_live_la_LINK) -rpath $(libdir) $(libbabeltrace_lttng_live_la_OBJECTS) $(libbabeltrace_lttng_live_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lttng-live-comm.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lttng-live-plugin.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/lttng-live/lttng-live-comm.c0000644000175000017500000011515012304150543017442 00000000000000/* * Copyright (C) 2013 - Julien Desfossez * Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* for packet_index */ #include #include #include #include #include #include #include "lttng-live.h" #include "lttng-viewer-abi.h" #define ACTIVE_POLL_DELAY 100 /* ms */ /* * Memory allocation zeroed */ #define zmalloc(x) calloc(1, x) #ifndef max_t #define max_t(type, a, b) \ ((type) (a) > (type) (b) ? (type) (a) : (type) (b)) #endif static void ctf_live_packet_seek(struct bt_stream_pos *stream_pos, size_t index, int whence); static void add_traces(gpointer key, gpointer value, gpointer user_data); static int del_traces(gpointer key, gpointer value, gpointer user_data); static int get_new_metadata(struct lttng_live_ctx *ctx, struct lttng_live_viewer_stream *viewer_stream, char **metadata_buf); static ssize_t lttng_live_recv(int fd, void *buf, size_t len) { ssize_t ret; size_t copied = 0, to_copy = len; do { ret = recv(fd, buf + copied, to_copy, 0); if (ret > 0) { assert(ret <= to_copy); copied += ret; to_copy -= ret; } } while ((ret > 0 && to_copy > 0) || (ret < 0 && errno == EINTR)); if (ret > 0) ret = copied; /* ret = 0 means orderly shutdown, ret < 0 is error. */ return ret; } static ssize_t lttng_live_send(int fd, const void *buf, size_t len) { ssize_t ret; do { ret = send(fd, buf, len, MSG_NOSIGNAL); } while (ret < 0 && errno == EINTR); return ret; } int lttng_live_connect_viewer(struct lttng_live_ctx *ctx) { struct hostent *host; struct sockaddr_in server_addr; int ret; if (lttng_live_should_quit()) { ret = -1; goto end; } host = gethostbyname(ctx->relay_hostname); if (!host) { fprintf(stderr, "[error] Cannot lookup hostname %s\n", ctx->relay_hostname); goto error; } if ((ctx->control_sock = socket(AF_INET, SOCK_STREAM, 0)) == -1) { perror("Socket"); goto error; } server_addr.sin_family = AF_INET; server_addr.sin_port = htons(ctx->port); server_addr.sin_addr = *((struct in_addr *) host->h_addr); bzero(&(server_addr.sin_zero), 8); if (connect(ctx->control_sock, (struct sockaddr *) &server_addr, sizeof(struct sockaddr)) == -1) { perror("Connect"); goto error; } ret = 0; end: return ret; error: fprintf(stderr, "[error] Connection failed\n"); return -1; } int lttng_live_establish_connection(struct lttng_live_ctx *ctx) { struct lttng_viewer_cmd cmd; struct lttng_viewer_connect connect; int ret; ssize_t ret_len; if (lttng_live_should_quit()) { ret = -1; goto end; } cmd.cmd = htobe32(LTTNG_VIEWER_CONNECT); cmd.data_size = sizeof(connect); cmd.cmd_version = 0; connect.viewer_session_id = -1ULL; /* will be set on recv */ connect.major = htobe32(LTTNG_LIVE_MAJOR); connect.minor = htobe32(LTTNG_LIVE_MINOR); connect.type = htobe32(LTTNG_VIEWER_CLIENT_COMMAND); ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &connect, sizeof(connect)); if (ret_len < 0) { perror("[error] Error sending version"); goto error; } assert(ret_len == sizeof(connect)); ret_len = lttng_live_recv(ctx->control_sock, &connect, sizeof(connect)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving version"); goto error; } assert(ret_len == sizeof(connect)); printf_verbose("Received viewer session ID : %" PRIu64 "\n", be64toh(connect.viewer_session_id)); printf_verbose("Relayd version : %u.%u\n", be32toh(connect.major), be32toh(connect.minor)); ret = 0; end: return ret; error: fprintf(stderr, "[error] Unable to establish connection\n"); return -1; } static void free_session_list(GPtrArray *session_list) { int i; struct lttng_live_relay_session *relay_session; for (i = 0; i < session_list->len; i++) { relay_session = g_ptr_array_index(session_list, i); free(relay_session->name); free(relay_session->hostname); } g_ptr_array_free(session_list, TRUE); } static void print_session_list(GPtrArray *session_list, const char *path) { int i; struct lttng_live_relay_session *relay_session; for (i = 0; i < session_list->len; i++) { relay_session = g_ptr_array_index(session_list, i); fprintf(stdout, "%s/host/%s/%s (timer = %u, " "%u stream(s), %u client(s) connected)\n", path, relay_session->hostname, relay_session->name, relay_session->timer, relay_session->streams, relay_session->clients); } } static void update_session_list(GPtrArray *session_list, char *hostname, char *session_name, uint32_t streams, uint32_t clients, uint32_t timer) { int i, found = 0; struct lttng_live_relay_session *relay_session; for (i = 0; i < session_list->len; i++) { relay_session = g_ptr_array_index(session_list, i); if ((strncmp(relay_session->hostname, hostname, NAME_MAX) == 0) && strncmp(relay_session->name, session_name, NAME_MAX) == 0) { relay_session->streams += streams; if (relay_session->clients < clients) relay_session->clients = clients; found = 1; break; } } if (found) return; relay_session = g_new0(struct lttng_live_relay_session, 1); relay_session->hostname = strndup(hostname, NAME_MAX); relay_session->name = strndup(session_name, NAME_MAX); relay_session->clients = clients; relay_session->streams = streams; relay_session->timer = timer; g_ptr_array_add(session_list, relay_session); } int lttng_live_list_sessions(struct lttng_live_ctx *ctx, const char *path) { struct lttng_viewer_cmd cmd; struct lttng_viewer_list_sessions list; struct lttng_viewer_session lsession; int i, ret, sessions_count, print_list = 0; ssize_t ret_len; uint64_t session_id; GPtrArray *session_list = NULL; if (lttng_live_should_quit()) { ret = -1; goto end; } if (strlen(ctx->session_name) == 0) { print_list = 1; session_list = g_ptr_array_new(); } cmd.cmd = htobe32(LTTNG_VIEWER_LIST_SESSIONS); cmd.data_size = 0; cmd.cmd_version = 0; ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_recv(ctx->control_sock, &list, sizeof(list)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving session list"); goto error; } assert(ret_len == sizeof(list)); sessions_count = be32toh(list.sessions_count); for (i = 0; i < sessions_count; i++) { ret_len = lttng_live_recv(ctx->control_sock, &lsession, sizeof(lsession)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving session"); goto error; } assert(ret_len == sizeof(lsession)); lsession.hostname[LTTNG_VIEWER_HOST_NAME_MAX - 1] = '\0'; lsession.session_name[LTTNG_VIEWER_NAME_MAX - 1] = '\0'; session_id = be64toh(lsession.id); if (print_list) { update_session_list(session_list, lsession.hostname, lsession.session_name, be32toh(lsession.streams), be32toh(lsession.clients), be32toh(lsession.live_timer)); } else { if ((strncmp(lsession.session_name, ctx->session_name, NAME_MAX) == 0) && (strncmp(lsession.hostname, ctx->traced_hostname, NAME_MAX) == 0)) { printf_verbose("Reading from session %" PRIu64 "\n", session_id); g_array_append_val(ctx->session_ids, session_id); } } } if (print_list) { print_session_list(session_list, path); free_session_list(session_list); } ret = 0; end: return ret; error: fprintf(stderr, "[error] Unable to list sessions\n"); return -1; } int lttng_live_ctf_trace_assign(struct lttng_live_viewer_stream *stream, uint64_t ctf_trace_id) { struct lttng_live_ctf_trace *trace; int ret = 0; trace = g_hash_table_lookup(stream->session->ctf_traces, (gpointer) ctf_trace_id); if (!trace) { trace = g_new0(struct lttng_live_ctf_trace, 1); trace->ctf_trace_id = ctf_trace_id; trace->streams = g_ptr_array_new(); g_hash_table_insert(stream->session->ctf_traces, (gpointer) ctf_trace_id, trace); } if (stream->metadata_flag) trace->metadata_stream = stream; stream->ctf_trace = trace; g_ptr_array_add(trace->streams, stream); return ret; } static int open_metadata_fp_write(struct lttng_live_viewer_stream *stream, char **metadata_buf, size_t *size) { int ret = 0; stream->metadata_fp_write = babeltrace_open_memstream(metadata_buf, size); if (!stream->metadata_fp_write) { perror("Metadata open_memstream"); ret = -1; } return ret; } int lttng_live_attach_session(struct lttng_live_ctx *ctx, uint64_t id) { struct lttng_viewer_cmd cmd; struct lttng_viewer_attach_session_request rq; struct lttng_viewer_attach_session_response rp; struct lttng_viewer_stream stream; int ret, i; ssize_t ret_len; if (lttng_live_should_quit()) { ret = -1; goto end; } cmd.cmd = htobe32(LTTNG_VIEWER_ATTACH_SESSION); cmd.data_size = sizeof(rq); cmd.cmd_version = 0; memset(&rq, 0, sizeof(rq)); rq.session_id = htobe64(id); // TODO: add cmd line parameter to select seek beginning // rq.seek = htobe32(LTTNG_VIEWER_SEEK_BEGINNING); rq.seek = htobe32(LTTNG_VIEWER_SEEK_LAST); ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &rq, sizeof(rq)); if (ret_len < 0) { perror("[error] Error sending attach request"); goto error; } assert(ret_len == sizeof(rq)); ret_len = lttng_live_recv(ctx->control_sock, &rp, sizeof(rp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving attach response"); goto error; } assert(ret_len == sizeof(rp)); switch(be32toh(rp.status)) { case LTTNG_VIEWER_ATTACH_OK: break; case LTTNG_VIEWER_ATTACH_UNK: ret = -LTTNG_VIEWER_ATTACH_UNK; goto end; case LTTNG_VIEWER_ATTACH_ALREADY: fprintf(stderr, "[error] There is already a viewer attached to this session\n"); goto error; case LTTNG_VIEWER_ATTACH_NOT_LIVE: fprintf(stderr, "[error] Not a live session\n"); goto error; case LTTNG_VIEWER_ATTACH_SEEK_ERR: fprintf(stderr, "[error] Wrong seek parameter\n"); goto error; default: fprintf(stderr, "[error] Unknown attach return code %u\n", be32toh(rp.status)); goto error; } if (be32toh(rp.status) != LTTNG_VIEWER_ATTACH_OK) { goto error; } ctx->session->stream_count += be32toh(rp.streams_count); /* * When the session is created but not started, we do an active wait * until it starts. It allows the viewer to start processing the trace * as soon as the session starts. */ if (ctx->session->stream_count == 0) { ret = 0; goto end; } printf_verbose("Waiting for %" PRIu64 " streams:\n", ctx->session->stream_count); ctx->session->streams = g_new0(struct lttng_live_viewer_stream, ctx->session->stream_count); for (i = 0; i < be32toh(rp.streams_count); i++) { ret_len = lttng_live_recv(ctx->control_sock, &stream, sizeof(stream)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving stream"); goto error; } assert(ret_len == sizeof(stream)); stream.path_name[LTTNG_VIEWER_PATH_MAX - 1] = '\0'; stream.channel_name[LTTNG_VIEWER_NAME_MAX - 1] = '\0'; printf_verbose(" stream %" PRIu64 " : %s/%s\n", be64toh(stream.id), stream.path_name, stream.channel_name); ctx->session->streams[i].id = be64toh(stream.id); ctx->session->streams[i].session = ctx->session; ctx->session->streams[i].first_read = 1; ctx->session->streams[i].mmap_size = 0; if (be32toh(stream.metadata_flag)) { ctx->session->streams[i].metadata_flag = 1; } ret = lttng_live_ctf_trace_assign(&ctx->session->streams[i], be64toh(stream.ctf_trace_id)); if (ret < 0) { goto error; } } ret = 0; end: return ret; error: return -1; } static int ask_new_streams(struct lttng_live_ctx *ctx) { int i, ret = 0; uint64_t id; restart: for (i = 0; i < ctx->session_ids->len; i++) { id = g_array_index(ctx->session_ids, uint64_t, i); ret = lttng_live_get_new_streams(ctx, id); printf_verbose("Asking for new streams returns %d\n", ret); if (ret < 0) { if (ret == -LTTNG_VIEWER_NEW_STREAMS_HUP) { printf_verbose("Session %" PRIu64 " closed\n", id); /* * The streams have already been closed during * the reading, so we only need to get rid of * the trace in our internal table of sessions. */ g_array_remove_index(ctx->session_ids, i); /* * We can't continue iterating on the g_array * after a remove, we have to start again. */ goto restart; } else { ret = -1; goto end; } } } end: return ret; } static int append_metadata(struct lttng_live_ctx *ctx, struct lttng_live_viewer_stream *viewer_stream) { int ret; struct lttng_live_viewer_stream *metadata; char *metadata_buf = NULL; printf_verbose("get_next_index: new metadata needed\n"); ret = get_new_metadata(ctx, viewer_stream, &metadata_buf); if (ret < 0) { free(metadata_buf); goto error; } metadata = viewer_stream->ctf_trace->metadata_stream; metadata->ctf_trace->metadata_fp = babeltrace_fmemopen(metadata_buf, metadata->metadata_len, "rb"); if (!metadata->ctf_trace->metadata_fp) { perror("Metadata fmemopen"); free(metadata_buf); ret = -1; goto error; } ret = ctf_append_trace_metadata( viewer_stream->ctf_trace->handle->td, metadata->ctf_trace->metadata_fp); /* We accept empty metadata packets */ if (ret != 0 && ret != -ENOENT) { fprintf(stderr, "[error] Appending metadata\n"); goto error; } ret = 0; error: return ret; } static int get_data_packet(struct lttng_live_ctx *ctx, struct ctf_stream_pos *pos, struct lttng_live_viewer_stream *stream, uint64_t offset, uint64_t len) { struct lttng_viewer_cmd cmd; struct lttng_viewer_get_packet rq; struct lttng_viewer_trace_packet rp; ssize_t ret_len; int ret; retry: if (lttng_live_should_quit()) { ret = -1; goto end; } cmd.cmd = htobe32(LTTNG_VIEWER_GET_PACKET); cmd.data_size = sizeof(rq); cmd.cmd_version = 0; memset(&rq, 0, sizeof(rq)); rq.stream_id = htobe64(stream->id); rq.offset = htobe64(offset); rq.len = htobe32(len); ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &rq, sizeof(rq)); if (ret_len < 0) { perror("[error] Error sending get_data_packet request"); goto error; } assert(ret_len == sizeof(rq)); ret_len = lttng_live_recv(ctx->control_sock, &rp, sizeof(rp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving data response"); goto error; } if (ret_len != sizeof(rp)) { fprintf(stderr, "[error] get_data_packet: expected %" PRId64 ", received %" PRId64 "\n", sizeof(rp), ret_len); goto error; } rp.flags = be32toh(rp.flags); switch (be32toh(rp.status)) { case LTTNG_VIEWER_GET_PACKET_OK: len = be32toh(rp.len); printf_verbose("get_data_packet: Ok, packet size : %" PRIu64 "\n", len); break; case LTTNG_VIEWER_GET_PACKET_RETRY: /* Unimplemented by relay daemon */ printf_verbose("get_data_packet: retry\n"); goto error; case LTTNG_VIEWER_GET_PACKET_ERR: if (rp.flags & LTTNG_VIEWER_FLAG_NEW_METADATA) { printf_verbose("get_data_packet: new metadata needed\n"); ret = append_metadata(ctx, stream); if (ret) goto error; } if (rp.flags & LTTNG_VIEWER_FLAG_NEW_STREAM) { printf_verbose("get_data_packet: new streams needed\n"); ret = ask_new_streams(ctx); if (ret < 0) goto error; g_hash_table_foreach(ctx->session->ctf_traces, add_traces, ctx->bt_ctx); } if (rp.flags & (LTTNG_VIEWER_FLAG_NEW_METADATA | LTTNG_VIEWER_FLAG_NEW_STREAM)) { goto retry; } fprintf(stderr, "[error] get_data_packet: error\n"); goto error; case LTTNG_VIEWER_GET_PACKET_EOF: ret = -2; goto end; default: printf_verbose("get_data_packet: unknown\n"); goto error; } if (len == 0) { goto error; } if (len > stream->mmap_size) { uint64_t new_size; new_size = max_t(uint64_t, len, stream->mmap_size << 1); if (pos->base_mma) { /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { perror("[error] Unable to unmap old base"); goto error; } pos->base_mma = NULL; } pos->base_mma = mmap_align(new_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); if (pos->base_mma == MAP_FAILED) { perror("[error] mmap error"); pos->base_mma = NULL; goto error; } stream->mmap_size = new_size; printf_verbose("Expanding stream mmap size to %" PRIu64 " bytes\n", stream->mmap_size); } ret_len = lttng_live_recv(ctx->control_sock, mmap_align_addr(pos->base_mma), len); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving trace packet"); goto error; } assert(ret_len == len); ret = 0; end: return ret; error: return -1; } static int get_one_metadata_packet(struct lttng_live_ctx *ctx, struct lttng_live_viewer_stream *metadata_stream) { uint64_t len = 0; int ret; struct lttng_viewer_cmd cmd; struct lttng_viewer_get_metadata rq; struct lttng_viewer_metadata_packet rp; char *data = NULL; ssize_t ret_len; if (lttng_live_should_quit()) { ret = -1; goto end; } rq.stream_id = htobe64(metadata_stream->id); cmd.cmd = htobe32(LTTNG_VIEWER_GET_METADATA); cmd.data_size = sizeof(rq); cmd.cmd_version = 0; ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &rq, sizeof(rq)); if (ret_len < 0) { perror("[error] Error sending get_metadata request"); goto error; } assert(ret_len == sizeof(rq)); ret_len = lttng_live_recv(ctx->control_sock, &rp, sizeof(rp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving metadata response"); goto error; } assert(ret_len == sizeof(rp)); switch (be32toh(rp.status)) { case LTTNG_VIEWER_METADATA_OK: printf_verbose("get_metadata : OK\n"); break; case LTTNG_VIEWER_NO_NEW_METADATA: printf_verbose("get_metadata : NO NEW\n"); ret = 0; goto end; case LTTNG_VIEWER_METADATA_ERR: printf_verbose("get_metadata : ERR\n"); goto error; default: printf_verbose("get_metadata : UNKNOWN\n"); goto error; } len = be64toh(rp.len); printf_verbose("Writing %" PRIu64" bytes to metadata\n", len); if (len <= 0) { goto error; } data = zmalloc(len); if (!data) { perror("relay data zmalloc"); goto error; } ret_len = lttng_live_recv(ctx->control_sock, data, len); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error_free_data; } if (ret_len < 0) { perror("[error] Error receiving trace packet"); goto error_free_data; } assert(ret_len == len); do { ret_len = fwrite(data, 1, len, metadata_stream->metadata_fp_write); } while (ret_len < 0 && errno == EINTR); if (ret_len < 0) { fprintf(stderr, "[error] Writing in the metadata fp\n"); goto error_free_data; } assert(ret_len == len); metadata_stream->metadata_len += len; free(data); ret = len; end: return ret; error_free_data: free(data); error: return -1; } /* * Return 0 on success, a negative value on error. */ static int get_new_metadata(struct lttng_live_ctx *ctx, struct lttng_live_viewer_stream *viewer_stream, char **metadata_buf) { int ret = 0; struct lttng_live_viewer_stream *metadata_stream; size_t size, len_read = 0;; metadata_stream = viewer_stream->ctf_trace->metadata_stream; if (!metadata_stream) { fprintf(stderr, "[error] No metadata stream\n"); ret = -1; goto error; } metadata_stream->metadata_len = 0; ret = open_metadata_fp_write(metadata_stream, metadata_buf, &size); if (ret < 0) { goto error; } do { /* * get_one_metadata_packet returns the number of bytes * received, 0 when we have received everything, a * negative value on error. */ ret = get_one_metadata_packet(ctx, metadata_stream); if (ret > 0) { len_read += ret; } if (!len_read) { (void) poll(NULL, 0, ACTIVE_POLL_DELAY); } } while (ret > 0 || !len_read); if (fclose(metadata_stream->metadata_fp_write)) perror("fclose"); metadata_stream->metadata_fp_write = NULL; error: return ret; } /* * Get one index for a stream. * * Returns 0 on success or a negative value on error. */ static int get_next_index(struct lttng_live_ctx *ctx, struct lttng_live_viewer_stream *viewer_stream, struct packet_index *index) { struct lttng_viewer_cmd cmd; struct lttng_viewer_get_next_index rq; struct lttng_viewer_index rp; int ret; ssize_t ret_len; cmd.cmd = htobe32(LTTNG_VIEWER_GET_NEXT_INDEX); cmd.data_size = sizeof(rq); cmd.cmd_version = 0; memset(&rq, 0, sizeof(rq)); rq.stream_id = htobe64(viewer_stream->id); retry: if (lttng_live_should_quit()) { ret = -1; goto end; } ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &rq, sizeof(rq)); if (ret_len < 0) { perror("[error] Error sending get_next_index request"); goto error; } assert(ret_len == sizeof(rq)); ret_len = lttng_live_recv(ctx->control_sock, &rp, sizeof(rp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving index response"); goto error; } assert(ret_len == sizeof(rp)); rp.flags = be32toh(rp.flags); switch (be32toh(rp.status)) { case LTTNG_VIEWER_INDEX_INACTIVE: printf_verbose("get_next_index: inactive\n"); memset(index, 0, sizeof(struct packet_index)); index->ts_cycles.timestamp_end = be64toh(rp.timestamp_end); break; case LTTNG_VIEWER_INDEX_OK: printf_verbose("get_next_index: Ok, need metadata update : %u\n", rp.flags & LTTNG_VIEWER_FLAG_NEW_METADATA); index->offset = be64toh(rp.offset); index->packet_size = be64toh(rp.packet_size); index->content_size = be64toh(rp.content_size); index->ts_cycles.timestamp_begin = be64toh(rp.timestamp_begin); index->ts_cycles.timestamp_end = be64toh(rp.timestamp_end); index->events_discarded = be64toh(rp.events_discarded); if (rp.flags & LTTNG_VIEWER_FLAG_NEW_METADATA) { ret = append_metadata(ctx, viewer_stream); if (ret) goto error; } if (rp.flags & LTTNG_VIEWER_FLAG_NEW_STREAM) { ret = ask_new_streams(ctx); if (ret < 0) goto error; g_hash_table_foreach(ctx->session->ctf_traces, add_traces, ctx->bt_ctx); } break; case LTTNG_VIEWER_INDEX_RETRY: printf_verbose("get_next_index: retry\n"); (void) poll(NULL, 0, ACTIVE_POLL_DELAY); goto retry; case LTTNG_VIEWER_INDEX_HUP: printf_verbose("get_next_index: stream hung up\n"); viewer_stream->id = -1ULL; index->offset = EOF; ctx->session->stream_count--; break; case LTTNG_VIEWER_INDEX_ERR: fprintf(stderr, "[error] get_next_index: error\n"); goto error; default: fprintf(stderr, "[error] get_next_index: unkwown value\n"); goto error; } ret = 0; end: return ret; error: return -1; } static void ctf_live_packet_seek(struct bt_stream_pos *stream_pos, size_t index, int whence) { struct ctf_stream_pos *pos; struct ctf_file_stream *file_stream; struct packet_index *prev_index = NULL, *cur_index; struct lttng_live_viewer_stream *viewer_stream; struct lttng_live_session *session; int ret; retry: pos = ctf_pos(stream_pos); file_stream = container_of(pos, struct ctf_file_stream, pos); viewer_stream = (struct lttng_live_viewer_stream *) pos->priv; session = viewer_stream->session; switch (pos->packet_index->len) { case 0: g_array_set_size(pos->packet_index, 1); cur_index = &g_array_index(pos->packet_index, struct packet_index, 0); break; case 1: g_array_set_size(pos->packet_index, 2); prev_index = &g_array_index(pos->packet_index, struct packet_index, 0); cur_index = &g_array_index(pos->packet_index, struct packet_index, 1); break; case 2: g_array_index(pos->packet_index, struct packet_index, 0) = g_array_index(pos->packet_index, struct packet_index, 1); prev_index = &g_array_index(pos->packet_index, struct packet_index, 0); cur_index = &g_array_index(pos->packet_index, struct packet_index, 1); break; default: abort(); break; } printf_verbose("get_next_index for stream %" PRIu64 "\n", viewer_stream->id); ret = get_next_index(session->ctx, viewer_stream, cur_index); if (ret < 0) { pos->offset = EOF; fprintf(stderr, "[error] get_next_index failed\n"); return; } pos->packet_size = cur_index->packet_size; pos->content_size = cur_index->content_size; pos->mmap_base_offset = 0; if (cur_index->offset == EOF) { pos->offset = EOF; } else { pos->offset = 0; } if (cur_index->content_size == 0) { file_stream->parent.cycles_timestamp = cur_index->ts_cycles.timestamp_end; file_stream->parent.real_timestamp = ctf_get_real_timestamp( &file_stream->parent, cur_index->ts_cycles.timestamp_end); } else { /* Convert the timestamps and append to the real_index. */ cur_index->ts_real.timestamp_begin = ctf_get_real_timestamp( &file_stream->parent, cur_index->ts_cycles.timestamp_begin); cur_index->ts_real.timestamp_end = ctf_get_real_timestamp( &file_stream->parent, cur_index->ts_cycles.timestamp_end); ctf_update_current_packet_index(&file_stream->parent, prev_index, cur_index); file_stream->parent.cycles_timestamp = cur_index->ts_cycles.timestamp_begin; file_stream->parent.real_timestamp = cur_index->ts_real.timestamp_begin; } if (pos->packet_size == 0 || pos->offset == EOF) { goto end; } printf_verbose("get_data_packet for stream %" PRIu64 "\n", viewer_stream->id); ret = get_data_packet(session->ctx, pos, viewer_stream, cur_index->offset, cur_index->packet_size / CHAR_BIT); if (ret == -2) { goto retry; } else if (ret < 0) { pos->offset = EOF; fprintf(stderr, "[error] get_data_packet failed\n"); return; } printf_verbose("Index received : packet_size : %" PRIu64 ", offset %" PRIu64 ", content_size %" PRIu64 ", timestamp_end : %" PRIu64 "\n", cur_index->packet_size, cur_index->offset, cur_index->content_size, cur_index->ts_cycles.timestamp_end); /* update trace_packet_header and stream_packet_context */ if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) { /* Read packet header */ ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); if (ret) { pos->offset = EOF; fprintf(stderr, "[error] trace packet header read failed\n"); goto end; } } if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) { /* Read packet context */ ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); if (ret) { pos->offset = EOF; fprintf(stderr, "[error] stream packet context read failed\n"); goto end; } } pos->data_offset = pos->offset; end: return; } int lttng_live_create_viewer_session(struct lttng_live_ctx *ctx) { struct lttng_viewer_cmd cmd; struct lttng_viewer_create_session_response resp; int ret; ssize_t ret_len; if (lttng_live_should_quit()) { ret = -1; goto end; } cmd.cmd = htobe32(LTTNG_VIEWER_CREATE_SESSION); cmd.data_size = 0; cmd.cmd_version = 0; ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_recv(ctx->control_sock, &resp, sizeof(resp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving create session reply"); goto error; } assert(ret_len == sizeof(resp)); if (be32toh(resp.status) != LTTNG_VIEWER_CREATE_SESSION_OK) { fprintf(stderr, "[error] Error creating viewer session\n"); goto error; } ret = 0; end: return ret; error: return -1; } static int del_traces(gpointer key, gpointer value, gpointer user_data) { struct bt_context *bt_ctx = user_data; struct lttng_live_ctf_trace *trace = value; int ret; ret = bt_context_remove_trace(bt_ctx, trace->trace_id); if (ret < 0) fprintf(stderr, "[error] removing trace from context\n"); /* remove the key/value pair from the HT. */ return 1; } static void add_traces(gpointer key, gpointer value, gpointer user_data) { int i, ret; struct bt_context *bt_ctx = user_data; struct lttng_live_ctf_trace *trace = value; struct lttng_live_viewer_stream *stream; struct bt_mmap_stream *new_mmap_stream; struct bt_mmap_stream_list mmap_list; struct lttng_live_ctx *ctx = NULL; struct bt_trace_descriptor *td; struct bt_trace_handle *handle; /* * We don't know how many streams we will receive for a trace, so * once we are done receiving the traces, we add all the traces * received to the bt_context. * We can receive streams during the attach command or the * get_new_streams, so we have to make sure not to add multiple * times the same traces. * If a trace is already in the context, we just skip this function. */ if (trace->in_use) return; BT_INIT_LIST_HEAD(&mmap_list.head); for (i = 0; i < trace->streams->len; i++) { stream = g_ptr_array_index(trace->streams, i); ctx = stream->session->ctx; if (!stream->metadata_flag) { new_mmap_stream = zmalloc(sizeof(struct bt_mmap_stream)); new_mmap_stream->priv = (void *) stream; new_mmap_stream->fd = -1; bt_list_add(&new_mmap_stream->list, &mmap_list.head); } else { char *metadata_buf = NULL; /* Get all possible metadata before starting */ ret = get_new_metadata(ctx, stream, &metadata_buf); if (ret) { free(metadata_buf); goto end_free; } if (!stream->metadata_len) { fprintf(stderr, "[error] empty metadata\n"); ret = -1; free(metadata_buf); goto end_free; } trace->metadata_fp = babeltrace_fmemopen(metadata_buf, stream->metadata_len, "rb"); if (!trace->metadata_fp) { perror("Metadata fmemopen"); ret = -1; free(metadata_buf); goto end_free; } } } if (!trace->metadata_fp) { fprintf(stderr, "[error] No metadata stream opened\n"); goto end_free; } ret = bt_context_add_trace(bt_ctx, NULL, "ctf", ctf_live_packet_seek, &mmap_list, trace->metadata_fp); if (ret < 0) { fprintf(stderr, "[error] Error adding trace\n"); goto end_free; } trace->metadata_stream->metadata_len = 0; handle = (struct bt_trace_handle *) g_hash_table_lookup( bt_ctx->trace_handles, (gpointer) (unsigned long) ret); td = handle->td; trace->handle = handle; if (bt_ctx->current_iterator) { bt_iter_add_trace(bt_ctx->current_iterator, td); } trace->trace_id = ret; trace->in_use = 1; goto end; end_free: bt_context_put(bt_ctx); end: return; } int lttng_live_get_new_streams(struct lttng_live_ctx *ctx, uint64_t id) { struct lttng_viewer_cmd cmd; struct lttng_viewer_new_streams_request rq; struct lttng_viewer_new_streams_response rp; struct lttng_viewer_stream stream; int ret, i; ssize_t ret_len; uint32_t stream_count; if (lttng_live_should_quit()) { ret = -1; goto end; } cmd.cmd = htobe32(LTTNG_VIEWER_GET_NEW_STREAMS); cmd.data_size = sizeof(rq); cmd.cmd_version = 0; memset(&rq, 0, sizeof(rq)); rq.session_id = htobe64(id); ret_len = lttng_live_send(ctx->control_sock, &cmd, sizeof(cmd)); if (ret_len < 0) { perror("[error] Error sending cmd"); goto error; } assert(ret_len == sizeof(cmd)); ret_len = lttng_live_send(ctx->control_sock, &rq, sizeof(rq)); if (ret_len < 0) { perror("[error] Error sending get_new_streams request"); goto error; } assert(ret_len == sizeof(rq)); ret_len = lttng_live_recv(ctx->control_sock, &rp, sizeof(rp)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving get_new_streams response"); goto error; } assert(ret_len == sizeof(rp)); switch(be32toh(rp.status)) { case LTTNG_VIEWER_NEW_STREAMS_OK: break; case LTTNG_VIEWER_NEW_STREAMS_NO_NEW: ret = 0; goto end; case LTTNG_VIEWER_NEW_STREAMS_HUP: ret = -LTTNG_VIEWER_NEW_STREAMS_HUP; goto end; case LTTNG_VIEWER_NEW_STREAMS_ERR: fprintf(stderr, "[error] get_new_streams error\n"); goto error; default: fprintf(stderr, "[error] Unknown return code %u\n", be32toh(rp.status)); goto error; } stream_count = be32toh(rp.streams_count); ctx->session->stream_count += stream_count; /* * When the session is created but not started, we do an active wait * until it starts. It allows the viewer to start processing the trace * as soon as the session starts. */ if (ctx->session->stream_count == 0) { ret = 0; goto end; } printf_verbose("Waiting for %" PRIu64 " streams:\n", ctx->session->stream_count); ctx->session->streams = g_new0(struct lttng_live_viewer_stream, ctx->session->stream_count); for (i = 0; i < stream_count; i++) { ret_len = lttng_live_recv(ctx->control_sock, &stream, sizeof(stream)); if (ret_len == 0) { fprintf(stderr, "[error] Remote side has closed connection\n"); goto error; } if (ret_len < 0) { perror("[error] Error receiving stream"); goto error; } assert(ret_len == sizeof(stream)); stream.path_name[LTTNG_VIEWER_PATH_MAX - 1] = '\0'; stream.channel_name[LTTNG_VIEWER_NAME_MAX - 1] = '\0'; printf_verbose(" stream %" PRIu64 " : %s/%s\n", be64toh(stream.id), stream.path_name, stream.channel_name); ctx->session->streams[i].id = be64toh(stream.id); ctx->session->streams[i].session = ctx->session; ctx->session->streams[i].first_read = 1; ctx->session->streams[i].mmap_size = 0; if (be32toh(stream.metadata_flag)) { ctx->session->streams[i].metadata_flag = 1; } ret = lttng_live_ctf_trace_assign(&ctx->session->streams[i], be64toh(stream.ctf_trace_id)); if (ret < 0) { goto error; } } ret = 0; end: return ret; error: return -1; } void lttng_live_read(struct lttng_live_ctx *ctx) { int ret, i; struct bt_ctf_iter *iter; const struct bt_ctf_event *event; struct bt_iter_pos begin_pos; struct bt_trace_descriptor *td_write; struct bt_format *fmt_write; struct ctf_text_stream_pos *sout; uint64_t id; ctx->bt_ctx = bt_context_create(); if (!ctx->bt_ctx) { fprintf(stderr, "[error] bt_context_create allocation\n"); goto end; } fmt_write = bt_lookup_format(g_quark_from_static_string("text")); if (!fmt_write) { fprintf(stderr, "[error] ctf-text error\n"); goto end; } td_write = fmt_write->open_trace(NULL, O_RDWR, NULL, NULL); if (!td_write) { fprintf(stderr, "[error] Error opening output trace\n"); goto end_free; } sout = container_of(td_write, struct ctf_text_stream_pos, trace_descriptor); if (!sout->parent.event_cb) { goto end_free; } ret = lttng_live_create_viewer_session(ctx); if (ret < 0) { goto end_free; } for (i = 0; i < ctx->session_ids->len; i++) { id = g_array_index(ctx->session_ids, uint64_t, i); printf_verbose("Attaching to session %lu\n", id); ret = lttng_live_attach_session(ctx, id); printf_verbose("Attaching session returns %d\n", ret); if (ret < 0) { if (ret == -LTTNG_VIEWER_ATTACH_UNK) { fprintf(stderr, "[error] Unknown session ID\n"); } goto end_free; } } /* * As long as the session is active, we try to get new streams. */ for (;;) { int flags; if (lttng_live_should_quit()) { goto end_free; } while (!ctx->session->stream_count) { if (lttng_live_should_quit() || ctx->session_ids->len == 0) { goto end_free; } ret = ask_new_streams(ctx); if (ret < 0) { goto end_free; } if (!ctx->session->stream_count) { (void) poll(NULL, 0, ACTIVE_POLL_DELAY); } } g_hash_table_foreach(ctx->session->ctf_traces, add_traces, ctx->bt_ctx); begin_pos.type = BT_SEEK_BEGIN; iter = bt_ctf_iter_create(ctx->bt_ctx, &begin_pos, NULL); if (!iter) { fprintf(stderr, "[error] Iterator creation error\n"); goto end; } for (;;) { if (lttng_live_should_quit()) { goto end_free; } event = bt_ctf_iter_read_event_flags(iter, &flags); if (!(flags & BT_ITER_FLAG_RETRY)) { if (!event) { /* End of trace */ break; } ret = sout->parent.event_cb(&sout->parent, event->parent->stream); if (ret) { fprintf(stderr, "[error] Writing " "event failed.\n"); goto end_free; } } ret = bt_iter_next(bt_ctf_get_iter(iter)); if (ret < 0) { goto end_free; } } bt_ctf_iter_destroy(iter); g_hash_table_foreach_remove(ctx->session->ctf_traces, del_traces, ctx->bt_ctx); ctx->session->stream_count = 0; } end_free: bt_context_put(ctx->bt_ctx); end: return; } babeltrace-1.2.1/formats/lttng-live/lttng-viewer-abi.h0000644000175000017500000001604212304150543017611 00000000000000#ifndef LTTNG_VIEWER_ABI_H #define LTTNG_VIEWER_ABI_H /* * Copyright (C) 2013 - Julien Desfossez * Mathieu Desnoyers * David Goulet * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #define LTTNG_VIEWER_PATH_MAX 4096 #define LTTNG_VIEWER_NAME_MAX 255 #define LTTNG_VIEWER_HOST_NAME_MAX 64 /* Flags in reply to get_next_index and get_packet. */ enum { /* New metadata is required to read this packet. */ LTTNG_VIEWER_FLAG_NEW_METADATA = (1 << 0), /* New stream got added to the trace. */ LTTNG_VIEWER_FLAG_NEW_STREAM = (1 << 1), }; enum lttng_viewer_command { LTTNG_VIEWER_CONNECT = 1, LTTNG_VIEWER_LIST_SESSIONS = 2, LTTNG_VIEWER_ATTACH_SESSION = 3, LTTNG_VIEWER_GET_NEXT_INDEX = 4, LTTNG_VIEWER_GET_PACKET = 5, LTTNG_VIEWER_GET_METADATA = 6, LTTNG_VIEWER_GET_NEW_STREAMS = 7, LTTNG_VIEWER_CREATE_SESSION = 8, }; enum lttng_viewer_attach_return_code { LTTNG_VIEWER_ATTACH_OK = 1, /* The attach command succeeded. */ LTTNG_VIEWER_ATTACH_ALREADY = 2, /* A viewer is already attached. */ LTTNG_VIEWER_ATTACH_UNK = 3, /* The session ID is unknown. */ LTTNG_VIEWER_ATTACH_NOT_LIVE = 4, /* The session is not live. */ LTTNG_VIEWER_ATTACH_SEEK_ERR = 5, /* Seek error. */ LTTNG_VIEWER_ATTACH_NO_SESSION = 6, /* No viewer session created. */ }; enum lttng_viewer_next_index_return_code { LTTNG_VIEWER_INDEX_OK = 1, /* Index is available. */ LTTNG_VIEWER_INDEX_RETRY = 2, /* Index not yet available. */ LTTNG_VIEWER_INDEX_HUP = 3, /* Index closed (trace destroyed). */ LTTNG_VIEWER_INDEX_ERR = 4, /* Unknow error. */ LTTNG_VIEWER_INDEX_INACTIVE = 5, /* Inactive stream beacon. */ LTTNG_VIEWER_INDEX_EOF = 6, /* End of index file. */ }; enum lttng_viewer_get_packet_return_code { LTTNG_VIEWER_GET_PACKET_OK = 1, LTTNG_VIEWER_GET_PACKET_RETRY = 2, LTTNG_VIEWER_GET_PACKET_ERR = 3, LTTNG_VIEWER_GET_PACKET_EOF = 4, }; enum lttng_viewer_get_metadata_return_code { LTTNG_VIEWER_METADATA_OK = 1, LTTNG_VIEWER_NO_NEW_METADATA = 2, LTTNG_VIEWER_METADATA_ERR = 3, }; enum lttng_viewer_connection_type { LTTNG_VIEWER_CLIENT_COMMAND = 1, LTTNG_VIEWER_CLIENT_NOTIFICATION = 2, }; enum lttng_viewer_seek { /* Receive the trace packets from the beginning. */ LTTNG_VIEWER_SEEK_BEGINNING = 1, /* Receive the trace packets from now. */ LTTNG_VIEWER_SEEK_LAST = 2, }; enum lttng_viewer_new_streams_return_code { LTTNG_VIEWER_NEW_STREAMS_OK = 1, /* If new streams are being sent. */ LTTNG_VIEWER_NEW_STREAMS_NO_NEW = 2, /* If no new streams are available. */ LTTNG_VIEWER_NEW_STREAMS_ERR = 3, /* Error. */ LTTNG_VIEWER_NEW_STREAMS_HUP = 4, /* Session closed. */ }; enum lttng_viewer_create_session_return_code { LTTNG_VIEWER_CREATE_SESSION_OK = 1, LTTNG_VIEWER_CREATE_SESSION_ERR = 2, }; struct lttng_viewer_session { uint64_t id; uint32_t live_timer; uint32_t clients; uint32_t streams; char hostname[LTTNG_VIEWER_HOST_NAME_MAX]; char session_name[LTTNG_VIEWER_NAME_MAX]; } __attribute__((__packed__)); struct lttng_viewer_stream { uint64_t id; uint64_t ctf_trace_id; uint32_t metadata_flag; char path_name[LTTNG_VIEWER_PATH_MAX]; char channel_name[LTTNG_VIEWER_NAME_MAX]; } __attribute__((__packed__)); struct lttng_viewer_cmd { uint64_t data_size; /* data size following this header */ uint32_t cmd; /* enum lttcomm_relayd_command */ uint32_t cmd_version; /* command version */ } __attribute__((__packed__)); /* * LTTNG_VIEWER_CONNECT payload. */ struct lttng_viewer_connect { /* session ID assigned by the relay for command connections */ uint64_t viewer_session_id; uint32_t major; uint32_t minor; uint32_t type; /* enum lttng_viewer_connection_type */ } __attribute__((__packed__)); /* * LTTNG_VIEWER_LIST_SESSIONS payload. */ struct lttng_viewer_list_sessions { uint32_t sessions_count; char session_list[]; /* struct lttng_viewer_session */ } __attribute__((__packed__)); /* * LTTNG_VIEWER_ATTACH_SESSION payload. */ struct lttng_viewer_attach_session_request { uint64_t session_id; uint64_t offset; /* unused for now */ uint32_t seek; /* enum lttng_viewer_seek */ } __attribute__((__packed__)); struct lttng_viewer_attach_session_response { /* enum lttng_viewer_attach_return_code */ uint32_t status; uint32_t streams_count; /* struct lttng_viewer_stream */ char stream_list[]; } __attribute__((__packed__)); /* * LTTNG_VIEWER_GET_NEXT_INDEX payload. */ struct lttng_viewer_get_next_index { uint64_t stream_id; } __attribute__ ((__packed__)); struct lttng_viewer_index { uint64_t offset; uint64_t packet_size; uint64_t content_size; uint64_t timestamp_begin; uint64_t timestamp_end; uint64_t events_discarded; uint64_t stream_id; uint32_t status; /* enum lttng_viewer_next_index_return_code */ uint32_t flags; /* LTTNG_VIEWER_FLAG_* */ } __attribute__ ((__packed__)); /* * LTTNG_VIEWER_GET_PACKET payload. */ struct lttng_viewer_get_packet { uint64_t stream_id; uint64_t offset; uint32_t len; } __attribute__((__packed__)); struct lttng_viewer_trace_packet { uint32_t status; /* enum lttng_viewer_get_packet_return_code */ uint32_t len; uint32_t flags; /* LTTNG_VIEWER_FLAG_* */ char data[]; } __attribute__((__packed__)); /* * LTTNG_VIEWER_GET_METADATA payload. */ struct lttng_viewer_get_metadata { uint64_t stream_id; } __attribute__((__packed__)); struct lttng_viewer_metadata_packet { uint64_t len; uint32_t status; /* enum lttng_viewer_get_metadata_return_code */ char data[]; } __attribute__((__packed__)); /* * LTTNG_VIEWER_GET_NEW_STREAMS payload. */ struct lttng_viewer_new_streams_request { uint64_t session_id; } __attribute__((__packed__)); struct lttng_viewer_new_streams_response { /* enum lttng_viewer_new_streams_return_code */ uint32_t status; uint32_t streams_count; /* struct lttng_viewer_stream */ char stream_list[]; } __attribute__((__packed__)); struct lttng_viewer_create_session_response { /* enum lttng_viewer_create_session_return_code */ uint32_t status; } __attribute__((__packed__)); #endif /* LTTNG_VIEWER_ABI_H */ babeltrace-1.2.1/formats/lttng-live/lttng-live.h0000644000175000017500000000551612304150543016522 00000000000000#ifndef _LTTNG_LIVE_H #define _LTTNG_LIVE_H /* * Copyright 2013 Julien Desfossez * Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #define LTTNG_DEFAULT_NETWORK_VIEWER_PORT 5344 #define LTTNG_LIVE_MAJOR 2 #define LTTNG_LIVE_MINOR 4 struct lttng_live_ctx { char traced_hostname[NAME_MAX]; char session_name[NAME_MAX]; char relay_hostname[NAME_MAX]; int control_sock; int port; struct lttng_live_session *session; struct bt_context *bt_ctx; GArray *session_ids; }; struct lttng_live_viewer_stream { uint64_t id; uint64_t mmap_size; FILE *metadata_fp_write; ssize_t metadata_len; int metadata_flag; int first_read; struct lttng_live_session *session; struct lttng_live_ctf_trace *ctf_trace; char path[PATH_MAX]; }; struct lttng_live_session { uint64_t live_timer_interval; uint64_t stream_count; struct lttng_live_ctx *ctx; struct lttng_live_viewer_stream *streams; GHashTable *ctf_traces; }; struct lttng_live_ctf_trace { uint64_t ctf_trace_id; struct lttng_live_viewer_stream *metadata_stream; GPtrArray *streams; FILE *metadata_fp; struct bt_trace_handle *handle; int trace_id; int in_use; }; /* Just used in listing. */ struct lttng_live_relay_session { uint32_t streams; uint32_t clients; uint32_t timer; char *name; char *hostname; }; int lttng_live_connect_viewer(struct lttng_live_ctx *ctx); int lttng_live_establish_connection(struct lttng_live_ctx *ctx); int lttng_live_list_sessions(struct lttng_live_ctx *ctx, const char *path); int lttng_live_attach_session(struct lttng_live_ctx *ctx, uint64_t id); void lttng_live_read(struct lttng_live_ctx *ctx); int lttng_live_get_new_streams(struct lttng_live_ctx *ctx, uint64_t id); int lttng_live_should_quit(void); #endif /* _LTTNG_LIVE_H */ babeltrace-1.2.1/formats/ctf/0000755000175000017500000000000012306621157013032 500000000000000babeltrace-1.2.1/formats/ctf/events.c0000644000175000017500000005164012304150543014422 00000000000000/* * ctf/events.c * * Babeltrace Library * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include "events-private.h" /* * thread local storage to store the last error that occured * while reading a field, this variable must be accessed by * bt_ctf_field_get_error only */ __thread int bt_ctf_last_field_error = 0; const struct bt_definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event *ctf_event, enum bt_ctf_scope scope) { const struct bt_definition *tmp = NULL; const struct ctf_event_definition *event; if (!ctf_event) return NULL; event = ctf_event->parent; switch (scope) { case BT_TRACE_PACKET_HEADER: if (!event->stream) goto error; if (event->stream->trace_packet_header) tmp = &event->stream->trace_packet_header->p; break; case BT_STREAM_PACKET_CONTEXT: if (!event->stream) goto error; if (event->stream->stream_packet_context) tmp = &event->stream->stream_packet_context->p; break; case BT_STREAM_EVENT_HEADER: if (!event->stream) goto error; if (event->stream->stream_event_header) tmp = &event->stream->stream_event_header->p; break; case BT_STREAM_EVENT_CONTEXT: if (!event->stream) goto error; if (event->stream->stream_event_context) tmp = &event->stream->stream_event_context->p; break; case BT_EVENT_CONTEXT: if (event->event_context) tmp = &event->event_context->p; break; case BT_EVENT_FIELDS: if (event->event_fields) tmp = &event->event_fields->p; break; } return tmp; error: return NULL; } const struct bt_definition *bt_ctf_get_field(const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, const char *field) { const struct bt_definition *def; char *field_underscore; if (!ctf_event || !scope || !field) return NULL; def = bt_lookup_definition(scope, field); /* * optionally a field can have an underscore prefix, try * to lookup the field with this prefix if it failed */ if (!def) { field_underscore = g_new(char, strlen(field) + 2); field_underscore[0] = '_'; strcpy(&field_underscore[1], field); def = bt_lookup_definition(scope, field_underscore); g_free(field_underscore); } if (bt_ctf_field_type(bt_ctf_get_decl_from_def(def)) == CTF_TYPE_VARIANT) { const struct definition_variant *variant_definition; variant_definition = container_of(def, const struct definition_variant, p); return variant_definition->current_field; } return def; } const struct bt_definition *bt_ctf_get_index(const struct bt_ctf_event *ctf_event, const struct bt_definition *field, unsigned int index) { struct bt_definition *ret = NULL; if (!ctf_event || !field) return NULL; if (bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_ARRAY) { struct definition_array *array_definition; array_definition = container_of(field, struct definition_array, p); ret = bt_array_index(array_definition, index); } else if (bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_SEQUENCE) { struct definition_sequence *sequence_definition; sequence_definition = container_of(field, struct definition_sequence, p); ret = bt_sequence_index(sequence_definition, index); } return ret; } const char *bt_ctf_event_name(const struct bt_ctf_event *ctf_event) { const struct ctf_event_declaration *event_class; const struct ctf_stream_declaration *stream_class; const struct ctf_event_definition *event; if (!ctf_event) return NULL; event = ctf_event->parent; stream_class = event->stream->stream_class; event_class = g_ptr_array_index(stream_class->events_by_id, event->stream->event_id); return g_quark_to_string(event_class->name); } const char *bt_ctf_field_name(const struct bt_definition *def) { if (!def || !def->name) return NULL; return rem_(g_quark_to_string(def->name)); } enum ctf_type_id bt_ctf_field_type(const struct bt_declaration *decl) { if (!decl) return CTF_TYPE_UNKNOWN; return decl->id; } int bt_ctf_get_field_list(const struct bt_ctf_event *ctf_event, const struct bt_definition *scope, struct bt_definition const * const **list, unsigned int *count) { if (!ctf_event || !scope || !list || !count) return -EINVAL; switch (bt_ctf_field_type(bt_ctf_get_decl_from_def(scope))) { case CTF_TYPE_INTEGER: case CTF_TYPE_FLOAT: case CTF_TYPE_STRING: case CTF_TYPE_ENUM: goto error; case CTF_TYPE_STRUCT: { const struct definition_struct *def_struct; def_struct = container_of(scope, const struct definition_struct, p); if (!def_struct) goto error; if (def_struct->fields->pdata) { *list = (struct bt_definition const* const*) def_struct->fields->pdata; *count = def_struct->fields->len; goto end; } else { goto error; } break; } case CTF_TYPE_UNTAGGED_VARIANT: goto error; case CTF_TYPE_VARIANT: { const struct definition_variant *def_variant; def_variant = container_of(scope, const struct definition_variant, p); if (!def_variant) goto error; if (def_variant->fields->pdata) { *list = (struct bt_definition const* const*) def_variant->fields->pdata; *count = def_variant->fields->len; goto end; } else { goto error; } break; } case CTF_TYPE_ARRAY: { const struct definition_array *def_array; def_array = container_of(scope, const struct definition_array, p); if (!def_array) goto error; if (def_array->elems->pdata) { *list = (struct bt_definition const* const*) def_array->elems->pdata; *count = def_array->elems->len; goto end; } else { goto error; } break; } case CTF_TYPE_SEQUENCE: { const struct definition_sequence *def_sequence; def_sequence = container_of(scope, const struct definition_sequence, p); if (!def_sequence) goto error; if (def_sequence->elems->pdata) { *list = (struct bt_definition const* const*) def_sequence->elems->pdata; *count = def_sequence->elems->len; goto end; } else { goto error; } break; } default: break; } end: return 0; error: *list = NULL; *count = 0; return -1; } struct bt_context *bt_ctf_event_get_context(const struct bt_ctf_event *ctf_event) { struct bt_context *ret = NULL; const struct ctf_file_stream *cfs; const struct ctf_trace *trace; const struct ctf_event_definition *event; if (!ctf_event) return NULL; event = ctf_event->parent; cfs = container_of(event->stream, const struct ctf_file_stream, parent); trace = cfs->parent.stream_class->trace; if (trace->parent.ctx) ret = trace->parent.ctx; return ret; } int bt_ctf_event_get_handle_id(const struct bt_ctf_event *ctf_event) { int ret = -1; const struct ctf_file_stream *cfs; const struct ctf_trace *trace; const struct ctf_event_definition *event; if (!ctf_event) return -EINVAL; event = ctf_event->parent; cfs = container_of(event->stream, const struct ctf_file_stream, parent); trace = cfs->parent.stream_class->trace; if (trace->parent.handle) ret = trace->parent.handle->id; return ret; } uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *ctf_event) { const struct ctf_event_definition *event; if (!ctf_event) return -1ULL; event = ctf_event->parent; if (event && event->stream->has_timestamp) return event->stream->real_timestamp; else return -1ULL; } uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *ctf_event) { const struct ctf_event_definition *event; if (!ctf_event) return -1ULL; event = ctf_event->parent; if (event && event->stream->has_timestamp) return event->stream->cycles_timestamp; else return -1ULL; } static void bt_ctf_field_set_error(int error) { bt_ctf_last_field_error = error; } int bt_ctf_field_get_error(void) { int ret; ret = bt_ctf_last_field_error; bt_ctf_last_field_error = 0; return ret; } static const struct declaration_integer * get_declaration_integer(const struct bt_declaration *decl) { if (!decl || bt_ctf_field_type(decl) != CTF_TYPE_INTEGER) return NULL; return container_of(decl, const struct declaration_integer, p); } static const struct declaration_string * get_declaration_string(const struct bt_declaration *decl) { if (!decl || bt_ctf_field_type(decl) != CTF_TYPE_STRING) return NULL; return container_of(decl, const struct declaration_string, p); } static const struct declaration_array * get_declaration_array(const struct bt_declaration *decl) { if (!decl || bt_ctf_field_type(decl) != CTF_TYPE_ARRAY) return NULL; return container_of(decl, const struct declaration_array, p); } static const struct declaration_sequence * get_declaration_sequence(const struct bt_declaration *decl) { if (!decl || bt_ctf_field_type(decl) != CTF_TYPE_SEQUENCE) return NULL; return container_of(decl, const struct declaration_sequence, p); } int bt_ctf_get_int_signedness(const struct bt_declaration *decl) { const struct declaration_integer *integer; integer = get_declaration_integer(decl); if (!integer) { bt_ctf_field_set_error(-EINVAL); return -EINVAL; } return integer->signedness; } int bt_ctf_get_int_base(const struct bt_declaration *decl) { const struct declaration_integer *integer; integer = get_declaration_integer(decl); if (!integer) { bt_ctf_field_set_error(-EINVAL); return -EINVAL; } return integer->base; } int bt_ctf_get_int_byte_order(const struct bt_declaration *decl) { const struct declaration_integer *integer; integer = get_declaration_integer(decl); if (!integer) { bt_ctf_field_set_error(-EINVAL); return -EINVAL; } return integer->byte_order; } ssize_t bt_ctf_get_int_len(const struct bt_declaration *decl) { const struct declaration_integer *integer; integer = get_declaration_integer(decl); if (!integer) { bt_ctf_field_set_error(-EINVAL); return -EINVAL; } return (ssize_t) integer->len; } const struct bt_definition *bt_ctf_get_enum_int(const struct bt_definition *field) { const struct definition_enum *def_enum; if (!field || bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) != CTF_TYPE_ENUM) { bt_ctf_field_set_error(-EINVAL); return NULL; } def_enum = container_of(field, const struct definition_enum, p); return &def_enum->integer->p; } const char *bt_ctf_get_enum_str(const struct bt_definition *field) { const struct definition_enum *def_enum; const struct declaration_enum *decl_enum; GArray *array; const char *ret; if (!field || bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) != CTF_TYPE_ENUM) { bt_ctf_field_set_error(-EINVAL); return NULL; } def_enum = container_of(field, const struct definition_enum, p); decl_enum = def_enum->declaration; if (bt_get_int_signedness(&def_enum->integer->p)) { array = bt_enum_int_to_quark_set(decl_enum, bt_get_signed_int(&def_enum->integer->p)); } else { array = bt_enum_uint_to_quark_set(decl_enum, bt_get_unsigned_int(&def_enum->integer->p)); } if (!array) { bt_ctf_field_set_error(-ENOENT); return NULL; } if (array->len == 0) { g_array_unref(array); bt_ctf_field_set_error(-ENOENT); return NULL; } /* Return first string. Arbitrary choice. */ ret = g_quark_to_string(g_array_index(array, GQuark, 0)); g_array_unref(array); return ret; } enum ctf_string_encoding bt_ctf_get_encoding(const struct bt_declaration *decl) { enum ctf_string_encoding ret = 0; enum ctf_type_id type; const struct declaration_integer *integer; const struct declaration_string *string; const struct declaration_array *array; const struct declaration_sequence *sequence; if (!decl) goto error; type = bt_ctf_field_type(decl); switch (type) { case CTF_TYPE_ARRAY: array = get_declaration_array(decl); if (!array) goto error; integer = get_declaration_integer(array->elem); if (!integer) goto error; ret = integer->encoding; break; case CTF_TYPE_SEQUENCE: sequence = get_declaration_sequence(decl); if (!sequence) goto error; integer = get_declaration_integer(sequence->elem); if (!integer) goto error; ret = integer->encoding; break; case CTF_TYPE_STRING: string = get_declaration_string(decl); if (!string) goto error; ret = string->encoding; break; case CTF_TYPE_INTEGER: integer = get_declaration_integer(decl); if (!integer) goto error; ret = integer->encoding; break; default: goto error; } return ret; error: bt_ctf_field_set_error(-EINVAL); return -1; } int bt_ctf_get_array_len(const struct bt_declaration *decl) { const struct declaration_array *array; array = get_declaration_array(decl); if (!array) goto error; return array->len; error: bt_ctf_field_set_error(-EINVAL); return -1; } uint64_t bt_ctf_get_uint64(const struct bt_definition *field) { uint64_t ret = 0; if (field && bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_INTEGER) ret = bt_get_unsigned_int(field); else bt_ctf_field_set_error(-EINVAL); return ret; } int64_t bt_ctf_get_int64(const struct bt_definition *field) { int64_t ret = 0; if (field && bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_INTEGER) ret = bt_get_signed_int(field); else bt_ctf_field_set_error(-EINVAL); return ret; } char *bt_ctf_get_char_array(const struct bt_definition *field) { char *ret = NULL; GString *char_array; if (field && bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_ARRAY) { char_array = bt_get_char_array(field); if (char_array) { ret = char_array->str; goto end; } } bt_ctf_field_set_error(-EINVAL); end: return ret; } char *bt_ctf_get_string(const struct bt_definition *field) { char *ret = NULL; if (field && bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_STRING) ret = bt_get_string(field); else bt_ctf_field_set_error(-EINVAL); return ret; } double bt_ctf_get_float(const struct bt_definition *field) { double ret = 0.0; if (field && bt_ctf_field_type(bt_ctf_get_decl_from_def(field)) == CTF_TYPE_FLOAT) { ret = bt_get_float(field); } else { bt_ctf_field_set_error(-EINVAL); } return ret; } const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field) { const struct bt_definition *ret = NULL; if (field && bt_ctf_field_type( bt_ctf_get_decl_from_def(field)) == CTF_TYPE_VARIANT) { struct definition_variant *variant = container_of(field, struct definition_variant, p); ret = bt_variant_get_current_field(variant); } else { bt_ctf_field_set_error(-EINVAL); } return ret; } uint64_t bt_ctf_get_struct_field_count(const struct bt_definition *field) { uint64_t ret = -1; const struct bt_declaration *declaration = bt_ctf_get_decl_from_def(field); if (field && bt_ctf_field_type(declaration) == CTF_TYPE_STRUCT) { const struct declaration_struct *struct_declaration = container_of(declaration, struct declaration_struct, p); ret = bt_struct_declaration_len(struct_declaration); } else { bt_ctf_field_set_error(-EINVAL); } return ret; } const struct bt_definition *bt_ctf_get_struct_field_index( const struct bt_definition *field, uint64_t i) { const struct bt_definition *ret = NULL; if (field && bt_ctf_field_type( bt_ctf_get_decl_from_def(field)) == CTF_TYPE_STRUCT && i < bt_ctf_get_struct_field_count(field)) { const struct definition_struct *structure = container_of( field, struct definition_struct, p); ret = bt_struct_definition_get_field_from_index(structure, i); } if (!ret) { bt_ctf_field_set_error(-EINVAL); } return ret; } int bt_ctf_get_event_decl_list(int handle_id, struct bt_context *ctx, struct bt_ctf_event_decl * const **list, unsigned int *count) { struct bt_trace_handle *handle; struct bt_trace_descriptor *td; struct ctf_trace *tin; if (!ctx || !list || !count) goto error; handle = g_hash_table_lookup(ctx->trace_handles, (gpointer) (unsigned long) handle_id); if (!handle) goto error; td = handle->td; tin = container_of(td, struct ctf_trace, parent); *list = (struct bt_ctf_event_decl * const*) tin->event_declarations->pdata; *count = tin->event_declarations->len; return 0; error: return -1; } const char *bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl *event) { if (!event) return NULL; return g_quark_to_string(event->parent.name); } int bt_ctf_get_decl_fields(struct bt_ctf_event_decl *event_decl, enum bt_ctf_scope scope, struct bt_ctf_field_decl const * const **list, unsigned int *count) { int i; GArray *fields = NULL; gpointer *ret_list = NULL; GPtrArray *fields_array = NULL; int ret = 0; if (!event_decl || !list || !count) return -EINVAL; *count = 0; switch (scope) { case BT_EVENT_CONTEXT: if (event_decl->context_decl) { ret_list = event_decl->context_decl->pdata; *count = event_decl->context_decl->len; goto end; } event_decl->context_decl = g_ptr_array_new(); if (!event_decl->parent.context_decl) { ret = -1; goto end; } fields = event_decl->parent.context_decl->fields; fields_array = event_decl->context_decl; break; case BT_EVENT_FIELDS: if (event_decl->fields_decl) { ret_list = event_decl->fields_decl->pdata; *count = event_decl->fields_decl->len; goto end; } event_decl->fields_decl = g_ptr_array_new(); if (!event_decl->parent.fields_decl) { ret = -1; goto end; } fields = event_decl->parent.fields_decl->fields; fields_array = event_decl->fields_decl; break; case BT_STREAM_PACKET_CONTEXT: if (event_decl->packet_context_decl) { ret_list = event_decl->packet_context_decl->pdata; *count = event_decl->packet_context_decl->len; goto end; } event_decl->packet_context_decl = g_ptr_array_new(); if (!event_decl->parent.stream->packet_context_decl) { ret = -1; goto end; } fields = event_decl->parent.stream->packet_context_decl->fields; fields_array = event_decl->packet_context_decl; break; case BT_STREAM_EVENT_CONTEXT: if (event_decl->event_context_decl) { ret_list = event_decl->event_context_decl->pdata; *count = event_decl->event_context_decl->len; goto end; } event_decl->event_context_decl = g_ptr_array_new(); if (!event_decl->parent.stream->event_context_decl) { ret = -1; goto end; } fields = event_decl->parent.stream->event_context_decl->fields; fields_array = event_decl->event_context_decl; break; case BT_STREAM_EVENT_HEADER: if (event_decl->event_header_decl) { ret_list = event_decl->event_header_decl->pdata; *count = event_decl->event_header_decl->len; goto end; } event_decl->event_header_decl = g_ptr_array_new(); if (!event_decl->parent.stream->event_header_decl) { ret = -1; goto end; } fields = event_decl->parent.stream->event_header_decl->fields; fields_array = event_decl->event_header_decl; break; case BT_TRACE_PACKET_HEADER: if (event_decl->packet_header_decl) { ret_list = event_decl->packet_header_decl->pdata; *count = event_decl->packet_header_decl->len; goto end; } event_decl->packet_header_decl = g_ptr_array_new(); if (!event_decl->parent.stream->trace->packet_header_decl) { ret = -1; goto end; } fields = event_decl->parent.stream->trace->packet_header_decl->fields; fields_array = event_decl->packet_header_decl; break; } for (i = 0; i < fields->len; i++) { g_ptr_array_add(fields_array, &g_array_index(fields, struct declaration_field, i)); } ret_list = fields_array->pdata; *count = fields->len; end: *list = (struct bt_ctf_field_decl const* const*) ret_list; return ret; } const char *bt_ctf_get_decl_field_name(const struct bt_ctf_field_decl *field) { if (!field) return NULL; return rem_(g_quark_to_string(((struct declaration_field *) field)->name)); } const struct bt_declaration *bt_ctf_get_decl_from_def(const struct bt_definition *def) { if (def) return def->declaration; return NULL; } const struct bt_declaration *bt_ctf_get_decl_from_field_decl( const struct bt_ctf_field_decl *field) { if (field) return ((struct declaration_field *) field)->declaration; return NULL; } babeltrace-1.2.1/formats/ctf/events-private.h0000644000175000017500000000400012272477052016076 00000000000000#ifndef _CTF_EVENTS_PRIVATE_H #define _CTF_EVENTS_PRIVATE_H /* * ctf/events-private.h * * Babeltrace Library * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include static inline uint64_t ctf_get_real_timestamp(struct ctf_stream_definition *stream, uint64_t timestamp) { uint64_t ts_nsec; struct ctf_trace *trace = stream->stream_class->trace; struct trace_collection *tc = trace->parent.collection; uint64_t tc_offset; if (tc->clock_use_offset_avg) tc_offset = tc->single_clock_offset_avg; else tc_offset = trace->parent.single_clock->offset; ts_nsec = clock_cycles_to_ns(stream->current_clock, timestamp); ts_nsec += tc_offset; /* Add offset */ return ts_nsec; } #endif /* _CTF_EVENTS_PRIVATE_H */ babeltrace-1.2.1/formats/ctf/callbacks.c0000644000175000017500000001623012303205563015033 00000000000000/* * callbacks.c * * Babeltrace Library * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include static struct bt_dependencies *_bt_dependencies_create(const char *first, va_list ap) { const char *iter; struct bt_dependencies *dep; dep = g_new0(struct bt_dependencies, 1); dep->refcount = 1; dep->deps = g_array_new(FALSE, TRUE, sizeof(GQuark)); iter = first; while (iter) { GQuark q = g_quark_from_string(iter); g_array_append_val(dep->deps, q); iter = va_arg(ap, const char *); } return dep; } struct bt_dependencies *bt_dependencies_create(const char *first, ...) { va_list ap; struct bt_dependencies *deps; va_start(ap, first); deps = _bt_dependencies_create(first, ap); va_end(ap); return deps; } /* * bt_ctf_iter_add_callback: Add a callback to CTF iterator. */ int bt_ctf_iter_add_callback(struct bt_ctf_iter *iter, bt_intern_str event, void *private_data, int flags, enum bt_cb_ret (*callback)(struct bt_ctf_event *ctf_data, void *private_data), struct bt_dependencies *depends, struct bt_dependencies *weak_depends, struct bt_dependencies *provides) { int i, stream_id; gpointer *event_id_ptr; unsigned long event_id; struct trace_collection *tc; if (!iter || !callback) return -EINVAL; tc = iter->parent.ctx->tc; for (i = 0; i < tc->array->len; i++) { struct ctf_trace *tin; struct bt_trace_descriptor *td_read; td_read = g_ptr_array_index(tc->array, i); tin = container_of(td_read, struct ctf_trace, parent); for (stream_id = 0; stream_id < tin->streams->len; stream_id++) { struct ctf_stream_declaration *stream; struct bt_stream_callbacks *bt_stream_cb = NULL; struct bt_callback_chain *bt_chain = NULL; struct bt_callback new_callback; stream = g_ptr_array_index(tin->streams, stream_id); if (stream_id >= iter->callbacks->len) { g_array_set_size(iter->callbacks, stream->stream_id + 1); } bt_stream_cb = &g_array_index(iter->callbacks, struct bt_stream_callbacks, stream->stream_id); if (!bt_stream_cb->per_id_callbacks) { bt_stream_cb->per_id_callbacks = g_array_new(FALSE, TRUE, sizeof(struct bt_callback_chain)); } if (event) { /* find the event id */ event_id_ptr = g_hash_table_lookup(stream->event_quark_to_id, (gconstpointer) (unsigned long) event); /* event not found in this stream class */ if (!event_id_ptr) { fprintf(stderr, "[error] Event ID not found in stream class\n"); continue; } event_id = (uint64_t)(unsigned long) *event_id_ptr; /* find or create the bt_callback_chain for this event */ if (event_id >= bt_stream_cb->per_id_callbacks->len) { g_array_set_size(bt_stream_cb->per_id_callbacks, event_id + 1); } bt_chain = &g_array_index(bt_stream_cb->per_id_callbacks, struct bt_callback_chain, event_id); if (!bt_chain->callback) { bt_chain->callback = g_array_new(FALSE, TRUE, sizeof(struct bt_callback)); } } else { /* callback for all events */ if (!iter->main_callbacks.callback) { iter->main_callbacks.callback = g_array_new(FALSE, TRUE, sizeof(struct bt_callback)); } bt_chain = &iter->main_callbacks; } new_callback.private_data = private_data; new_callback.flags = flags; new_callback.callback = callback; new_callback.depends = depends; new_callback.weak_depends = weak_depends; new_callback.provides = provides; /* TODO : take care of priority, for now just FIFO */ g_array_append_val(bt_chain->callback, new_callback); } } return 0; } static int extract_ctf_stream_event(struct ctf_stream_definition *stream, struct bt_ctf_event *event) { struct ctf_stream_declaration *stream_class = stream->stream_class; struct ctf_event_declaration *event_class; uint64_t id = stream->event_id; if (id >= stream_class->events_by_id->len) { fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); return -1; } event->parent = g_ptr_array_index(stream->events_by_id, id); if (!event->parent) { fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); return -1; } event_class = g_ptr_array_index(stream_class->events_by_id, id); if (!event_class) { fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); return -1; } return 0; } void process_callbacks(struct bt_ctf_iter *iter, struct ctf_stream_definition *stream) { struct bt_stream_callbacks *bt_stream_cb; struct bt_callback_chain *bt_chain; struct bt_callback *cb; int i; enum bt_cb_ret ret; struct bt_ctf_event ctf_data; assert(iter && stream); ret = extract_ctf_stream_event(stream, &ctf_data); if (ret) goto end; /* process all events callback first */ if (iter->main_callbacks.callback) { for (i = 0; i < iter->main_callbacks.callback->len; i++) { cb = &g_array_index(iter->main_callbacks.callback, struct bt_callback, i); ret = cb->callback(&ctf_data, cb->private_data); switch (ret) { case BT_CB_OK_STOP: case BT_CB_ERROR_STOP: goto end; default: break; } } } /* process per event callbacks */ bt_stream_cb = &g_array_index(iter->callbacks, struct bt_stream_callbacks, stream->stream_id); if (!bt_stream_cb || !bt_stream_cb->per_id_callbacks) goto end; if (stream->event_id >= bt_stream_cb->per_id_callbacks->len) goto end; bt_chain = &g_array_index(bt_stream_cb->per_id_callbacks, struct bt_callback_chain, stream->event_id); if (!bt_chain || !bt_chain->callback) goto end; for (i = 0; i < bt_chain->callback->len; i++) { cb = &g_array_index(bt_chain->callback, struct bt_callback, i); ret = cb->callback(&ctf_data, cb->private_data); switch (ret) { case BT_CB_OK_STOP: case BT_CB_ERROR_STOP: goto end; default: break; } } end: return; } babeltrace-1.2.1/formats/ctf/Makefile.am0000644000175000017500000000107112304150543014777 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = types metadata writer . lib_LTLIBRARIES = libbabeltrace-ctf.la libbabeltrace_ctf_la_SOURCES = \ ctf.c \ events.c \ iterator.c \ callbacks.c \ events-private.h # Request that the linker keeps all static libraries objects. libbabeltrace_ctf_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_ctf_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la \ types/libctf-types.la \ metadata/libctf-parser.la \ metadata/libctf-ast.la \ writer/libctf-writer.la babeltrace-1.2.1/formats/ctf/ctf.c0000644000175000017500000020651312304150543013673 00000000000000/* * BabelTrace - Common Trace Format (CTF) * * Format registration. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "metadata/ctf-scanner.h" #include "metadata/ctf-parser.h" #include "metadata/ctf-ast.h" #include "events-private.h" #include #define LOG2_CHAR_BIT 3 /* * Length of first attempt at mapping a packet header, in bits. */ #define DEFAULT_HEADER_LEN (getpagesize() * CHAR_BIT) /* * Lenght of packet to write, in bits. */ #define WRITE_PACKET_LEN (getpagesize() * 8 * CHAR_BIT) #ifndef min #define min(a, b) (((a) < (b)) ? (a) : (b)) #endif #define NSEC_PER_SEC 1000000000ULL #define INDEX_PATH "./index/%s.idx" int opt_clock_cycles, opt_clock_seconds, opt_clock_date, opt_clock_gmt; uint64_t opt_clock_offset; uint64_t opt_clock_offset_ns; extern int yydebug; /* * TODO: babeltrace_ctf_console_output ensures that we only print * discarded events when ctf-text plugin is used. Should be cleaned up * with the plugin system redesign. */ int babeltrace_ctf_console_output; static struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); static struct bt_trace_descriptor *ctf_open_mmap_trace( struct bt_mmap_stream_list *mmap_list, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); static void ctf_set_context(struct bt_trace_descriptor *descriptor, struct bt_context *ctx); static void ctf_set_handle(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle); static int ctf_close_trace(struct bt_trace_descriptor *descriptor); static uint64_t ctf_timestamp_begin(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type); static uint64_t ctf_timestamp_end(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type); static int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp); static rw_dispatch read_dispatch_table[] = { [ CTF_TYPE_INTEGER ] = ctf_integer_read, [ CTF_TYPE_FLOAT ] = ctf_float_read, [ CTF_TYPE_ENUM ] = ctf_enum_read, [ CTF_TYPE_STRING ] = ctf_string_read, [ CTF_TYPE_STRUCT ] = ctf_struct_rw, [ CTF_TYPE_VARIANT ] = ctf_variant_rw, [ CTF_TYPE_ARRAY ] = ctf_array_read, [ CTF_TYPE_SEQUENCE ] = ctf_sequence_read, }; static rw_dispatch write_dispatch_table[] = { [ CTF_TYPE_INTEGER ] = ctf_integer_write, [ CTF_TYPE_FLOAT ] = ctf_float_write, [ CTF_TYPE_ENUM ] = ctf_enum_write, [ CTF_TYPE_STRING ] = ctf_string_write, [ CTF_TYPE_STRUCT ] = ctf_struct_rw, [ CTF_TYPE_VARIANT ] = ctf_variant_rw, [ CTF_TYPE_ARRAY ] = ctf_array_write, [ CTF_TYPE_SEQUENCE ] = ctf_sequence_write, }; static struct bt_format ctf_format = { .open_trace = ctf_open_trace, .open_mmap_trace = ctf_open_mmap_trace, .close_trace = ctf_close_trace, .set_context = ctf_set_context, .set_handle = ctf_set_handle, .timestamp_begin = ctf_timestamp_begin, .timestamp_end = ctf_timestamp_end, .convert_index_timestamp = ctf_convert_index_timestamp, }; static uint64_t ctf_timestamp_begin(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type) { struct ctf_trace *tin; uint64_t begin = ULLONG_MAX; int i, j; tin = container_of(descriptor, struct ctf_trace, parent); if (!tin) goto error; /* for each stream_class */ for (i = 0; i < tin->streams->len; i++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(tin->streams, i); if (!stream_class) continue; /* for each file_stream */ for (j = 0; j < stream_class->streams->len; j++) { struct ctf_stream_definition *stream; struct ctf_file_stream *cfs; struct ctf_stream_pos *stream_pos; struct packet_index *index; stream = g_ptr_array_index(stream_class->streams, j); cfs = container_of(stream, struct ctf_file_stream, parent); stream_pos = &cfs->pos; if (!stream_pos->packet_index) goto error; if (stream_pos->packet_index->len <= 0) continue; index = &g_array_index(stream_pos->packet_index, struct packet_index, stream_pos->packet_index->len - 1); if (type == BT_CLOCK_REAL) { if (index->ts_real.timestamp_begin < begin) begin = index->ts_real.timestamp_begin; } else if (type == BT_CLOCK_CYCLES) { if (index->ts_cycles.timestamp_begin < begin) begin = index->ts_cycles.timestamp_begin; } else { goto error; } } } return begin; error: return -1ULL; } static uint64_t ctf_timestamp_end(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type) { struct ctf_trace *tin; uint64_t end = 0; int i, j; tin = container_of(descriptor, struct ctf_trace, parent); if (!tin) goto error; /* for each stream_class */ for (i = 0; i < tin->streams->len; i++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(tin->streams, i); if (!stream_class) continue; /* for each file_stream */ for (j = 0; j < stream_class->streams->len; j++) { struct ctf_stream_definition *stream; struct ctf_file_stream *cfs; struct ctf_stream_pos *stream_pos; struct packet_index *index; stream = g_ptr_array_index(stream_class->streams, j); cfs = container_of(stream, struct ctf_file_stream, parent); stream_pos = &cfs->pos; if (!stream_pos->packet_index) goto error; if (stream_pos->packet_index->len <= 0) continue; index = &g_array_index(stream_pos->packet_index, struct packet_index, stream_pos->packet_index->len - 1); if (type == BT_CLOCK_REAL) { if (index->ts_real.timestamp_end > end) end = index->ts_real.timestamp_end; } else if (type == BT_CLOCK_CYCLES) { if (index->ts_cycles.timestamp_end > end) end = index->ts_cycles.timestamp_end; } else { goto error; } } } return end; error: return -1ULL; } /* * Update stream current timestamp */ static void ctf_update_timestamp(struct ctf_stream_definition *stream, struct definition_integer *integer_definition) { struct declaration_integer *integer_declaration = integer_definition->declaration; uint64_t oldval, newval, updateval; if (unlikely(integer_declaration->len == 64)) { stream->cycles_timestamp = integer_definition->value._unsigned; stream->real_timestamp = ctf_get_real_timestamp(stream, stream->cycles_timestamp); return; } /* keep low bits */ oldval = stream->cycles_timestamp; oldval &= (1ULL << integer_declaration->len) - 1; newval = integer_definition->value._unsigned; /* Test for overflow by comparing low bits */ if (newval < oldval) newval += 1ULL << integer_declaration->len; /* updateval contains old high bits, and new low bits (sum) */ updateval = stream->cycles_timestamp; updateval &= ~((1ULL << integer_declaration->len) - 1); updateval += newval; stream->cycles_timestamp = updateval; /* convert to real timestamp */ stream->real_timestamp = ctf_get_real_timestamp(stream, stream->cycles_timestamp); } /* * Print timestamp, rescaling clock frequency to nanoseconds and * applying offsets as needed (unix time). */ static void ctf_print_timestamp_real(FILE *fp, struct ctf_stream_definition *stream, uint64_t timestamp) { uint64_t ts_sec = 0, ts_nsec; ts_nsec = timestamp; /* Add command-line offset in ns*/ ts_nsec += opt_clock_offset_ns; /* Add command-line offset */ ts_sec += opt_clock_offset; ts_sec += ts_nsec / NSEC_PER_SEC; ts_nsec = ts_nsec % NSEC_PER_SEC; if (!opt_clock_seconds) { struct tm tm; time_t time_s = (time_t) ts_sec; if (!opt_clock_gmt) { struct tm *res; res = localtime_r(&time_s, &tm); if (!res) { fprintf(stderr, "[warning] Unable to get localtime.\n"); goto seconds; } } else { struct tm *res; res = gmtime_r(&time_s, &tm); if (!res) { fprintf(stderr, "[warning] Unable to get gmtime.\n"); goto seconds; } } if (opt_clock_date) { char timestr[26]; size_t res; /* Print date and time */ res = strftime(timestr, sizeof(timestr), "%F ", &tm); if (!res) { fprintf(stderr, "[warning] Unable to print ascii time.\n"); goto seconds; } fprintf(fp, "%s", timestr); } /* Print time in HH:MM:SS.ns */ fprintf(fp, "%02d:%02d:%02d.%09" PRIu64, tm.tm_hour, tm.tm_min, tm.tm_sec, ts_nsec); goto end; } seconds: fprintf(fp, "%3" PRIu64 ".%09" PRIu64, ts_sec, ts_nsec); end: return; } /* * Print timestamp, in cycles */ static void ctf_print_timestamp_cycles(FILE *fp, struct ctf_stream_definition *stream, uint64_t timestamp) { fprintf(fp, "%020" PRIu64, timestamp); } void ctf_print_timestamp(FILE *fp, struct ctf_stream_definition *stream, uint64_t timestamp) { if (opt_clock_cycles) { ctf_print_timestamp_cycles(fp, stream, timestamp); } else { ctf_print_timestamp_real(fp, stream, timestamp); } } static void print_uuid(FILE *fp, unsigned char *uuid) { int i; for (i = 0; i < BABELTRACE_UUID_LEN; i++) fprintf(fp, "%x", (unsigned int) uuid[i]); } /* * Discarded events can be either: * - discarded after end of previous buffer due to buffer full: * happened within range: [ prev_timestamp_end, timestamp_begin ] * - discarded within current buffer due to either event too large or * nested wrap-around: * happened within range: [ timestamp_begin, timestamp_end ] * * Given we have discarded counters of those two types merged into the * events_discarded counter, we need to use the union of those ranges: * [ prev_timestamp_end, timestamp_end ] */ static void ctf_print_discarded(FILE *fp, struct ctf_stream_definition *stream) { if (!stream->events_discarded || !babeltrace_ctf_console_output) { return; } fflush(stdout); fprintf(fp, "[warning] Tracer discarded %" PRIu64 " events between [", stream->events_discarded); if (opt_clock_cycles) { ctf_print_timestamp(fp, stream, stream->prev.cycles.end); fprintf(fp, "] and ["); ctf_print_timestamp(fp, stream, stream->current.cycles.end); } else { ctf_print_timestamp(fp, stream, stream->prev.real.end); fprintf(fp, "] and ["); ctf_print_timestamp(fp, stream, stream->current.real.end); } fprintf(fp, "] in trace UUID "); print_uuid(fp, stream->stream_class->trace->uuid); if (stream->stream_class->trace->parent.path[0]) fprintf(fp, ", at path: \"%s\"", stream->stream_class->trace->parent.path); fprintf(fp, ", within stream id %" PRIu64, stream->stream_id); if (stream->path[0]) fprintf(fp, ", at relative path: \"%s\"", stream->path); fprintf(fp, ". "); fprintf(fp, "You should consider recording a new trace with larger " "buffers or with fewer events enabled.\n"); fflush(fp); } static int ctf_read_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream) { struct ctf_stream_pos *pos = container_of(ppos, struct ctf_stream_pos, parent); struct ctf_stream_declaration *stream_class = stream->stream_class; struct ctf_event_definition *event; uint64_t id = 0; int ret; /* We need to check for EOF here for empty files. */ if (unlikely(pos->offset == EOF)) return EOF; ctf_pos_get_event(pos); /* save the current position as a restore point */ pos->last_offset = pos->offset; /* * This is the EOF check after we've advanced the position in * ctf_pos_get_event. */ if (unlikely(pos->offset == EOF)) return EOF; /* Stream is inactive for now (live reading). */ if (unlikely(pos->content_size == 0)) return EAGAIN; /* * Packet seeked to by ctf_pos_get_event() only contains * headers, no event. Consider stream as inactive (live * reading). */ if (unlikely(pos->data_offset == pos->content_size)) return EAGAIN; assert(pos->offset < pos->content_size); /* Read event header */ if (likely(stream->stream_event_header)) { struct definition_integer *integer_definition; struct bt_definition *variant; ret = generic_rw(ppos, &stream->stream_event_header->p); if (unlikely(ret)) goto error; /* lookup event id */ integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "id", FALSE); if (integer_definition) { id = integer_definition->value._unsigned; } else { struct definition_enum *enum_definition; enum_definition = bt_lookup_enum(&stream->stream_event_header->p, "id", FALSE); if (enum_definition) { id = enum_definition->integer->value._unsigned; } } variant = bt_lookup_variant(&stream->stream_event_header->p, "v"); if (variant) { integer_definition = bt_lookup_integer(variant, "id", FALSE); if (integer_definition) { id = integer_definition->value._unsigned; } } stream->event_id = id; /* lookup timestamp */ stream->has_timestamp = 0; integer_definition = bt_lookup_integer(&stream->stream_event_header->p, "timestamp", FALSE); if (integer_definition) { ctf_update_timestamp(stream, integer_definition); stream->has_timestamp = 1; } else { if (variant) { integer_definition = bt_lookup_integer(variant, "timestamp", FALSE); if (integer_definition) { ctf_update_timestamp(stream, integer_definition); stream->has_timestamp = 1; } } } } /* Read stream-declared event context */ if (stream->stream_event_context) { ret = generic_rw(ppos, &stream->stream_event_context->p); if (ret) goto error; } if (unlikely(id >= stream_class->events_by_id->len)) { fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); return -EINVAL; } event = g_ptr_array_index(stream->events_by_id, id); if (unlikely(!event)) { fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); return -EINVAL; } /* Read event-declared event context */ if (event->event_context) { ret = generic_rw(ppos, &event->event_context->p); if (ret) goto error; } /* Read event payload */ if (likely(event->event_fields)) { ret = generic_rw(ppos, &event->event_fields->p); if (ret) goto error; } if (pos->last_offset == pos->offset) { fprintf(stderr, "[error] Invalid 0 byte event encountered.\n"); return -EINVAL; } return 0; error: fprintf(stderr, "[error] Unexpected end of packet. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); return ret; } static int ctf_write_event(struct bt_stream_pos *pos, struct ctf_stream_definition *stream) { struct ctf_stream_declaration *stream_class = stream->stream_class; struct ctf_event_definition *event; uint64_t id; int ret; id = stream->event_id; /* print event header */ if (likely(stream->stream_event_header)) { ret = generic_rw(pos, &stream->stream_event_header->p); if (ret) goto error; } /* print stream-declared event context */ if (stream->stream_event_context) { ret = generic_rw(pos, &stream->stream_event_context->p); if (ret) goto error; } if (unlikely(id >= stream_class->events_by_id->len)) { fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); return -EINVAL; } event = g_ptr_array_index(stream->events_by_id, id); if (unlikely(!event)) { fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); return -EINVAL; } /* print event-declared event context */ if (event->event_context) { ret = generic_rw(pos, &event->event_context->p); if (ret) goto error; } /* Read and print event payload */ if (likely(event->event_fields)) { ret = generic_rw(pos, &event->event_fields->p); if (ret) goto error; } return 0; error: fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); return ret; } /* * One side-effect of this function is to unmap pos mmap base if one is * mapped. */ static int find_data_offset(struct ctf_stream_pos *pos, struct ctf_file_stream *file_stream, struct packet_index *packet_index) { uint64_t packet_map_len = DEFAULT_HEADER_LEN, tmp_map_len; struct stat filestats; size_t filesize; int ret; pos = &file_stream->pos; ret = fstat(pos->fd, &filestats); if (ret < 0) return ret; filesize = filestats.st_size; /* Deal with empty files */ if (!filesize) { return 0; } begin: if (filesize - pos->mmap_offset < (packet_map_len >> LOG2_CHAR_BIT)) { packet_map_len = (filesize - pos->mmap_offset) << LOG2_CHAR_BIT; } if (pos->base_mma) { /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { fprintf(stderr, "[error] Unable to unmap old base: %s.\n", strerror(errno)); return ret; } pos->base_mma = NULL; } /* map new base. Need mapping length from header. */ pos->base_mma = mmap_align(packet_map_len >> LOG2_CHAR_BIT, PROT_READ, MAP_PRIVATE, pos->fd, pos->mmap_offset); assert(pos->base_mma != MAP_FAILED); pos->content_size = packet_map_len; pos->packet_size = packet_map_len; pos->offset = 0; /* Position of the packet header */ /* update trace_packet_header and stream_packet_context */ if (pos->prot == PROT_READ && file_stream->parent.trace_packet_header) { /* Read packet header */ ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); if (ret) { if (ret == -EFAULT) goto retry; } } if (pos->prot == PROT_READ && file_stream->parent.stream_packet_context) { /* Read packet context */ ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); if (ret) { if (ret == -EFAULT) goto retry; } } packet_index->data_offset = pos->offset; /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { fprintf(stderr, "[error] Unable to unmap old base: %s.\n", strerror(errno)); return ret; } pos->base_mma = NULL; return 0; /* Retry with larger mapping */ retry: if (packet_map_len == ((filesize - pos->mmap_offset) << LOG2_CHAR_BIT)) { /* * Reached EOF, but still expecting header/context data. */ fprintf(stderr, "[error] Reached end of file, but still expecting header or context fields.\n"); return -EFAULT; } /* Double the mapping len, and retry */ tmp_map_len = packet_map_len << 1; if (tmp_map_len >> 1 != packet_map_len) { /* Overflow */ fprintf(stderr, "[error] Packet mapping length overflow\n"); return -EFAULT; } packet_map_len = tmp_map_len; goto begin; } int ctf_init_pos(struct ctf_stream_pos *pos, struct bt_trace_descriptor *trace, int fd, int open_flags) { pos->fd = fd; if (fd >= 0) { pos->packet_index = g_array_new(FALSE, TRUE, sizeof(struct packet_index)); } else { pos->packet_index = NULL; } switch (open_flags & O_ACCMODE) { case O_RDONLY: pos->prot = PROT_READ; pos->flags = MAP_PRIVATE; pos->parent.rw_table = read_dispatch_table; pos->parent.event_cb = ctf_read_event; pos->parent.trace = trace; break; case O_RDWR: pos->prot = PROT_WRITE; /* Write has priority */ pos->flags = MAP_SHARED; pos->parent.rw_table = write_dispatch_table; pos->parent.event_cb = ctf_write_event; pos->parent.trace = trace; if (fd >= 0) ctf_packet_seek(&pos->parent, 0, SEEK_SET); /* position for write */ break; default: assert(0); } return 0; } int ctf_fini_pos(struct ctf_stream_pos *pos) { if (pos->prot == PROT_WRITE && pos->content_size_loc) *pos->content_size_loc = pos->offset; if (pos->base_mma) { int ret; /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { fprintf(stderr, "[error] Unable to unmap old base: %s.\n", strerror(errno)); return -1; } } if (pos->packet_index) (void) g_array_free(pos->packet_index, TRUE); return 0; } void ctf_update_current_packet_index(struct ctf_stream_definition *stream, struct packet_index *prev_index, struct packet_index *cur_index) { uint64_t events_discarded_diff; /* Update packet index time information */ /* Current packet begin/end */ stream->current.real.begin = cur_index->ts_real.timestamp_begin; stream->current.cycles.begin = cur_index->ts_cycles.timestamp_begin; stream->current.real.end = cur_index->ts_real.timestamp_end; stream->current.cycles.end = cur_index->ts_cycles.timestamp_end; /* Update packet index discarded event information */ events_discarded_diff = cur_index->events_discarded; if (prev_index) { /* Previous packet begin/end */ stream->prev.cycles.begin = prev_index->ts_cycles.timestamp_begin; stream->prev.real.begin = prev_index->ts_real.timestamp_begin; stream->prev.cycles.end = prev_index->ts_cycles.timestamp_end; stream->prev.real.end = prev_index->ts_real.timestamp_end; events_discarded_diff -= prev_index->events_discarded; /* * Deal with 32-bit wrap-around if the tracer provided a * 32-bit field. */ if (prev_index->events_discarded_len == 32) { events_discarded_diff = (uint32_t) events_discarded_diff; } } else { /* * First packet: use current packet info as limits for * previous packet. */ stream->prev.cycles.begin = stream->prev.cycles.end = stream->current.cycles.begin; stream->prev.real.begin = stream->prev.real.end = stream->current.real.begin; } stream->events_discarded = events_discarded_diff; } /* * for SEEK_CUR: go to next packet. * for SEEK_SET: go to packet numer (index). */ void ctf_packet_seek(struct bt_stream_pos *stream_pos, size_t index, int whence) { struct ctf_stream_pos *pos = container_of(stream_pos, struct ctf_stream_pos, parent); struct ctf_file_stream *file_stream = container_of(pos, struct ctf_file_stream, pos); int ret; off_t off; struct packet_index *packet_index, *prev_index; switch (whence) { case SEEK_CUR: case SEEK_SET: /* Fall-through */ break; /* OK */ default: assert(0); } if (pos->prot == PROT_WRITE && pos->content_size_loc) *pos->content_size_loc = pos->offset; if (pos->base_mma) { /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { fprintf(stderr, "[error] Unable to unmap old base: %s.\n", strerror(errno)); assert(0); } pos->base_mma = NULL; } /* * The caller should never ask for ctf_move_pos across packets, * except to get exactly at the beginning of the next packet. */ if (pos->prot == PROT_WRITE) { switch (whence) { case SEEK_CUR: /* The writer will add padding */ pos->mmap_offset += pos->packet_size / CHAR_BIT; break; case SEEK_SET: assert(index == 0); /* only seek supported for now */ pos->cur_index = 0; break; default: assert(0); } pos->content_size = -1U; /* Unknown at this point */ pos->packet_size = WRITE_PACKET_LEN; off = posix_fallocate(pos->fd, pos->mmap_offset, pos->packet_size / CHAR_BIT); assert(off >= 0); pos->offset = 0; } else { read_next_packet: switch (whence) { case SEEK_CUR: { if (pos->offset == EOF) { return; } assert(pos->cur_index < pos->packet_index->len); /* The reader will expect us to skip padding */ ++pos->cur_index; break; } case SEEK_SET: if (index >= pos->packet_index->len) { pos->offset = EOF; return; } pos->cur_index = index; break; default: assert(0); } packet_index = &g_array_index(pos->packet_index, struct packet_index, pos->cur_index); if (pos->cur_index > 0) { prev_index = &g_array_index(pos->packet_index, struct packet_index, pos->cur_index - 1); } else { prev_index = NULL; } ctf_update_current_packet_index(&file_stream->parent, prev_index, packet_index); if (pos->cur_index >= pos->packet_index->len) { pos->offset = EOF; return; } /* * We need to check if we are in trace read or called * from packet indexing. In this last case, the * collection is not there, so we cannot print the * timestamps. */ if ((&file_stream->parent)->stream_class->trace->parent.collection) { ctf_print_discarded(stderr, &file_stream->parent); } packet_index = &g_array_index(pos->packet_index, struct packet_index, pos->cur_index); file_stream->parent.cycles_timestamp = packet_index->ts_cycles.timestamp_begin; file_stream->parent.real_timestamp = packet_index->ts_real.timestamp_begin; /* Lookup context/packet size in index */ if (packet_index->data_offset == -1) { ret = find_data_offset(pos, file_stream, packet_index); if (ret < 0) { return; } } pos->content_size = packet_index->content_size; pos->packet_size = packet_index->packet_size; pos->mmap_offset = packet_index->offset; pos->data_offset = packet_index->data_offset; if (pos->data_offset < packet_index->content_size) { pos->offset = 0; /* will read headers */ } else if (pos->data_offset == packet_index->content_size) { /* empty packet */ pos->offset = packet_index->data_offset; whence = SEEK_CUR; goto read_next_packet; } else { pos->offset = EOF; return; } } /* map new base. Need mapping length from header. */ pos->base_mma = mmap_align(pos->packet_size / CHAR_BIT, pos->prot, pos->flags, pos->fd, pos->mmap_offset); if (pos->base_mma == MAP_FAILED) { fprintf(stderr, "[error] mmap error %s.\n", strerror(errno)); assert(0); } /* update trace_packet_header and stream_packet_context */ if (pos->prot != PROT_WRITE && file_stream->parent.trace_packet_header) { /* Read packet header */ ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); assert(!ret); } if (pos->prot != PROT_WRITE && file_stream->parent.stream_packet_context) { /* Read packet context */ ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); assert(!ret); } } static int packet_metadata(struct ctf_trace *td, FILE *fp) { uint32_t magic; size_t len; int ret = 0; len = fread(&magic, sizeof(magic), 1, fp); if (len != 1) { goto end; } if (magic == TSDL_MAGIC) { ret = 1; td->byte_order = BYTE_ORDER; CTF_TRACE_SET_FIELD(td, byte_order); } else if (magic == GUINT32_SWAP_LE_BE(TSDL_MAGIC)) { ret = 1; td->byte_order = (BYTE_ORDER == BIG_ENDIAN) ? LITTLE_ENDIAN : BIG_ENDIAN; CTF_TRACE_SET_FIELD(td, byte_order); } end: rewind(fp); return ret; } /* * Returns 0 on success, -1 on error. */ static int check_version(unsigned int major, unsigned int minor) { switch (major) { case 1: switch (minor) { case 8: return 0; default: goto warning; } default: goto warning; } /* eventually return an error instead of warning */ warning: fprintf(stderr, "[warning] Unsupported CTF specification version %u.%u. Trying anyway.\n", major, minor); return 0; } static int ctf_trace_metadata_packet_read(struct ctf_trace *td, FILE *in, FILE *out) { struct metadata_packet_header header; size_t readlen, writelen, toread; char buf[4096 + 1]; /* + 1 for debug-mode \0 */ int ret = 0; readlen = fread(&header, header_sizeof(header), 1, in); if (readlen < 1) return -EINVAL; if (td->byte_order != BYTE_ORDER) { header.magic = GUINT32_SWAP_LE_BE(header.magic); header.checksum = GUINT32_SWAP_LE_BE(header.checksum); header.content_size = GUINT32_SWAP_LE_BE(header.content_size); header.packet_size = GUINT32_SWAP_LE_BE(header.packet_size); } if (header.checksum) fprintf(stderr, "[warning] checksum verification not supported yet.\n"); if (header.compression_scheme) { fprintf(stderr, "[error] compression (%u) not supported yet.\n", header.compression_scheme); return -EINVAL; } if (header.encryption_scheme) { fprintf(stderr, "[error] encryption (%u) not supported yet.\n", header.encryption_scheme); return -EINVAL; } if (header.checksum_scheme) { fprintf(stderr, "[error] checksum (%u) not supported yet.\n", header.checksum_scheme); return -EINVAL; } if (check_version(header.major, header.minor) < 0) return -EINVAL; if (!CTF_TRACE_FIELD_IS_SET(td, uuid)) { memcpy(td->uuid, header.uuid, sizeof(header.uuid)); CTF_TRACE_SET_FIELD(td, uuid); } else { if (babeltrace_uuid_compare(header.uuid, td->uuid)) return -EINVAL; } if ((header.content_size / CHAR_BIT) < header_sizeof(header)) return -EINVAL; toread = (header.content_size / CHAR_BIT) - header_sizeof(header); for (;;) { readlen = fread(buf, sizeof(char), min(sizeof(buf) - 1, toread), in); if (ferror(in)) { ret = -EINVAL; break; } if (babeltrace_debug) { buf[readlen] = '\0'; fprintf(stderr, "[debug] metadata packet read: %s\n", buf); } writelen = fwrite(buf, sizeof(char), readlen, out); if (writelen < readlen) { ret = -EIO; break; } if (ferror(out)) { ret = -EINVAL; break; } toread -= readlen; if (!toread) { ret = 0; /* continue reading next packet */ goto read_padding; } } return ret; read_padding: toread = (header.packet_size - header.content_size) / CHAR_BIT; ret = fseek(in, toread, SEEK_CUR); if (ret < 0) { fprintf(stderr, "[warning] Missing padding at end of file\n"); ret = 0; } return ret; } static int ctf_trace_metadata_stream_read(struct ctf_trace *td, FILE **fp, char **buf) { FILE *in, *out; size_t size, buflen; int ret; in = *fp; /* * Using strlen on *buf instead of size of open_memstream * because its size includes garbage at the end (after final * \0). This is the allocated size, not the actual string size. */ out = babeltrace_open_memstream(buf, &size); if (out == NULL) { perror("Metadata open_memstream"); return -errno; } for (;;) { ret = ctf_trace_metadata_packet_read(td, in, out); if (ret) { break; } if (feof(in)) { ret = 0; break; } } /* close to flush the buffer */ ret = babeltrace_close_memstream(buf, &size, out); if (ret < 0) { int closeret; perror("babeltrace_flush_memstream"); ret = -errno; closeret = fclose(in); if (closeret) { perror("Error in fclose"); } return ret; } ret = fclose(in); if (ret) { perror("Error in fclose"); } /* open for reading */ buflen = strlen(*buf); if (!buflen) { *fp = NULL; return -ENOENT; } *fp = babeltrace_fmemopen(*buf, buflen, "rb"); if (!*fp) { perror("Metadata fmemopen"); return -errno; } return 0; } static int ctf_trace_metadata_read(struct ctf_trace *td, FILE *metadata_fp, struct ctf_scanner *scanner, int append) { struct ctf_file_stream *metadata_stream; FILE *fp; char *buf = NULL; int ret = 0, closeret; metadata_stream = g_new0(struct ctf_file_stream, 1); metadata_stream->pos.last_offset = LAST_OFFSET_POISON; if (metadata_fp) { fp = metadata_fp; metadata_stream->pos.fd = -1; } else { td->metadata = &metadata_stream->parent; metadata_stream->pos.fd = openat(td->dirfd, "metadata", O_RDONLY); if (metadata_stream->pos.fd < 0) { fprintf(stderr, "Unable to open metadata.\n"); ret = -1; goto end_free; } fp = fdopen(metadata_stream->pos.fd, "r"); if (!fp) { fprintf(stderr, "[error] Unable to open metadata stream.\n"); perror("Metadata stream open"); ret = -errno; goto end_stream; } /* fd now belongs to fp */ metadata_stream->pos.fd = -1; } if (babeltrace_debug) yydebug = 1; if (packet_metadata(td, fp)) { ret = ctf_trace_metadata_stream_read(td, &fp, &buf); if (ret) { goto end; } td->metadata_string = buf; td->metadata_packetized = 1; } else { if (!append) { unsigned int major, minor; ssize_t nr_items; td->byte_order = BYTE_ORDER; /* Check text-only metadata header and version */ nr_items = fscanf(fp, "/* CTF %10u.%10u", &major, &minor); if (nr_items < 2) fprintf(stderr, "[warning] Ill-shapen or missing \"/* CTF x.y\" header for text-only metadata.\n"); if (check_version(major, minor) < 0) { ret = -EINVAL; goto end; } rewind(fp); } } ret = ctf_scanner_append_ast(scanner, fp); if (ret) { fprintf(stderr, "[error] Error creating AST\n"); goto end; } if (babeltrace_debug) { ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root); if (ret) { fprintf(stderr, "[error] Error visiting AST for XML output\n"); goto end; } } ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root); if (ret) { fprintf(stderr, "[error] Error in CTF semantic validation %d\n", ret); goto end; } ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root, td, td->byte_order); if (ret) { fprintf(stderr, "[error] Error in CTF metadata constructor %d\n", ret); goto end; } end: if (fp) { closeret = fclose(fp); if (closeret) { perror("Error on fclose"); } } end_stream: if (metadata_stream->pos.fd >= 0) { closeret = close(metadata_stream->pos.fd); if (closeret) { perror("Error on metadata stream fd close"); } } end_free: if (ret) g_free(metadata_stream); return ret; } static struct ctf_event_definition *create_event_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream, struct ctf_event_declaration *event) { struct ctf_event_definition *stream_event = g_new0(struct ctf_event_definition, 1); if (event->context_decl) { struct bt_definition *definition = event->context_decl->p.definition_new(&event->context_decl->p, stream->parent_def_scope, 0, 0, "event.context"); if (!definition) { goto error; } stream_event->event_context = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream_event->event_context->p.scope; } if (event->fields_decl) { struct bt_definition *definition = event->fields_decl->p.definition_new(&event->fields_decl->p, stream->parent_def_scope, 0, 0, "event.fields"); if (!definition) { goto error; } stream_event->event_fields = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream_event->event_fields->p.scope; } stream_event->stream = stream; return stream_event; error: if (stream_event->event_fields) bt_definition_unref(&stream_event->event_fields->p); if (stream_event->event_context) bt_definition_unref(&stream_event->event_context->p); fprintf(stderr, "[error] Unable to create event definition for event \"%s\".\n", g_quark_to_string(event->name)); return NULL; } static int copy_event_declarations_stream_class_to_stream(struct ctf_trace *td, struct ctf_stream_declaration *stream_class, struct ctf_stream_definition *stream) { size_t def_size, class_size, i; int ret = 0; def_size = stream->events_by_id->len; class_size = stream_class->events_by_id->len; g_ptr_array_set_size(stream->events_by_id, class_size); for (i = def_size; i < class_size; i++) { struct ctf_event_declaration *event = g_ptr_array_index(stream_class->events_by_id, i); struct ctf_event_definition *stream_event; if (!event) continue; stream_event = create_event_definitions(td, stream, event); if (!stream_event) { ret = -EINVAL; goto error; } g_ptr_array_index(stream->events_by_id, i) = stream_event; } error: return ret; } static int create_stream_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream) { struct ctf_stream_declaration *stream_class; int ret; int i; if (stream->stream_definitions_created) return 0; stream_class = stream->stream_class; if (stream_class->packet_context_decl) { struct bt_definition *definition = stream_class->packet_context_decl->p.definition_new(&stream_class->packet_context_decl->p, stream->parent_def_scope, 0, 0, "stream.packet.context"); if (!definition) { ret = -EINVAL; goto error; } stream->stream_packet_context = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream->stream_packet_context->p.scope; } if (stream_class->event_header_decl) { struct bt_definition *definition = stream_class->event_header_decl->p.definition_new(&stream_class->event_header_decl->p, stream->parent_def_scope, 0, 0, "stream.event.header"); if (!definition) { ret = -EINVAL; goto error; } stream->stream_event_header = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream->stream_event_header->p.scope; } if (stream_class->event_context_decl) { struct bt_definition *definition = stream_class->event_context_decl->p.definition_new(&stream_class->event_context_decl->p, stream->parent_def_scope, 0, 0, "stream.event.context"); if (!definition) { ret = -EINVAL; goto error; } stream->stream_event_context = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream->stream_event_context->p.scope; } stream->events_by_id = g_ptr_array_new(); ret = copy_event_declarations_stream_class_to_stream(td, stream_class, stream); if (ret) goto error_event; return 0; error_event: for (i = 0; i < stream->events_by_id->len; i++) { struct ctf_event_definition *stream_event = g_ptr_array_index(stream->events_by_id, i); if (stream_event) g_free(stream_event); } g_ptr_array_free(stream->events_by_id, TRUE); error: if (stream->stream_event_context) bt_definition_unref(&stream->stream_event_context->p); if (stream->stream_event_header) bt_definition_unref(&stream->stream_event_header->p); if (stream->stream_packet_context) bt_definition_unref(&stream->stream_packet_context->p); fprintf(stderr, "[error] Unable to create stream (%" PRIu64 ") definitions: %s\n", stream_class->stream_id, strerror(-ret)); return ret; } static int stream_assign_class(struct ctf_trace *td, struct ctf_file_stream *file_stream, uint64_t stream_id) { struct ctf_stream_declaration *stream; int ret; file_stream->parent.stream_id = stream_id; if (stream_id >= td->streams->len) { fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id); return -EINVAL; } stream = g_ptr_array_index(td->streams, stream_id); if (!stream) { fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id); return -EINVAL; } file_stream->parent.stream_class = stream; ret = create_stream_definitions(td, &file_stream->parent); if (ret) return ret; return 0; } static int create_stream_one_packet_index(struct ctf_stream_pos *pos, struct ctf_trace *td, struct ctf_file_stream *file_stream, size_t filesize) { struct packet_index packet_index; uint64_t stream_id = 0; uint64_t packet_map_len = DEFAULT_HEADER_LEN, tmp_map_len; int first_packet = 0; int len_index; int ret; begin: if (!pos->mmap_offset) { first_packet = 1; } if (filesize - pos->mmap_offset < (packet_map_len >> LOG2_CHAR_BIT)) { packet_map_len = (filesize - pos->mmap_offset) << LOG2_CHAR_BIT; } if (pos->base_mma) { /* unmap old base */ ret = munmap_align(pos->base_mma); if (ret) { fprintf(stderr, "[error] Unable to unmap old base: %s.\n", strerror(errno)); return ret; } pos->base_mma = NULL; } /* map new base. Need mapping length from header. */ pos->base_mma = mmap_align(packet_map_len >> LOG2_CHAR_BIT, PROT_READ, MAP_PRIVATE, pos->fd, pos->mmap_offset); assert(pos->base_mma != MAP_FAILED); /* * Use current mapping size as temporary content and packet * size. */ pos->content_size = packet_map_len; pos->packet_size = packet_map_len; pos->offset = 0; /* Position of the packet header */ packet_index.offset = pos->mmap_offset; packet_index.content_size = 0; packet_index.packet_size = 0; packet_index.ts_real.timestamp_begin = 0; packet_index.ts_real.timestamp_end = 0; packet_index.ts_cycles.timestamp_begin = 0; packet_index.ts_cycles.timestamp_end = 0; packet_index.events_discarded = 0; packet_index.events_discarded_len = 0; /* read and check header, set stream id (and check) */ if (file_stream->parent.trace_packet_header) { /* Read packet header */ ret = generic_rw(&pos->parent, &file_stream->parent.trace_packet_header->p); if (ret) { if (ret == -EFAULT) goto retry; fprintf(stderr, "[error] Unable to read packet header: %s\n", strerror(-ret)); return ret; } len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("magic")); if (len_index >= 0) { struct bt_definition *field; uint64_t magic; field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); magic = bt_get_unsigned_int(field); if (magic != CTF_MAGIC) { fprintf(stderr, "[error] Invalid magic number 0x%" PRIX64 " at packet %u (file offset %zd).\n", magic, file_stream->pos.packet_index->len, (ssize_t) pos->mmap_offset); return -EINVAL; } } /* check uuid */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("uuid")); if (len_index >= 0) { struct definition_array *defarray; struct bt_definition *field; uint64_t i; uint8_t uuidval[BABELTRACE_UUID_LEN]; field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); assert(field->declaration->id == CTF_TYPE_ARRAY); defarray = container_of(field, struct definition_array, p); assert(bt_array_len(defarray) == BABELTRACE_UUID_LEN); for (i = 0; i < BABELTRACE_UUID_LEN; i++) { struct bt_definition *elem; elem = bt_array_index(defarray, i); uuidval[i] = bt_get_unsigned_int(elem); } ret = babeltrace_uuid_compare(td->uuid, uuidval); if (ret) { fprintf(stderr, "[error] Unique Universal Identifiers do not match.\n"); return -EINVAL; } } len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.trace_packet_header->declaration, g_quark_from_static_string("stream_id")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.trace_packet_header, len_index); stream_id = bt_get_unsigned_int(field); } } if (!first_packet && file_stream->parent.stream_id != stream_id) { fprintf(stderr, "[error] Stream ID is changing within a stream: expecting %" PRIu64 ", but packet has %" PRIu64 "\n", stream_id, file_stream->parent.stream_id); return -EINVAL; } if (first_packet) { ret = stream_assign_class(td, file_stream, stream_id); if (ret) return ret; } if (file_stream->parent.stream_packet_context) { /* Read packet context */ ret = generic_rw(&pos->parent, &file_stream->parent.stream_packet_context->p); if (ret) { if (ret == -EFAULT) goto retry; fprintf(stderr, "[error] Unable to read packet context: %s\n", strerror(-ret)); return ret; } /* read packet size from header */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("packet_size")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); packet_index.packet_size = bt_get_unsigned_int(field); } else { /* Use file size for packet size */ packet_index.packet_size = filesize * CHAR_BIT; } /* read content size from header */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("content_size")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); packet_index.content_size = bt_get_unsigned_int(field); } else { /* Use packet size if non-zero, else file size */ packet_index.content_size = packet_index.packet_size ? : filesize * CHAR_BIT; } /* read timestamp begin from header */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_begin")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); packet_index.ts_cycles.timestamp_begin = bt_get_unsigned_int(field); if (file_stream->parent.stream_class->trace->parent.collection) { packet_index.ts_real.timestamp_begin = ctf_get_real_timestamp( &file_stream->parent, packet_index.ts_cycles.timestamp_begin); } } /* read timestamp end from header */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("timestamp_end")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); packet_index.ts_cycles.timestamp_end = bt_get_unsigned_int(field); if (file_stream->parent.stream_class->trace->parent.collection) { packet_index.ts_real.timestamp_end = ctf_get_real_timestamp( &file_stream->parent, packet_index.ts_cycles.timestamp_end); } } /* read events discarded from header */ len_index = bt_struct_declaration_lookup_field_index(file_stream->parent.stream_packet_context->declaration, g_quark_from_static_string("events_discarded")); if (len_index >= 0) { struct bt_definition *field; field = bt_struct_definition_get_field_from_index(file_stream->parent.stream_packet_context, len_index); packet_index.events_discarded = bt_get_unsigned_int(field); packet_index.events_discarded_len = bt_get_int_len(field); } } else { /* Use file size for packet size */ packet_index.packet_size = filesize * CHAR_BIT; /* Use packet size if non-zero, else file size */ packet_index.content_size = packet_index.packet_size ? : filesize * CHAR_BIT; } /* Validate content size and packet size values */ if (packet_index.content_size > packet_index.packet_size) { fprintf(stderr, "[error] Content size (%" PRIu64 " bits) is larger than packet size (%" PRIu64 " bits).\n", packet_index.content_size, packet_index.packet_size); return -EINVAL; } if (packet_index.packet_size > ((uint64_t) filesize - packet_index.offset) * CHAR_BIT) { fprintf(stderr, "[error] Packet size (%" PRIu64 " bits) is larger than remaining file size (%" PRIu64 " bits).\n", packet_index.packet_size, ((uint64_t) filesize - packet_index.offset) * CHAR_BIT); return -EINVAL; } if (packet_index.content_size < pos->offset) { fprintf(stderr, "[error] Invalid CTF stream: content size is smaller than packet headers.\n"); return -EINVAL; } if ((packet_index.packet_size >> LOG2_CHAR_BIT) == 0) { fprintf(stderr, "[error] Invalid CTF stream: packet size needs to be at least one byte\n"); return -EINVAL; } /* Save position after header and context */ packet_index.data_offset = pos->offset; /* add index to packet array */ g_array_append_val(file_stream->pos.packet_index, packet_index); pos->mmap_offset += packet_index.packet_size >> LOG2_CHAR_BIT; return 0; /* Retry with larger mapping */ retry: if (packet_map_len == ((filesize - pos->mmap_offset) << LOG2_CHAR_BIT)) { /* * Reached EOF, but still expecting header/context data. */ fprintf(stderr, "[error] Reached end of file, but still expecting header or context fields.\n"); return -EFAULT; } /* Double the mapping len, and retry */ tmp_map_len = packet_map_len << 1; if (tmp_map_len >> 1 != packet_map_len) { /* Overflow */ fprintf(stderr, "[error] Packet mapping length overflow\n"); return -EFAULT; } packet_map_len = tmp_map_len; goto begin; } static int create_stream_packet_index(struct ctf_trace *td, struct ctf_file_stream *file_stream) { struct ctf_stream_pos *pos; struct stat filestats; int ret; pos = &file_stream->pos; ret = fstat(pos->fd, &filestats); if (ret < 0) return ret; /* Deal with empty files */ if (!filestats.st_size) { if (file_stream->parent.trace_packet_header || file_stream->parent.stream_packet_context) { /* * We expect a trace packet header and/or stream packet * context. Since a trace needs to have at least one * packet, empty files are therefore not accepted. */ fprintf(stderr, "[error] Encountered an empty file, but expecting a trace packet header.\n"); return -EINVAL; } else { /* * Without trace packet header nor stream packet * context, a one-packet trace can indeed be empty. This * is only valid if there is only one stream class: 0. */ ret = stream_assign_class(td, file_stream, 0); if (ret) return ret; return 0; } } for (pos->mmap_offset = 0; pos->mmap_offset < filestats.st_size; ) { ret = create_stream_one_packet_index(pos, td, file_stream, filestats.st_size); if (ret) return ret; } return 0; } static int create_trace_definitions(struct ctf_trace *td, struct ctf_stream_definition *stream) { int ret; if (td->packet_header_decl) { struct bt_definition *definition = td->packet_header_decl->p.definition_new(&td->packet_header_decl->p, stream->parent_def_scope, 0, 0, "trace.packet.header"); if (!definition) { ret = -EINVAL; goto error; } stream->trace_packet_header = container_of(definition, struct definition_struct, p); stream->parent_def_scope = stream->trace_packet_header->p.scope; } return 0; error: fprintf(stderr, "[error] Unable to create trace definitions: %s\n", strerror(-ret)); return ret; } static int import_stream_packet_index(struct ctf_trace *td, struct ctf_file_stream *file_stream) { struct ctf_stream_pos *pos; struct ctf_packet_index *ctf_index = NULL; struct ctf_packet_index_file_hdr index_hdr; struct packet_index index; uint32_t packet_index_len; int ret = 0; int first_packet = 1; size_t len; pos = &file_stream->pos; len = fread(&index_hdr, sizeof(index_hdr), 1, pos->index_fp); if (len != 1) { perror("read index file header"); goto error; } /* Check the index header */ if (be32toh(index_hdr.magic) != CTF_INDEX_MAGIC) { fprintf(stderr, "[error] wrong index magic\n"); ret = -1; goto error; } if (be32toh(index_hdr.index_major) != CTF_INDEX_MAJOR) { fprintf(stderr, "[error] Incompatible index file %" PRIu64 ".%" PRIu64 ", supported %d.%d\n", be64toh(index_hdr.index_major), be64toh(index_hdr.index_minor), CTF_INDEX_MAJOR, CTF_INDEX_MINOR); ret = -1; goto error; } packet_index_len = be32toh(index_hdr.packet_index_len); if (packet_index_len == 0) { fprintf(stderr, "[error] Packet index length cannot be 0.\n"); ret = -1; goto error; } /* * Allocate the index length found in header, not internal * representation. */ ctf_index = g_malloc0(packet_index_len); while (fread(ctf_index, packet_index_len, 1, pos->index_fp) == 1) { uint64_t stream_id; struct ctf_stream_declaration *stream = NULL; memset(&index, 0, sizeof(index)); index.offset = be64toh(ctf_index->offset); index.packet_size = be64toh(ctf_index->packet_size); index.content_size = be64toh(ctf_index->content_size); index.ts_cycles.timestamp_begin = be64toh(ctf_index->timestamp_begin); index.ts_cycles.timestamp_end = be64toh(ctf_index->timestamp_end); index.events_discarded = be64toh(ctf_index->events_discarded); index.events_discarded_len = 64; index.data_offset = -1; stream_id = be64toh(ctf_index->stream_id); if (!first_packet) { /* add index to packet array */ g_array_append_val(file_stream->pos.packet_index, index); continue; } file_stream->parent.stream_id = stream_id; if (stream_id < td->streams->len) { stream = g_ptr_array_index(td->streams, stream_id); } if (!stream) { fprintf(stderr, "[error] Stream %" PRIu64 " is not declared in metadata.\n", stream_id); ret = -EINVAL; goto error; } file_stream->parent.stream_class = stream; ret = create_stream_definitions(td, &file_stream->parent); if (ret) goto error; first_packet = 0; /* add index to packet array */ g_array_append_val(file_stream->pos.packet_index, index); } /* Index containing only the header. */ if (!file_stream->parent.stream_class) { ret = -1; goto error; } ret = 0; error: g_free(ctf_index); return ret; } /* * Note: many file streams can inherit from the same stream class * description (metadata). */ static int ctf_open_file_stream_read(struct ctf_trace *td, const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence)) { int ret, fd, closeret; struct ctf_file_stream *file_stream; struct stat statbuf; char *index_name; fd = openat(td->dirfd, path, flags); if (fd < 0) { perror("File stream openat()"); ret = fd; goto error; } /* Don't try to mmap subdirectories. Skip them, return success. */ ret = fstat(fd, &statbuf); if (ret) { perror("File stream fstat()"); goto fstat_error; } if (S_ISDIR(statbuf.st_mode)) { if (strncmp(path, "index", 5) != 0) { fprintf(stderr, "[warning] Skipping directory '%s' " "found in trace\n", path); } ret = 0; goto fd_is_dir_ok; } file_stream = g_new0(struct ctf_file_stream, 1); file_stream->pos.last_offset = LAST_OFFSET_POISON; file_stream->pos.fd = -1; file_stream->pos.index_fp = NULL; strncpy(file_stream->parent.path, path, PATH_MAX); file_stream->parent.path[PATH_MAX - 1] = '\0'; if (packet_seek) { file_stream->pos.packet_seek = packet_seek; } else { fprintf(stderr, "[error] packet_seek function undefined.\n"); ret = -1; goto error_def; } ret = ctf_init_pos(&file_stream->pos, &td->parent, fd, flags); if (ret) goto error_def; ret = create_trace_definitions(td, &file_stream->parent); if (ret) goto error_def; /* * For now, only a single clock per trace is supported. */ file_stream->parent.current_clock = td->parent.single_clock; /* * Allocate the index name for this stream and try to open it. */ index_name = malloc((strlen(path) + sizeof(INDEX_PATH)) * sizeof(char)); if (!index_name) { fprintf(stderr, "[error] Cannot allocate index filename\n"); goto error_def; } snprintf(index_name, strlen(path) + sizeof(INDEX_PATH), INDEX_PATH, path); if (faccessat(td->dirfd, index_name, O_RDONLY, flags) < 0) { ret = create_stream_packet_index(td, file_stream); if (ret) { fprintf(stderr, "[error] Stream index creation error.\n"); goto error_index; } } else { ret = openat(td->dirfd, index_name, flags); if (ret < 0) { perror("Index file openat()"); ret = -1; goto error_free; } file_stream->pos.index_fp = fdopen(ret, "r"); if (!file_stream->pos.index_fp) { perror("fdopen() error"); goto error_free; } ret = import_stream_packet_index(td, file_stream); if (ret) { ret = -1; goto error_index; } ret = fclose(file_stream->pos.index_fp); if (ret < 0) { perror("close index"); goto error_free; } } free(index_name); /* Add stream file to stream class */ g_ptr_array_add(file_stream->parent.stream_class->streams, &file_stream->parent); return 0; error_index: if (file_stream->pos.index_fp) { ret = fclose(file_stream->pos.index_fp); if (ret < 0) { perror("close index"); } } if (file_stream->parent.trace_packet_header) bt_definition_unref(&file_stream->parent.trace_packet_header->p); error_free: free(index_name); error_def: closeret = ctf_fini_pos(&file_stream->pos); if (closeret) { fprintf(stderr, "Error on ctf_fini_pos\n"); } g_free(file_stream); fd_is_dir_ok: fstat_error: closeret = close(fd); if (closeret) { perror("Error on fd close"); } error: return ret; } static int ctf_open_trace_read(struct ctf_trace *td, const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_scanner *scanner; int ret, closeret; struct dirent *dirent; struct dirent *diriter; size_t dirent_len; char *ext; td->flags = flags; /* Open trace directory */ td->dir = opendir(path); if (!td->dir) { fprintf(stderr, "[error] Unable to open trace directory \"%s\".\n", path); ret = -ENOENT; goto error; } td->dirfd = open(path, 0); if (td->dirfd < 0) { fprintf(stderr, "[error] Unable to open trace directory file descriptor for path \"%s\".\n", path); perror("Trace directory open"); ret = -errno; goto error_dirfd; } strncpy(td->parent.path, path, sizeof(td->parent.path)); td->parent.path[sizeof(td->parent.path) - 1] = '\0'; /* * Keep the metadata file separate. * Keep scanner object local to the open. We don't support * incremental metadata append for on-disk traces. */ scanner = ctf_scanner_alloc(); if (!scanner) { fprintf(stderr, "[error] Error allocating scanner\n"); ret = -ENOMEM; goto error_metadata; } ret = ctf_trace_metadata_read(td, metadata_fp, scanner, 0); ctf_scanner_free(scanner); if (ret) { if (ret == -ENOENT) { fprintf(stderr, "[warning] Empty metadata.\n"); } fprintf(stderr, "[warning] Unable to open trace metadata for path \"%s\".\n", path); goto error_metadata; } /* * Open each stream: for each file, try to open, check magic * number, and get the stream ID to add to the right location in * the stream array. */ dirent_len = offsetof(struct dirent, d_name) + fpathconf(td->dirfd, _PC_NAME_MAX) + 1; dirent = malloc(dirent_len); for (;;) { ret = readdir_r(td->dir, dirent, &diriter); if (ret) { fprintf(stderr, "[error] Readdir error.\n"); goto readdir_error; } if (!diriter) break; /* Ignore hidden files, ., .. and metadata. */ if (!strncmp(diriter->d_name, ".", 1) || !strcmp(diriter->d_name, "..") || !strcmp(diriter->d_name, "metadata")) continue; /* Ignore index files : *.idx */ ext = strrchr(diriter->d_name, '.'); if (ext && (!strcmp(ext, ".idx"))) { continue; } ret = ctf_open_file_stream_read(td, diriter->d_name, flags, packet_seek); if (ret) { fprintf(stderr, "[error] Open file stream error.\n"); goto readdir_error; } } free(dirent); return 0; readdir_error: free(dirent); error_metadata: closeret = close(td->dirfd); if (closeret) { perror("Error on fd close"); } error_dirfd: closeret = closedir(td->dir); if (closeret) { perror("Error on closedir"); } error: return ret; } /* * ctf_open_trace: Open a CTF trace and index it. * Note that the user must seek the trace after the open (using the iterator) * since the index creation read it entirely. */ static struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_trace *td; int ret; /* * If packet_seek is NULL, we provide our default version. */ if (!packet_seek) packet_seek = ctf_packet_seek; td = g_new0(struct ctf_trace, 1); switch (flags & O_ACCMODE) { case O_RDONLY: if (!path) { fprintf(stderr, "[error] Path missing for input CTF trace.\n"); goto error; } ret = ctf_open_trace_read(td, path, flags, packet_seek, metadata_fp); if (ret) goto error; break; case O_RDWR: fprintf(stderr, "[error] Opening CTF traces for output is not supported yet.\n"); goto error; default: fprintf(stderr, "[error] Incorrect open flags.\n"); goto error; } return &td->parent; error: g_free(td); return NULL; } static void ctf_init_mmap_pos(struct ctf_stream_pos *pos, struct bt_mmap_stream *mmap_info) { pos->mmap_offset = 0; pos->packet_size = 0; pos->content_size = 0; pos->content_size_loc = NULL; pos->fd = mmap_info->fd; pos->base_mma = NULL; pos->offset = 0; pos->dummy = false; pos->cur_index = 0; pos->prot = PROT_READ; pos->flags = MAP_PRIVATE; pos->parent.rw_table = read_dispatch_table; pos->parent.event_cb = ctf_read_event; pos->priv = mmap_info->priv; pos->packet_index = g_array_new(FALSE, TRUE, sizeof(struct packet_index)); } static int prepare_mmap_stream_definition(struct ctf_trace *td, struct ctf_file_stream *file_stream) { struct ctf_stream_declaration *stream; uint64_t stream_id = 0; int ret; file_stream->parent.stream_id = stream_id; if (stream_id >= td->streams->len) { fprintf(stderr, "[error] Stream %" PRIu64 " is not declared " "in metadata.\n", stream_id); ret = -EINVAL; goto end; } stream = g_ptr_array_index(td->streams, stream_id); if (!stream) { fprintf(stderr, "[error] Stream %" PRIu64 " is not declared " "in metadata.\n", stream_id); ret = -EINVAL; goto end; } file_stream->parent.stream_class = stream; ret = create_stream_definitions(td, &file_stream->parent); end: return ret; } static int ctf_open_mmap_stream_read(struct ctf_trace *td, struct bt_mmap_stream *mmap_info, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence)) { int ret; struct ctf_file_stream *file_stream; file_stream = g_new0(struct ctf_file_stream, 1); file_stream->pos.last_offset = LAST_OFFSET_POISON; ctf_init_mmap_pos(&file_stream->pos, mmap_info); file_stream->pos.packet_seek = packet_seek; ret = create_trace_definitions(td, &file_stream->parent); if (ret) { goto error_def; } ret = prepare_mmap_stream_definition(td, file_stream); if (ret) goto error_index; /* * For now, only a single clock per trace is supported. */ file_stream->parent.current_clock = td->parent.single_clock; /* Add stream file to stream class */ g_ptr_array_add(file_stream->parent.stream_class->streams, &file_stream->parent); return 0; error_index: if (file_stream->parent.trace_packet_header) bt_definition_unref(&file_stream->parent.trace_packet_header->p); error_def: g_free(file_stream); return ret; } static int ctf_open_mmap_trace_read(struct ctf_trace *td, struct bt_mmap_stream_list *mmap_list, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { int ret; struct bt_mmap_stream *mmap_info; td->scanner = ctf_scanner_alloc(); if (!td->scanner) { fprintf(stderr, "[error] Error allocating scanner\n"); ret = -ENOMEM; goto error; } ret = ctf_trace_metadata_read(td, metadata_fp, td->scanner, 0); if (ret) { if (ret == -ENOENT) { fprintf(stderr, "[warning] Empty metadata.\n"); } goto error; } /* * for each stream, try to open, check magic number, and get the * stream ID to add to the right location in the stream array. */ bt_list_for_each_entry(mmap_info, &mmap_list->head, list) { ret = ctf_open_mmap_stream_read(td, mmap_info, packet_seek); if (ret) { fprintf(stderr, "[error] Open file mmap stream error.\n"); goto error; } } return 0; error: ctf_scanner_free(td->scanner); return ret; } static struct bt_trace_descriptor *ctf_open_mmap_trace( struct bt_mmap_stream_list *mmap_list, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_trace *td; int ret; if (!metadata_fp) { fprintf(stderr, "[error] No metadata file pointer associated, " "required for mmap parsing\n"); goto error; } if (!packet_seek) { fprintf(stderr, "[error] packet_seek function undefined.\n"); goto error; } td = g_new0(struct ctf_trace, 1); td->dirfd = -1; ret = ctf_open_mmap_trace_read(td, mmap_list, packet_seek, metadata_fp); if (ret) goto error_free; return &td->parent; error_free: g_free(td); error: return NULL; } int ctf_append_trace_metadata(struct bt_trace_descriptor *tdp, FILE *metadata_fp) { struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent); int i, j; int ret; if (!td->scanner) return -EINVAL; ret = ctf_trace_metadata_read(td, metadata_fp, td->scanner, 1); if (ret) return ret; /* for each stream_class */ for (i = 0; i < td->streams->len; i++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(td->streams, i); if (!stream_class) continue; /* for each stream */ for (j = 0; j < stream_class->streams->len; j++) { struct ctf_stream_definition *stream; stream = g_ptr_array_index(stream_class->streams, j); if (!stream) continue; ret = copy_event_declarations_stream_class_to_stream(td, stream_class, stream); if (ret) return ret; } } return 0; } static int ctf_convert_index_timestamp(struct bt_trace_descriptor *tdp) { int i, j, k; struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent); /* for each stream_class */ for (i = 0; i < td->streams->len; i++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(td->streams, i); if (!stream_class) continue; /* for each file_stream */ for (j = 0; j < stream_class->streams->len; j++) { struct ctf_stream_definition *stream; struct ctf_stream_pos *stream_pos; struct ctf_file_stream *cfs; stream = g_ptr_array_index(stream_class->streams, j); if (!stream) continue; cfs = container_of(stream, struct ctf_file_stream, parent); stream_pos = &cfs->pos; if (!stream_pos->packet_index) continue; for (k = 0; k < stream_pos->packet_index->len; k++) { struct packet_index *index; index = &g_array_index(stream_pos->packet_index, struct packet_index, k); index->ts_real.timestamp_begin = ctf_get_real_timestamp(stream, index->ts_cycles.timestamp_begin); index->ts_real.timestamp_end = ctf_get_real_timestamp(stream, index->ts_cycles.timestamp_end); } } } return 0; } static int ctf_close_file_stream(struct ctf_file_stream *file_stream) { int ret; ret = ctf_fini_pos(&file_stream->pos); if (ret) { fprintf(stderr, "Error on ctf_fini_pos\n"); return -1; } if (file_stream->pos.fd >= 0) { ret = close(file_stream->pos.fd); if (ret) { perror("Error closing file fd"); return -1; } } return 0; } static int ctf_close_trace(struct bt_trace_descriptor *tdp) { struct ctf_trace *td = container_of(tdp, struct ctf_trace, parent); int ret; if (td->streams) { int i; for (i = 0; i < td->streams->len; i++) { struct ctf_stream_declaration *stream; int j; stream = g_ptr_array_index(td->streams, i); if (!stream) continue; for (j = 0; j < stream->streams->len; j++) { struct ctf_file_stream *file_stream; file_stream = container_of(g_ptr_array_index(stream->streams, j), struct ctf_file_stream, parent); ret = ctf_close_file_stream(file_stream); if (ret) return ret; } } } ctf_destroy_metadata(td); ctf_scanner_free(td->scanner); if (td->dirfd >= 0) { ret = close(td->dirfd); if (ret) { perror("Error closing dirfd"); return ret; } } if (td->dir) { ret = closedir(td->dir); if (ret) { perror("Error closedir"); return ret; } } free(td->metadata_string); g_free(td); return 0; } static void ctf_set_context(struct bt_trace_descriptor *descriptor, struct bt_context *ctx) { struct ctf_trace *td = container_of(descriptor, struct ctf_trace, parent); td->parent.ctx = ctx; } static void ctf_set_handle(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle) { struct ctf_trace *td = container_of(descriptor, struct ctf_trace, parent); td->parent.handle = handle; } static void __attribute__((constructor)) ctf_init(void) { int ret; ctf_format.name = g_quark_from_static_string("ctf"); ret = bt_register_format(&ctf_format); assert(!ret); } static void __attribute__((destructor)) ctf_exit(void) { bt_unregister_format(&ctf_format); } babeltrace-1.2.1/formats/ctf/writer/0000755000175000017500000000000012306621157014346 500000000000000babeltrace-1.2.1/formats/ctf/writer/stream.c0000644000175000017500000003705712304150543015733 00000000000000/* * stream.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include static void bt_ctf_stream_destroy(struct bt_ctf_ref *ref); static void bt_ctf_stream_class_destroy(struct bt_ctf_ref *ref); static int init_event_header(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order); static int init_packet_context(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order); static int set_structure_field_integer(struct bt_ctf_field *, char *, uint64_t); struct bt_ctf_stream_class *bt_ctf_stream_class_create(const char *name) { struct bt_ctf_stream_class *stream_class = NULL; if (!name || !strlen(name)) { goto error; } stream_class = g_new0(struct bt_ctf_stream_class, 1); if (!stream_class) { goto error; } stream_class->name = g_string_new(name); stream_class->event_classes = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_event_class_put); if (!stream_class->event_classes) { goto error_destroy; } bt_ctf_ref_init(&stream_class->ref_count); return stream_class; error_destroy: bt_ctf_stream_class_destroy(&stream_class->ref_count); stream_class = NULL; error: return stream_class; } int bt_ctf_stream_class_set_clock(struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock) { int ret = 0; if (!stream_class || !clock || stream_class->frozen) { ret = -1; goto end; } if (stream_class->clock) { bt_ctf_clock_put(stream_class->clock); } stream_class->clock = clock; bt_ctf_clock_get(clock); end: return ret; } int bt_ctf_stream_class_add_event_class( struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class) { int ret = 0; if (!stream_class || !event_class) { ret = -1; goto end; } /* Check for duplicate event classes */ struct search_query query = { .value = event_class, .found = 0 }; g_ptr_array_foreach(stream_class->event_classes, value_exists, &query); if (query.found) { ret = -1; goto end; } if (bt_ctf_event_class_set_id(event_class, stream_class->next_event_id++)) { /* The event is already associated to a stream class */ ret = -1; goto end; } bt_ctf_event_class_get(event_class); g_ptr_array_add(stream_class->event_classes, event_class); end: return ret; } void bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class) { if (!stream_class) { return; } bt_ctf_ref_get(&stream_class->ref_count); } void bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class) { if (!stream_class) { return; } bt_ctf_ref_put(&stream_class->ref_count, bt_ctf_stream_class_destroy); } BT_HIDDEN void bt_ctf_stream_class_freeze(struct bt_ctf_stream_class *stream_class) { if (!stream_class) { return; } stream_class->frozen = 1; bt_ctf_clock_freeze(stream_class->clock); g_ptr_array_foreach(stream_class->event_classes, (GFunc)bt_ctf_event_class_freeze, NULL); } BT_HIDDEN int bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class, uint32_t id) { int ret = 0; if (!stream_class || (stream_class->id_set && (id != stream_class->id))) { ret = -1; goto end; } stream_class->id = id; stream_class->id_set = 1; end: return ret; } BT_HIDDEN int bt_ctf_stream_class_set_byte_order(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order) { int ret = 0; ret = init_packet_context(stream_class, byte_order); if (ret) { goto end; } ret = init_event_header(stream_class, byte_order); if (ret) { goto end; } end: return ret; } BT_HIDDEN int bt_ctf_stream_class_serialize(struct bt_ctf_stream_class *stream_class, struct metadata_context *context) { int ret = 0; size_t i; g_string_assign(context->field_name, ""); context->current_indentation_level = 1; if (!stream_class->id_set) { ret = -1; goto end; } g_string_append_printf(context->string, "stream {\n\tid = %" PRIu32 ";\n\tevent.header := ", stream_class->id); ret = bt_ctf_field_type_serialize(stream_class->event_header_type, context); if (ret) { goto end; } g_string_append(context->string, ";\n\n\tpacket.context := "); ret = bt_ctf_field_type_serialize(stream_class->packet_context_type, context); if (ret) { goto end; } if (stream_class->event_context_type) { g_string_append(context->string, ";\n\n\tevent.context := "); ret = bt_ctf_field_type_serialize( stream_class->event_context_type, context); if (ret) { goto end; } } g_string_append(context->string, ";\n};\n\n"); /* Assign this stream's ID to every event and serialize them */ g_ptr_array_foreach(stream_class->event_classes, (GFunc) bt_ctf_event_class_set_stream_id, GUINT_TO_POINTER(stream_class->id)); for (i = 0; i < stream_class->event_classes->len; i++) { struct bt_ctf_event_class *event_class = stream_class->event_classes->pdata[i]; ret = bt_ctf_event_class_set_stream_id(event_class, stream_class->id); if (ret) { goto end; } ret = bt_ctf_event_class_serialize(event_class, context); if (ret) { goto end; } } end: context->current_indentation_level = 0; return ret; } BT_HIDDEN struct bt_ctf_stream *bt_ctf_stream_create( struct bt_ctf_stream_class *stream_class) { struct bt_ctf_stream *stream = NULL; if (!stream_class) { goto end; } stream = g_new0(struct bt_ctf_stream, 1); if (!stream) { goto end; } bt_ctf_ref_init(&stream->ref_count); stream->pos.fd = -1; stream->id = stream_class->next_stream_id++; stream->stream_class = stream_class; bt_ctf_stream_class_get(stream_class); bt_ctf_stream_class_freeze(stream_class); stream->events = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_event_put); end: return stream; } BT_HIDDEN int bt_ctf_stream_set_flush_callback(struct bt_ctf_stream *stream, flush_func callback, void *data) { int ret = stream ? 0 : -1; if (!stream) { goto end; } stream->flush.func = callback; stream->flush.data = data; end: return ret; } BT_HIDDEN int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd) { int ret = 0; if (stream->pos.fd != -1) { ret = -1; goto end; } ctf_init_pos(&stream->pos, NULL, fd, O_RDWR); stream->pos.fd = fd; end: return ret; } void bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count) { if (!stream) { return; } stream->events_discarded += event_count; } int bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event) { int ret = 0; uint64_t timestamp; if (!stream || !event) { ret = -1; goto end; } ret = bt_ctf_event_validate(event); if (ret) { goto end; } timestamp = bt_ctf_clock_get_time(stream->stream_class->clock); ret = bt_ctf_event_set_timestamp(event, timestamp); if (ret) { goto end; } bt_ctf_event_get(event); g_ptr_array_add(stream->events, event); end: return ret; } int bt_ctf_stream_flush(struct bt_ctf_stream *stream) { int ret = 0; size_t i; uint64_t timestamp_begin, timestamp_end; struct bt_ctf_stream_class *stream_class; struct bt_ctf_field *integer = NULL; struct ctf_stream_pos packet_context_pos; if (!stream) { ret = -1; goto end; } if (!stream->events->len) { goto end; } if (stream->flush.func) { stream->flush.func(stream, stream->flush.data); } stream_class = stream->stream_class; timestamp_begin = ((struct bt_ctf_event *) g_ptr_array_index( stream->events, 0))->timestamp; timestamp_end = ((struct bt_ctf_event *) g_ptr_array_index( stream->events, stream->events->len - 1))->timestamp; ret = set_structure_field_integer(stream_class->packet_context, "timestamp_begin", timestamp_begin); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->packet_context, "timestamp_end", timestamp_end); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->packet_context, "events_discarded", stream->events_discarded); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->packet_context, "content_size", UINT64_MAX); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->packet_context, "packet_size", UINT64_MAX); if (ret) { goto end; } /* Write packet context */ memcpy(&packet_context_pos, &stream->pos, sizeof(struct ctf_stream_pos)); ret = bt_ctf_field_serialize(stream_class->packet_context, &stream->pos); if (ret) { goto end; } for (i = 0; i < stream->events->len; i++) { struct bt_ctf_event *event = g_ptr_array_index( stream->events, i); uint32_t event_id = bt_ctf_event_class_get_id( event->event_class); uint64_t timestamp = bt_ctf_event_get_timestamp(event); ret = set_structure_field_integer(stream_class->event_header, "id", event_id); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->event_header, "timestamp", timestamp); if (ret) { goto end; } /* Write event header */ ret = bt_ctf_field_serialize(stream_class->event_header, &stream->pos); if (ret) { goto end; } /* Write event content */ ret = bt_ctf_event_serialize(event, &stream->pos); if (ret) { goto end; } } /* * Update the packet total size and content size and overwrite the * packet context. * Copy base_mma as the packet may have been remapped (e.g. when a * packet is resized). */ packet_context_pos.base_mma = stream->pos.base_mma; ret = set_structure_field_integer(stream_class->packet_context, "content_size", stream->pos.offset); if (ret) { goto end; } ret = set_structure_field_integer(stream_class->packet_context, "packet_size", stream->pos.packet_size); if (ret) { goto end; } ret = bt_ctf_field_serialize(stream_class->packet_context, &packet_context_pos); if (ret) { goto end; } g_ptr_array_set_size(stream->events, 0); stream->flushed_packet_count++; end: bt_ctf_field_put(integer); return ret; } void bt_ctf_stream_get(struct bt_ctf_stream *stream) { if (!stream) { return; } bt_ctf_ref_get(&stream->ref_count); } void bt_ctf_stream_put(struct bt_ctf_stream *stream) { if (!stream) { return; } bt_ctf_ref_put(&stream->ref_count, bt_ctf_stream_destroy); } static void bt_ctf_stream_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_stream *stream; if (!ref) { return; } stream = container_of(ref, struct bt_ctf_stream, ref_count); ctf_fini_pos(&stream->pos); if (close(stream->pos.fd)) { perror("close"); } bt_ctf_stream_class_put(stream->stream_class); g_ptr_array_free(stream->events, TRUE); g_free(stream); } static void bt_ctf_stream_class_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_stream_class *stream_class; if (!ref) { return; } stream_class = container_of(ref, struct bt_ctf_stream_class, ref_count); bt_ctf_clock_put(stream_class->clock); if (stream_class->event_classes) { g_ptr_array_free(stream_class->event_classes, TRUE); } if (stream_class->name) { g_string_free(stream_class->name, TRUE); } bt_ctf_field_type_put(stream_class->event_header_type); bt_ctf_field_put(stream_class->event_header); bt_ctf_field_type_put(stream_class->packet_context_type); bt_ctf_field_put(stream_class->packet_context); bt_ctf_field_type_put(stream_class->event_context_type); bt_ctf_field_put(stream_class->event_context); g_free(stream_class); } static int init_event_header(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order) { int ret = 0; struct bt_ctf_field_type *event_header_type = bt_ctf_field_type_structure_create(); struct bt_ctf_field_type *_uint32_t = get_field_type(FIELD_TYPE_ALIAS_UINT32_T); struct bt_ctf_field_type *_uint64_t = get_field_type(FIELD_TYPE_ALIAS_UINT64_T); if (!event_header_type) { ret = -1; goto end; } ret = bt_ctf_field_type_set_byte_order(_uint32_t, byte_order); if (ret) { goto end; } ret = bt_ctf_field_type_set_byte_order(_uint64_t, byte_order); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(event_header_type, _uint32_t, "id"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(event_header_type, _uint64_t, "timestamp"); if (ret) { goto end; } stream_class->event_header_type = event_header_type; stream_class->event_header = bt_ctf_field_create( stream_class->event_header_type); if (!stream_class->event_header) { ret = -1; } end: if (ret) { bt_ctf_field_type_put(event_header_type); } bt_ctf_field_type_put(_uint32_t); bt_ctf_field_type_put(_uint64_t); return ret; } static int init_packet_context(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order) { int ret = 0; struct bt_ctf_field_type *packet_context_type = bt_ctf_field_type_structure_create(); struct bt_ctf_field_type *_uint64_t = get_field_type(FIELD_TYPE_ALIAS_UINT64_T); if (!packet_context_type) { ret = -1; goto end; } /* * We create a stream packet context as proposed in the CTF * specification. */ ret = bt_ctf_field_type_set_byte_order(_uint64_t, byte_order); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(packet_context_type, _uint64_t, "timestamp_begin"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(packet_context_type, _uint64_t, "timestamp_end"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(packet_context_type, _uint64_t, "content_size"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(packet_context_type, _uint64_t, "packet_size"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(packet_context_type, _uint64_t, "events_discarded"); if (ret) { goto end; } stream_class->packet_context_type = packet_context_type; stream_class->packet_context = bt_ctf_field_create(packet_context_type); if (!stream_class->packet_context) { ret = -1; } end: if (ret) { bt_ctf_field_type_put(packet_context_type); goto end; } bt_ctf_field_type_put(_uint64_t); return ret; } static int set_structure_field_integer(struct bt_ctf_field *structure, char *name, uint64_t value) { int ret = 0; struct bt_ctf_field *integer = bt_ctf_field_structure_get_field(structure, name); if (!integer) { ret = -1; goto end; } ret = bt_ctf_field_unsigned_integer_set_value(integer, value); end: bt_ctf_field_put(integer); return ret; } babeltrace-1.2.1/formats/ctf/writer/clock.c0000644000175000017500000001313312304150543015520 00000000000000/* * clock.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include static void bt_ctf_clock_destroy(struct bt_ctf_ref *ref); struct bt_ctf_clock *bt_ctf_clock_create(const char *name) { struct bt_ctf_clock *clock = NULL; if (validate_identifier(name)) { goto error; } clock = g_new0(struct bt_ctf_clock, 1); if (!clock) { goto error; } clock->name = g_string_new(name); if (!clock->name) { goto error_destroy; } clock->description = g_string_new(NULL); if (!clock->description) { goto error_destroy; } clock->precision = 1; clock->frequency = 1000000000; uuid_generate(clock->uuid); bt_ctf_ref_init(&clock->ref_count); return clock; error_destroy: bt_ctf_clock_destroy(&clock->ref_count); error: clock = NULL; return clock; } int bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc) { int ret = 0; if (!clock || !desc || clock->frozen) { ret = -1; goto end; } clock->description = g_string_assign(clock->description, desc); ret = clock->description ? 0 : -1; end: return ret; } int bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq) { int ret = 0; if (!clock || clock->frozen) { ret = -1; goto end; } clock->frequency = freq; end: return ret; } int bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision) { int ret = 0; if (!clock || clock->frozen) { ret = -1; goto end; } clock->precision = precision; end: return ret; } int bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s) { int ret = 0; if (!clock || clock->frozen) { ret = -1; goto end; } clock->offset_s = offset_s; end: return ret; } int bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset) { int ret = 0; if (!clock || clock->frozen) { ret = -1; goto end; } clock->offset = offset; end: return ret; } int bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute) { int ret = 0; if (!clock || clock->frozen) { ret = -1; goto end; } clock->absolute = !!is_absolute; end: return ret; } int bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time) { int ret = 0; /* Timestamps are strictly monotonic */ if (!clock || time < clock->time) { ret = -1; goto end; } clock->time = time; end: return ret; } void bt_ctf_clock_get(struct bt_ctf_clock *clock) { if (!clock) { return; } bt_ctf_ref_get(&clock->ref_count); } void bt_ctf_clock_put(struct bt_ctf_clock *clock) { if (!clock) { return; } bt_ctf_ref_put(&clock->ref_count, bt_ctf_clock_destroy); } BT_HIDDEN void bt_ctf_clock_freeze(struct bt_ctf_clock *clock) { if (!clock) { return; } clock->frozen = 1; } BT_HIDDEN void bt_ctf_clock_serialize(struct bt_ctf_clock *clock, struct metadata_context *context) { unsigned char *uuid; if (!clock || !context) { return; } uuid = clock->uuid; g_string_append(context->string, "clock {\n"); g_string_append_printf(context->string, "\tname = %s;\n", clock->name->str); g_string_append_printf(context->string, "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n", uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[7], uuid[8], uuid[9], uuid[10], uuid[11], uuid[12], uuid[13], uuid[14], uuid[15]); if (clock->description->len) { g_string_append_printf(context->string, "\tdescription = \"%s\";\n", clock->description->str); } g_string_append_printf(context->string, "\tfreq = %" PRIu64 ";\n", clock->frequency); g_string_append_printf(context->string, "\tprecision = %" PRIu64 ";\n", clock->precision); g_string_append_printf(context->string, "\toffset_s = %" PRIu64 ";\n", clock->offset_s); g_string_append_printf(context->string, "\toffset = %" PRIu64 ";\n", clock->offset); g_string_append_printf(context->string, "\tabsolute = %s;\n", clock->absolute ? "TRUE" : "FALSE"); g_string_append(context->string, "};\n\n"); } BT_HIDDEN uint64_t bt_ctf_clock_get_time(struct bt_ctf_clock *clock) { return clock ? clock->time : 0; } static void bt_ctf_clock_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_clock *clock; if (!ref) { return; } clock = container_of(ref, struct bt_ctf_clock, ref_count); if (clock->name) { g_string_free(clock->name, TRUE); } if (clock->description) { g_string_free(clock->description, TRUE); } g_free(clock); } babeltrace-1.2.1/formats/ctf/writer/Makefile.am0000644000175000017500000000065412304150543016321 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-writer.la libctf_writer_la_SOURCES = \ writer.c \ clock.c \ stream.c \ event-types.c \ event-fields.c \ event.c \ functor.c libctf_writer_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la if BABELTRACE_BUILD_WITH_LIBUUID libctf_writer_la_LIBADD += -luuid endif if BABELTRACE_BUILD_WITH_LIBC_UUID libctf_writer_la_LIBADD += -lc endif babeltrace-1.2.1/formats/ctf/writer/event-fields.c0000644000175000017500000007447712304150543017034 00000000000000/* * event-fields.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #define PACKET_LEN_INCREMENT (getpagesize() * 8 * CHAR_BIT) static struct bt_ctf_field *bt_ctf_field_integer_create(struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_enumeration_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_floating_point_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_structure_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_variant_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_array_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_sequence_create( struct bt_ctf_field_type *); static struct bt_ctf_field *bt_ctf_field_string_create(struct bt_ctf_field_type *); static void bt_ctf_field_destroy(struct bt_ctf_ref *); static void bt_ctf_field_integer_destroy(struct bt_ctf_field *); static void bt_ctf_field_enumeration_destroy(struct bt_ctf_field *); static void bt_ctf_field_floating_point_destroy(struct bt_ctf_field *); static void bt_ctf_field_structure_destroy(struct bt_ctf_field *); static void bt_ctf_field_variant_destroy(struct bt_ctf_field *); static void bt_ctf_field_array_destroy(struct bt_ctf_field *); static void bt_ctf_field_sequence_destroy(struct bt_ctf_field *); static void bt_ctf_field_string_destroy(struct bt_ctf_field *); static int bt_ctf_field_generic_validate(struct bt_ctf_field *field); static int bt_ctf_field_structure_validate(struct bt_ctf_field *field); static int bt_ctf_field_variant_validate(struct bt_ctf_field *field); static int bt_ctf_field_enumeration_validate(struct bt_ctf_field *field); static int bt_ctf_field_array_validate(struct bt_ctf_field *field); static int bt_ctf_field_sequence_validate(struct bt_ctf_field *field); static int bt_ctf_field_integer_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_enumeration_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_floating_point_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_structure_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_variant_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_array_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_sequence_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int bt_ctf_field_string_serialize(struct bt_ctf_field *, struct ctf_stream_pos *); static int increase_packet_size(struct ctf_stream_pos *pos); static struct bt_ctf_field *(*field_create_funcs[])( struct bt_ctf_field_type *) = { [CTF_TYPE_INTEGER] = bt_ctf_field_integer_create, [CTF_TYPE_ENUM] = bt_ctf_field_enumeration_create, [CTF_TYPE_FLOAT] = bt_ctf_field_floating_point_create, [CTF_TYPE_STRUCT] = bt_ctf_field_structure_create, [CTF_TYPE_VARIANT] = bt_ctf_field_variant_create, [CTF_TYPE_ARRAY] = bt_ctf_field_array_create, [CTF_TYPE_SEQUENCE] = bt_ctf_field_sequence_create, [CTF_TYPE_STRING] = bt_ctf_field_string_create, }; static void (*field_destroy_funcs[])(struct bt_ctf_field *) = { [CTF_TYPE_INTEGER] = bt_ctf_field_integer_destroy, [CTF_TYPE_ENUM] = bt_ctf_field_enumeration_destroy, [CTF_TYPE_FLOAT] = bt_ctf_field_floating_point_destroy, [CTF_TYPE_STRUCT] = bt_ctf_field_structure_destroy, [CTF_TYPE_VARIANT] = bt_ctf_field_variant_destroy, [CTF_TYPE_ARRAY] = bt_ctf_field_array_destroy, [CTF_TYPE_SEQUENCE] = bt_ctf_field_sequence_destroy, [CTF_TYPE_STRING] = bt_ctf_field_string_destroy, }; static int (*field_validate_funcs[])(struct bt_ctf_field *) = { [CTF_TYPE_INTEGER] = bt_ctf_field_generic_validate, [CTF_TYPE_ENUM] = bt_ctf_field_enumeration_validate, [CTF_TYPE_FLOAT] = bt_ctf_field_generic_validate, [CTF_TYPE_STRUCT] = bt_ctf_field_structure_validate, [CTF_TYPE_VARIANT] = bt_ctf_field_variant_validate, [CTF_TYPE_ARRAY] = bt_ctf_field_array_validate, [CTF_TYPE_SEQUENCE] = bt_ctf_field_sequence_validate, [CTF_TYPE_STRING] = bt_ctf_field_generic_validate, }; static int (*field_serialize_funcs[])(struct bt_ctf_field *, struct ctf_stream_pos *) = { [CTF_TYPE_INTEGER] = bt_ctf_field_integer_serialize, [CTF_TYPE_ENUM] = bt_ctf_field_enumeration_serialize, [CTF_TYPE_FLOAT] = bt_ctf_field_floating_point_serialize, [CTF_TYPE_STRUCT] = bt_ctf_field_structure_serialize, [CTF_TYPE_VARIANT] = bt_ctf_field_variant_serialize, [CTF_TYPE_ARRAY] = bt_ctf_field_array_serialize, [CTF_TYPE_SEQUENCE] = bt_ctf_field_sequence_serialize, [CTF_TYPE_STRING] = bt_ctf_field_string_serialize, }; struct bt_ctf_field *bt_ctf_field_create(struct bt_ctf_field_type *type) { struct bt_ctf_field *field = NULL; enum ctf_type_id type_id; if (!type) { goto error; } type_id = bt_ctf_field_type_get_type_id(type); if (type_id <= CTF_TYPE_UNKNOWN || type_id >= NR_CTF_TYPES || bt_ctf_field_type_validate(type)) { goto error; } field = field_create_funcs[type_id](type); if (!field) { goto error; } /* The type's declaration can't change after this point */ bt_ctf_field_type_freeze(type); bt_ctf_field_type_get(type); bt_ctf_ref_init(&field->ref_count); field->type = type; error: return field; } void bt_ctf_field_get(struct bt_ctf_field *field) { if (field) { bt_ctf_ref_get(&field->ref_count); } } void bt_ctf_field_put(struct bt_ctf_field *field) { if (field) { bt_ctf_ref_put(&field->ref_count, bt_ctf_field_destroy); } } int bt_ctf_field_sequence_set_length(struct bt_ctf_field *field, struct bt_ctf_field *length_field) { int ret = 0; struct bt_ctf_field_type_integer *length_type; struct bt_ctf_field_integer *length; struct bt_ctf_field_sequence *sequence; uint64_t sequence_length; if (!field || !length_field) { ret = -1; goto end; } if (bt_ctf_field_type_get_type_id(length_field->type) != CTF_TYPE_INTEGER) { ret = -1; goto end; } length_type = container_of(length_field->type, struct bt_ctf_field_type_integer, parent); if (length_type->declaration.signedness) { ret = -1; goto end; } length = container_of(length_field, struct bt_ctf_field_integer, parent); sequence_length = length->definition.value._unsigned; sequence = container_of(field, struct bt_ctf_field_sequence, parent); if (sequence->elements) { g_ptr_array_free(sequence->elements, TRUE); bt_ctf_field_put(sequence->length); } sequence->elements = g_ptr_array_sized_new((size_t)sequence_length); if (!sequence->elements) { ret = -1; goto end; } g_ptr_array_set_free_func(sequence->elements, (GDestroyNotify)bt_ctf_field_put); g_ptr_array_set_size(sequence->elements, (size_t)sequence_length); bt_ctf_field_get(length_field); sequence->length = length_field; end: return ret; } struct bt_ctf_field *bt_ctf_field_structure_get_field( struct bt_ctf_field *field, const char *name) { struct bt_ctf_field *new_field = NULL; GQuark field_quark; struct bt_ctf_field_structure *structure; struct bt_ctf_field_type_structure *structure_type; struct bt_ctf_field_type *field_type; size_t index; if (!field || !name || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_STRUCT) { goto error; } field_quark = g_quark_from_string(name); structure = container_of(field, struct bt_ctf_field_structure, parent); structure_type = container_of(field->type, struct bt_ctf_field_type_structure, parent); field_type = bt_ctf_field_type_structure_get_type(structure_type, name); if (!g_hash_table_lookup_extended(structure->field_name_to_index, GUINT_TO_POINTER(field_quark), NULL, (gpointer *)&index)) { goto error; } if (structure->fields->pdata[index]) { new_field = structure->fields->pdata[index]; goto end; } new_field = bt_ctf_field_create(field_type); if (!new_field) { goto error; } structure->fields->pdata[index] = new_field; end: bt_ctf_field_get(new_field); error: return new_field; } BT_HIDDEN int bt_ctf_field_structure_set_field(struct bt_ctf_field *field, const char *name, struct bt_ctf_field *value) { int ret = 0; GQuark field_quark; struct bt_ctf_field_structure *structure; struct bt_ctf_field_type_structure *structure_type; struct bt_ctf_field_type *expected_field_type; size_t index; if (!field || !name || !value || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_STRUCT) { ret = -1; goto end; } field_quark = g_quark_from_string(name); structure = container_of(field, struct bt_ctf_field_structure, parent); structure_type = container_of(field->type, struct bt_ctf_field_type_structure, parent); expected_field_type = bt_ctf_field_type_structure_get_type( structure_type, name); if (expected_field_type != value->type) { ret = -1; goto end; } if (!g_hash_table_lookup_extended(structure->field_name_to_index, GUINT_TO_POINTER(field_quark), NULL, (gpointer *) &index)) { goto end; } if (structure->fields->pdata[index]) { bt_ctf_field_put(structure->fields->pdata[index]); } structure->fields->pdata[index] = value; bt_ctf_field_get(value); end: return ret; } struct bt_ctf_field *bt_ctf_field_array_get_field(struct bt_ctf_field *field, uint64_t index) { struct bt_ctf_field *new_field = NULL; struct bt_ctf_field_array *array; struct bt_ctf_field_type_array *array_type; struct bt_ctf_field_type *field_type; if (!field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_ARRAY) { goto end; } array = container_of(field, struct bt_ctf_field_array, parent); if (index >= array->elements->len) { goto end; } array_type = container_of(field->type, struct bt_ctf_field_type_array, parent); field_type = bt_ctf_field_type_array_get_element_type(array_type); if (array->elements->pdata[(size_t)index]) { new_field = array->elements->pdata[(size_t)index]; goto end; } new_field = bt_ctf_field_create(field_type); bt_ctf_field_get(new_field); array->elements->pdata[(size_t)index] = new_field; end: return new_field; } struct bt_ctf_field *bt_ctf_field_sequence_get_field(struct bt_ctf_field *field, uint64_t index) { struct bt_ctf_field *new_field = NULL; struct bt_ctf_field_sequence *sequence; struct bt_ctf_field_type_sequence *sequence_type; struct bt_ctf_field_type *field_type; if (!field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_SEQUENCE) { goto end; } sequence = container_of(field, struct bt_ctf_field_sequence, parent); if (!sequence->elements || sequence->elements->len <= index) { goto end; } sequence_type = container_of(field->type, struct bt_ctf_field_type_sequence, parent); field_type = bt_ctf_field_type_sequence_get_element_type(sequence_type); if (sequence->elements->pdata[(size_t)index]) { new_field = sequence->elements->pdata[(size_t)index]; goto end; } new_field = bt_ctf_field_create(field_type); bt_ctf_field_get(new_field); sequence->elements->pdata[(size_t)index] = new_field; end: return new_field; } struct bt_ctf_field *bt_ctf_field_variant_get_field(struct bt_ctf_field *field, struct bt_ctf_field *tag_field) { struct bt_ctf_field *new_field = NULL; struct bt_ctf_field_variant *variant; struct bt_ctf_field_type_variant *variant_type; struct bt_ctf_field_type *field_type; struct bt_ctf_field *tag_enum = NULL; struct bt_ctf_field_integer *tag_enum_integer; int64_t tag_enum_value; if (!field || !tag_field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_VARIANT || bt_ctf_field_type_get_type_id(tag_field->type) != CTF_TYPE_ENUM) { goto end; } variant = container_of(field, struct bt_ctf_field_variant, parent); variant_type = container_of(field->type, struct bt_ctf_field_type_variant, parent); tag_enum = bt_ctf_field_enumeration_get_container(tag_field); if (!tag_enum) { goto end; } tag_enum_integer = container_of(tag_enum, struct bt_ctf_field_integer, parent); if (!bt_ctf_field_validate(variant->tag)) { goto end; } tag_enum_value = tag_enum_integer->definition.value._signed; field_type = bt_ctf_field_type_variant_get_field_type(variant_type, tag_enum_value); if (!field_type) { goto end; } new_field = bt_ctf_field_create(field_type); if (!new_field) { goto end; } bt_ctf_field_put(variant->tag); bt_ctf_field_put(variant->payload); bt_ctf_field_get(new_field); bt_ctf_field_get(tag_field); variant->tag = tag_field; variant->payload = new_field; end: bt_ctf_field_put(tag_enum); return new_field; } struct bt_ctf_field *bt_ctf_field_enumeration_get_container( struct bt_ctf_field *field) { struct bt_ctf_field *container = NULL; struct bt_ctf_field_enumeration *enumeration; if (!field) { goto end; } enumeration = container_of(field, struct bt_ctf_field_enumeration, parent); if (!enumeration->payload) { struct bt_ctf_field_type_enumeration *enumeration_type = container_of(field->type, struct bt_ctf_field_type_enumeration, parent); enumeration->payload = bt_ctf_field_create(enumeration_type->container); } container = enumeration->payload; bt_ctf_field_get(container); end: return container; } int bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *field, int64_t value) { int ret = 0; struct bt_ctf_field_integer *integer; struct bt_ctf_field_type_integer *integer_type; unsigned int size; int64_t min_value, max_value; if (!field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_INTEGER) { ret = -1; goto end; } integer = container_of(field, struct bt_ctf_field_integer, parent); integer_type = container_of(field->type, struct bt_ctf_field_type_integer, parent); if (!integer_type->declaration.signedness) { ret = -1; goto end; } size = integer_type->declaration.len; min_value = -((int64_t)1 << (size - 1)); max_value = ((int64_t)1 << (size - 1)) - 1; if (value < min_value || value > max_value) { ret = -1; goto end; } integer->definition.value._signed = value; integer->parent.payload_set = 1; end: return ret; } int bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *field, uint64_t value) { int ret = 0; struct bt_ctf_field_integer *integer; struct bt_ctf_field_type_integer *integer_type; unsigned int size; uint64_t max_value; if (!field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_INTEGER) { ret = -1; goto end; } integer = container_of(field, struct bt_ctf_field_integer, parent); integer_type = container_of(field->type, struct bt_ctf_field_type_integer, parent); if (integer_type->declaration.signedness) { ret = -1; goto end; } size = integer_type->declaration.len; max_value = (size == 64) ? UINT64_MAX : ((uint64_t)1 << size) - 1; if (value > max_value) { ret = -1; goto end; } integer->definition.value._unsigned = value; integer->parent.payload_set = 1; end: return ret; } int bt_ctf_field_floating_point_set_value(struct bt_ctf_field *field, double value) { int ret = 0; struct bt_ctf_field_floating_point *floating_point; if (!field || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_FLOAT) { ret = -1; goto end; } floating_point = container_of(field, struct bt_ctf_field_floating_point, parent); floating_point->definition.value = value; floating_point->parent.payload_set = 1; end: return ret; } int bt_ctf_field_string_set_value(struct bt_ctf_field *field, const char *value) { int ret = 0; struct bt_ctf_field_string *string; if (!field || !value || bt_ctf_field_type_get_type_id(field->type) != CTF_TYPE_STRING) { ret = -1; goto end; } string = container_of(field, struct bt_ctf_field_string, parent); if (string->payload) { g_string_free(string->payload, TRUE); } string->payload = g_string_new(value); string->parent.payload_set = 1; end: return ret; } BT_HIDDEN int bt_ctf_field_validate(struct bt_ctf_field *field) { int ret = 0; enum ctf_type_id type_id; if (!field) { ret = -1; goto end; } type_id = bt_ctf_field_type_get_type_id(field->type); if (type_id <= CTF_TYPE_UNKNOWN || type_id >= NR_CTF_TYPES) { ret = -1; goto end; } ret = field_validate_funcs[type_id](field); end: return ret; } BT_HIDDEN int bt_ctf_field_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { int ret = 0; enum ctf_type_id type_id; if (!field || !pos) { ret = -1; goto end; } type_id = bt_ctf_field_type_get_type_id(field->type); if (type_id <= CTF_TYPE_UNKNOWN || type_id >= NR_CTF_TYPES) { ret = -1; goto end; } ret = field_serialize_funcs[type_id](field, pos); end: return ret; } static struct bt_ctf_field *bt_ctf_field_integer_create(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_integer *integer_type = container_of(type, struct bt_ctf_field_type_integer, parent); struct bt_ctf_field_integer *integer = g_new0( struct bt_ctf_field_integer, 1); if (integer) { integer->definition.declaration = &integer_type->declaration; } return integer ? &integer->parent : NULL; } static struct bt_ctf_field *bt_ctf_field_enumeration_create( struct bt_ctf_field_type *type) { struct bt_ctf_field_enumeration *enumeration = g_new0( struct bt_ctf_field_enumeration, 1); return enumeration ? &enumeration->parent : NULL; } static struct bt_ctf_field *bt_ctf_field_floating_point_create( struct bt_ctf_field_type *type) { struct bt_ctf_field_floating_point *floating_point; struct bt_ctf_field_type_floating_point *floating_point_type; floating_point = g_new0(struct bt_ctf_field_floating_point, 1); if (!floating_point) { goto end; } floating_point_type = container_of(type, struct bt_ctf_field_type_floating_point, parent); floating_point->definition.declaration = container_of( type->declaration, struct declaration_float, p); floating_point->definition.sign = &floating_point->sign; floating_point->sign.declaration = &floating_point_type->sign; floating_point->definition.sign->p.declaration = &floating_point_type->sign.p; floating_point->definition.mantissa = &floating_point->mantissa; floating_point->mantissa.declaration = &floating_point_type->mantissa; floating_point->definition.mantissa->p.declaration = &floating_point_type->mantissa.p; floating_point->definition.exp = &floating_point->exp; floating_point->exp.declaration = &floating_point_type->exp; floating_point->definition.exp->p.declaration = &floating_point_type->exp.p; end: return floating_point ? &floating_point->parent : NULL; } static struct bt_ctf_field *bt_ctf_field_structure_create( struct bt_ctf_field_type *type) { struct bt_ctf_field_type_structure *structure_type = container_of(type, struct bt_ctf_field_type_structure, parent); struct bt_ctf_field_structure *structure = g_new0( struct bt_ctf_field_structure, 1); struct bt_ctf_field *field = NULL; if (!structure || !structure_type->fields->len) { goto end; } structure->field_name_to_index = structure_type->field_name_to_index; structure->fields = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_field_put); g_ptr_array_set_size(structure->fields, g_hash_table_size(structure->field_name_to_index)); field = &structure->parent; end: return field; } static struct bt_ctf_field *bt_ctf_field_variant_create(struct bt_ctf_field_type *type) { struct bt_ctf_field_variant *variant = g_new0( struct bt_ctf_field_variant, 1); return variant ? &variant->parent : NULL; } static struct bt_ctf_field *bt_ctf_field_array_create(struct bt_ctf_field_type *type) { struct bt_ctf_field_array *array = g_new0(struct bt_ctf_field_array, 1); struct bt_ctf_field_type_array *array_type; unsigned int array_length; if (!array || !type) { goto error; } array_type = container_of(type, struct bt_ctf_field_type_array, parent); array_length = array_type->length; array->elements = g_ptr_array_sized_new(array_length); if (!array->elements) { goto error; } g_ptr_array_set_free_func(array->elements, (GDestroyNotify)bt_ctf_field_put); g_ptr_array_set_size(array->elements, array_length); return &array->parent; error: g_free(array); return NULL; } static struct bt_ctf_field *bt_ctf_field_sequence_create( struct bt_ctf_field_type *type) { struct bt_ctf_field_sequence *sequence = g_new0( struct bt_ctf_field_sequence, 1); return sequence ? &sequence->parent : NULL; } static struct bt_ctf_field *bt_ctf_field_string_create(struct bt_ctf_field_type *type) { struct bt_ctf_field_string *string = g_new0( struct bt_ctf_field_string, 1); return string ? &string->parent : NULL; } static void bt_ctf_field_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field *field; struct bt_ctf_field_type *type; enum ctf_type_id type_id; if (!ref) { return; } field = container_of(ref, struct bt_ctf_field, ref_count); type = field->type; type_id = bt_ctf_field_type_get_type_id(type); if (type_id <= CTF_TYPE_UNKNOWN || type_id >= NR_CTF_TYPES) { return; } field_destroy_funcs[type_id](field); if (type) { bt_ctf_field_type_put(type); } } static void bt_ctf_field_integer_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_integer *integer; if (!field) { return; } integer = container_of(field, struct bt_ctf_field_integer, parent); g_free(integer); } static void bt_ctf_field_enumeration_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_enumeration *enumeration; if (!field) { return; } enumeration = container_of(field, struct bt_ctf_field_enumeration, parent); bt_ctf_field_put(enumeration->payload); g_free(enumeration); } static void bt_ctf_field_floating_point_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_floating_point *floating_point; if (!field) { return; } floating_point = container_of(field, struct bt_ctf_field_floating_point, parent); g_free(floating_point); } static void bt_ctf_field_structure_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_structure *structure; if (!field) { return; } structure = container_of(field, struct bt_ctf_field_structure, parent); g_ptr_array_free(structure->fields, TRUE); g_free(structure); } static void bt_ctf_field_variant_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_variant *variant; if (!field) { return; } variant = container_of(field, struct bt_ctf_field_variant, parent); bt_ctf_field_put(variant->tag); bt_ctf_field_put(variant->payload); g_free(variant); } static void bt_ctf_field_array_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_array *array; if (!field) { return; } array = container_of(field, struct bt_ctf_field_array, parent); g_ptr_array_free(array->elements, TRUE); g_free(array); } static void bt_ctf_field_sequence_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_sequence *sequence; if (!field) { return; } sequence = container_of(field, struct bt_ctf_field_sequence, parent); g_ptr_array_free(sequence->elements, TRUE); bt_ctf_field_put(sequence->length); g_free(sequence); } static void bt_ctf_field_string_destroy(struct bt_ctf_field *field) { struct bt_ctf_field_string *string; if (!field) { return; } string = container_of(field, struct bt_ctf_field_string, parent); g_string_free(string->payload, TRUE); g_free(string); } static int bt_ctf_field_generic_validate(struct bt_ctf_field *field) { return (field && field->payload_set) ? 0 : -1; } static int bt_ctf_field_enumeration_validate(struct bt_ctf_field *field) { int ret; struct bt_ctf_field_enumeration *enumeration; if (!field) { ret = -1; goto end; } enumeration = container_of(field, struct bt_ctf_field_enumeration, parent); if (!enumeration->payload) { ret = -1; goto end; } ret = bt_ctf_field_validate(enumeration->payload); end: return ret; } static int bt_ctf_field_structure_validate(struct bt_ctf_field *field) { size_t i; int ret = 0; struct bt_ctf_field_structure *structure; if (!field) { ret = -1; goto end; } structure = container_of(field, struct bt_ctf_field_structure, parent); for (i = 0; i < structure->fields->len; i++) { ret = bt_ctf_field_validate(structure->fields->pdata[i]); if (ret) { goto end; } } end: return ret; } static int bt_ctf_field_variant_validate(struct bt_ctf_field *field) { int ret = 0; struct bt_ctf_field_variant *variant; if (!field) { ret = -1; goto end; } variant = container_of(field, struct bt_ctf_field_variant, parent); ret = bt_ctf_field_validate(variant->payload); end: return ret; } static int bt_ctf_field_array_validate(struct bt_ctf_field *field) { size_t i; int ret = 0; struct bt_ctf_field_array *array; if (!field) { ret = -1; goto end; } array = container_of(field, struct bt_ctf_field_array, parent); for (i = 0; i < array->elements->len; i++) { ret = bt_ctf_field_validate(array->elements->pdata[i]); if (ret) { goto end; } } end: return ret; } static int bt_ctf_field_sequence_validate(struct bt_ctf_field *field) { size_t i; int ret = 0; struct bt_ctf_field_sequence *sequence; if (!field) { ret = -1; goto end; } sequence = container_of(field, struct bt_ctf_field_sequence, parent); for (i = 0; i < sequence->elements->len; i++) { ret = bt_ctf_field_validate(sequence->elements->pdata[i]); if (ret) { goto end; } } end: return ret; } static int bt_ctf_field_integer_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { int ret = 0; struct bt_ctf_field_integer *integer = container_of(field, struct bt_ctf_field_integer, parent); retry: ret = ctf_integer_write(&pos->parent, &integer->definition.p); if (ret == -EFAULT) { /* * The field is too large to fit in the current packet's * remaining space. Bump the packet size and retry. */ ret = increase_packet_size(pos); if (ret) { goto end; } goto retry; } end: return ret; } static int bt_ctf_field_enumeration_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { struct bt_ctf_field_enumeration *enumeration = container_of( field, struct bt_ctf_field_enumeration, parent); return bt_ctf_field_serialize(enumeration->payload, pos); } static int bt_ctf_field_floating_point_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { int ret = 0; struct bt_ctf_field_floating_point *floating_point = container_of(field, struct bt_ctf_field_floating_point, parent); retry: ret = ctf_float_write(&pos->parent, &floating_point->definition.p); if (ret == -EFAULT) { /* * The field is too large to fit in the current packet's * remaining space. Bump the packet size and retry. */ ret = increase_packet_size(pos); if (ret) { goto end; } goto retry; } end: return ret; } static int bt_ctf_field_structure_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { size_t i; int ret = 0; struct bt_ctf_field_structure *structure = container_of( field, struct bt_ctf_field_structure, parent); while (!ctf_pos_access_ok(pos, offset_align(pos->offset, field->type->declaration->alignment))) { ret = increase_packet_size(pos); if (ret) { goto end; } } if (!ctf_align_pos(pos, field->type->declaration->alignment)) { ret = -1; goto end; } for (i = 0; i < structure->fields->len; i++) { struct bt_ctf_field *field = g_ptr_array_index( structure->fields, i); ret = bt_ctf_field_serialize(field, pos); if (ret) { break; } } end: return ret; } static int bt_ctf_field_variant_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { struct bt_ctf_field_variant *variant = container_of( field, struct bt_ctf_field_variant, parent); return bt_ctf_field_serialize(variant->payload, pos); } static int bt_ctf_field_array_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { size_t i; int ret = 0; struct bt_ctf_field_array *array = container_of( field, struct bt_ctf_field_array, parent); for (i = 0; i < array->elements->len; i++) { ret = bt_ctf_field_serialize( g_ptr_array_index(array->elements, i), pos); if (ret) { goto end; } } end: return ret; } static int bt_ctf_field_sequence_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { size_t i; int ret = 0; struct bt_ctf_field_sequence *sequence = container_of( field, struct bt_ctf_field_sequence, parent); for (i = 0; i < sequence->elements->len; i++) { ret = bt_ctf_field_serialize( g_ptr_array_index(sequence->elements, i), pos); if (ret) { goto end; } } end: return ret; } static int bt_ctf_field_string_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos) { size_t i; int ret = 0; struct bt_ctf_field_string *string = container_of(field, struct bt_ctf_field_string, parent); struct bt_ctf_field_type *character_type = get_field_type(FIELD_TYPE_ALIAS_UINT8_T); struct bt_ctf_field *character = bt_ctf_field_create(character_type); for (i = 0; i < string->payload->len + 1; i++) { ret = bt_ctf_field_unsigned_integer_set_value(character, (uint64_t) string->payload->str[i]); if (ret) { goto end; } ret = bt_ctf_field_integer_serialize(character, pos); if (ret) { goto end; } } end: bt_ctf_field_put(character); bt_ctf_field_type_put(character_type); return ret; } static int increase_packet_size(struct ctf_stream_pos *pos) { int ret; assert(pos); ret = munmap_align(pos->base_mma); if (ret) { goto end; } pos->packet_size += PACKET_LEN_INCREMENT; ret = posix_fallocate(pos->fd, pos->mmap_offset, pos->packet_size / CHAR_BIT); if (ret) { goto end; } pos->base_mma = mmap_align(pos->packet_size / CHAR_BIT, pos->prot, pos->flags, pos->fd, pos->mmap_offset); if (pos->base_mma == MAP_FAILED) { ret = -1; } end: return ret; } babeltrace-1.2.1/formats/ctf/writer/Makefile.in0000644000175000017500000004306612306621104016334 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ @BABELTRACE_BUILD_WITH_LIBUUID_TRUE@am__append_1 = -luuid @BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE@am__append_2 = -lc subdir = formats/ctf/writer DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = libctf_writer_la_DEPENDENCIES = $(top_builddir)/lib/libbabeltrace.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am_libctf_writer_la_OBJECTS = writer.lo clock.lo stream.lo \ event-types.lo event-fields.lo event.lo functor.lo libctf_writer_la_OBJECTS = $(am_libctf_writer_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libctf_writer_la_SOURCES) DIST_SOURCES = $(libctf_writer_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-writer.la libctf_writer_la_SOURCES = \ writer.c \ clock.c \ stream.c \ event-types.c \ event-fields.c \ event.c \ functor.c libctf_writer_la_LIBADD = $(top_builddir)/lib/libbabeltrace.la \ $(am__append_1) $(am__append_2) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf/writer/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf/writer/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libctf-writer.la: $(libctf_writer_la_OBJECTS) $(libctf_writer_la_DEPENDENCIES) $(EXTRA_libctf_writer_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libctf_writer_la_OBJECTS) $(libctf_writer_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clock.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-fields.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-types.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/functor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stream.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/writer.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf/writer/event-types.c0000644000175000017500000011114412304150543016711 00000000000000/* * event-types.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include struct range_overlap_query { int64_t range_start, range_end; int overlaps; GQuark mapping_name; }; static void bt_ctf_field_type_integer_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_enumeration_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_floating_point_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_structure_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_variant_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_array_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_sequence_destroy(struct bt_ctf_ref *); static void bt_ctf_field_type_string_destroy(struct bt_ctf_ref *); static void (* const type_destroy_funcs[])(struct bt_ctf_ref *) = { [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_destroy, [CTF_TYPE_ENUM] = bt_ctf_field_type_enumeration_destroy, [CTF_TYPE_FLOAT] = bt_ctf_field_type_floating_point_destroy, [CTF_TYPE_STRUCT] = bt_ctf_field_type_structure_destroy, [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_destroy, [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_destroy, [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_destroy, [CTF_TYPE_STRING] = bt_ctf_field_type_string_destroy, }; static void generic_field_type_freeze(struct bt_ctf_field_type *); static void bt_ctf_field_type_enumeration_freeze(struct bt_ctf_field_type *); static void bt_ctf_field_type_structure_freeze(struct bt_ctf_field_type *); static void bt_ctf_field_type_variant_freeze(struct bt_ctf_field_type *); static void bt_ctf_field_type_array_freeze(struct bt_ctf_field_type *); static void bt_ctf_field_type_sequence_freeze(struct bt_ctf_field_type *); static type_freeze_func const type_freeze_funcs[] = { [CTF_TYPE_INTEGER] = generic_field_type_freeze, [CTF_TYPE_ENUM] = bt_ctf_field_type_enumeration_freeze, [CTF_TYPE_FLOAT] = generic_field_type_freeze, [CTF_TYPE_STRUCT] = bt_ctf_field_type_structure_freeze, [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_freeze, [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_freeze, [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_freeze, [CTF_TYPE_STRING] = generic_field_type_freeze, }; static int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_floating_point_serialize( struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_variant_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_array_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_sequence_serialize(struct bt_ctf_field_type *, struct metadata_context *); static int bt_ctf_field_type_string_serialize(struct bt_ctf_field_type *, struct metadata_context *); static type_serialize_func const type_serialize_funcs[] = { [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_serialize, [CTF_TYPE_ENUM] = bt_ctf_field_type_enumeration_serialize, [CTF_TYPE_FLOAT] = bt_ctf_field_type_floating_point_serialize, [CTF_TYPE_STRUCT] = bt_ctf_field_type_structure_serialize, [CTF_TYPE_VARIANT] = bt_ctf_field_type_variant_serialize, [CTF_TYPE_ARRAY] = bt_ctf_field_type_array_serialize, [CTF_TYPE_SEQUENCE] = bt_ctf_field_type_sequence_serialize, [CTF_TYPE_STRING] = bt_ctf_field_type_string_serialize, }; static void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *, int byte_order); static void bt_ctf_field_type_floating_point_set_byte_order( struct bt_ctf_field_type *, int byte_order); static void (* const set_byte_order_funcs[])(struct bt_ctf_field_type *, int) = { [CTF_TYPE_INTEGER] = bt_ctf_field_type_integer_set_byte_order, [CTF_TYPE_FLOAT] = bt_ctf_field_type_floating_point_set_byte_order, [CTF_TYPE_ENUM ... CTF_TYPE_SEQUENCE] = NULL, }; static void destroy_enumeration_mapping(struct enumeration_mapping *mapping) { g_free(mapping); } static void destroy_structure_field(struct structure_field *field) { if (field->type) { bt_ctf_field_type_put(field->type); } g_free(field); } static void check_ranges_overlap(gpointer element, gpointer query) { struct enumeration_mapping *mapping = element; struct range_overlap_query *overlap_query = query; if (mapping->range_start <= overlap_query->range_end && overlap_query->range_start <= mapping->range_end) { overlap_query->overlaps = 1; overlap_query->mapping_name = mapping->string; } overlap_query->overlaps |= mapping->string == overlap_query->mapping_name; } static void bt_ctf_field_type_init(struct bt_ctf_field_type *type) { enum ctf_type_id type_id = type->declaration->id; int ret; assert(type && (type_id > CTF_TYPE_UNKNOWN) && (type_id < NR_CTF_TYPES)); bt_ctf_ref_init(&type->ref_count); type->freeze = type_freeze_funcs[type_id]; type->serialize = type_serialize_funcs[type_id]; ret = bt_ctf_field_type_set_byte_order(type, BT_CTF_BYTE_ORDER_NATIVE); assert(!ret); type->declaration->alignment = 1; } static int add_structure_field(GPtrArray *fields, GHashTable *field_name_to_index, struct bt_ctf_field_type *field_type, const char *field_name) { int ret = 0; GQuark name_quark = g_quark_from_string(field_name); struct structure_field *field; /* Make sure structure does not contain a field of the same name */ if (g_hash_table_lookup_extended(field_name_to_index, GUINT_TO_POINTER(name_quark), NULL, NULL)) { ret = -1; goto end; } field = g_new0(struct structure_field, 1); if (!field) { ret = -1; goto end; } bt_ctf_field_type_get(field_type); field->name = name_quark; field->type = field_type; g_hash_table_insert(field_name_to_index, (gpointer) (unsigned long) name_quark, (gpointer) (unsigned long) fields->len); g_ptr_array_add(fields, field); bt_ctf_field_type_freeze(field_type); end: return ret; } BT_HIDDEN int bt_ctf_field_type_validate(struct bt_ctf_field_type *type) { int ret = 0; if (!type) { ret = -1; goto end; } if (type->declaration->id == CTF_TYPE_ENUM) { struct bt_ctf_field_type_enumeration *enumeration = container_of(type, struct bt_ctf_field_type_enumeration, parent); ret = enumeration->entries->len ? 0 : -1; } end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_integer_create(unsigned int size) { struct bt_ctf_field_type_integer *integer = g_new0(struct bt_ctf_field_type_integer, 1); if (!integer || size > 64) { return NULL; } integer->parent.declaration = &integer->declaration.p; integer->parent.declaration->id = CTF_TYPE_INTEGER; integer->declaration.len = size; integer->declaration.base = BT_CTF_INTEGER_BASE_DECIMAL; integer->declaration.encoding = CTF_STRING_NONE; bt_ctf_field_type_init(&integer->parent); return &integer->parent; } int bt_ctf_field_type_integer_set_signed(struct bt_ctf_field_type *type, int is_signed) { int ret = 0; struct bt_ctf_field_type_integer *integer; if (!type || type->frozen || type->declaration->id != CTF_TYPE_INTEGER) { ret = -1; goto end; } integer = container_of(type, struct bt_ctf_field_type_integer, parent); if (is_signed && integer->declaration.len <= 1) { ret = -1; goto end; } integer->declaration.signedness = !!is_signed; end: return ret; } int bt_ctf_field_type_integer_set_base(struct bt_ctf_field_type *type, enum bt_ctf_integer_base base) { int ret = 0; if (!type || type->frozen || type->declaration->id != CTF_TYPE_INTEGER) { ret = -1; goto end; } switch (base) { case BT_CTF_INTEGER_BASE_BINARY: case BT_CTF_INTEGER_BASE_OCTAL: case BT_CTF_INTEGER_BASE_DECIMAL: case BT_CTF_INTEGER_BASE_HEXADECIMAL: { struct bt_ctf_field_type_integer *integer = container_of(type, struct bt_ctf_field_type_integer, parent); integer->declaration.base = base; break; } default: ret = -1; } end: return ret; } int bt_ctf_field_type_integer_set_encoding(struct bt_ctf_field_type *type, enum ctf_string_encoding encoding) { int ret = 0; struct bt_ctf_field_type_integer *integer; if (!type || type->frozen || (type->declaration->id != CTF_TYPE_INTEGER) || (encoding < CTF_STRING_NONE) || (encoding >= CTF_STRING_UNKNOWN)) { ret = -1; goto end; } integer = container_of(type, struct bt_ctf_field_type_integer, parent); integer->declaration.encoding = encoding; end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create( struct bt_ctf_field_type *integer_container_type) { struct bt_ctf_field_type_enumeration *enumeration = NULL; if (!integer_container_type) { goto error; } enumeration = g_new0(struct bt_ctf_field_type_enumeration, 1); if (!enumeration) { goto error; } enumeration->parent.declaration = &enumeration->declaration.p; enumeration->parent.declaration->id = CTF_TYPE_ENUM; bt_ctf_field_type_get(integer_container_type); enumeration->container = integer_container_type; enumeration->entries = g_ptr_array_new_with_free_func( (GDestroyNotify)destroy_enumeration_mapping); bt_ctf_field_type_init(&enumeration->parent); return &enumeration->parent; error: g_free(enumeration); return NULL; } int bt_ctf_field_type_enumeration_add_mapping( struct bt_ctf_field_type *type, const char *string, int64_t range_start, int64_t range_end) { int ret = 0; GQuark mapping_name; struct enumeration_mapping *mapping; struct bt_ctf_field_type_enumeration *enumeration; struct range_overlap_query query; char *escaped_string; if (!type || (type->declaration->id != CTF_TYPE_ENUM) || type->frozen || (range_end < range_start)) { ret = -1; goto end; } if (!string || strlen(string) == 0) { ret = -1; goto end; } escaped_string = g_strescape(string, NULL); if (!escaped_string) { ret = -1; goto end; } mapping_name = g_quark_from_string(escaped_string); query = (struct range_overlap_query) { .range_start = range_start, .range_end = range_end, .mapping_name = mapping_name, .overlaps = 0 }; enumeration = container_of(type, struct bt_ctf_field_type_enumeration, parent); /* Check that the range does not overlap with one already present */ g_ptr_array_foreach(enumeration->entries, check_ranges_overlap, &query); if (query.overlaps) { ret = -1; goto error_free; } mapping = g_new(struct enumeration_mapping, 1); if (!mapping) { ret = -1; goto error_free; } *mapping = (struct enumeration_mapping) {.range_start = range_start, .range_end = range_end, .string = mapping_name}; g_ptr_array_add(enumeration->entries, mapping); error_free: free(escaped_string); end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void) { struct bt_ctf_field_type_floating_point *floating_point = g_new0(struct bt_ctf_field_type_floating_point, 1); if (!floating_point) { goto end; } floating_point->declaration.sign = &floating_point->sign; floating_point->declaration.mantissa = &floating_point->mantissa; floating_point->declaration.exp = &floating_point->exp; floating_point->sign.len = 1; floating_point->parent.declaration = &floating_point->declaration.p; floating_point->parent.declaration->id = CTF_TYPE_FLOAT; floating_point->declaration.exp->len = sizeof(float) * CHAR_BIT - FLT_MANT_DIG; floating_point->declaration.mantissa->len = FLT_MANT_DIG - 1; floating_point->sign.p.alignment = 1; floating_point->mantissa.p.alignment = 1; floating_point->exp.p.alignment = 1; bt_ctf_field_type_init(&floating_point->parent); end: return floating_point ? &floating_point->parent : NULL; } int bt_ctf_field_type_floating_point_set_exponent_digits( struct bt_ctf_field_type *type, unsigned int exponent_digits) { int ret = 0; struct bt_ctf_field_type_floating_point *floating_point; if (!type || type->frozen || (type->declaration->id != CTF_TYPE_FLOAT)) { ret = -1; goto end; } floating_point = container_of(type, struct bt_ctf_field_type_floating_point, parent); if ((exponent_digits != sizeof(float) * CHAR_BIT - FLT_MANT_DIG) && (exponent_digits != sizeof(double) * CHAR_BIT - DBL_MANT_DIG) && (exponent_digits != sizeof(long double) * CHAR_BIT - LDBL_MANT_DIG)) { ret = -1; goto end; } floating_point->declaration.exp->len = exponent_digits; end: return ret; } int bt_ctf_field_type_floating_point_set_mantissa_digits( struct bt_ctf_field_type *type, unsigned int mantissa_digits) { int ret = 0; struct bt_ctf_field_type_floating_point *floating_point; if (!type || type->frozen || (type->declaration->id != CTF_TYPE_FLOAT)) { ret = -1; goto end; } floating_point = container_of(type, struct bt_ctf_field_type_floating_point, parent); if ((mantissa_digits != FLT_MANT_DIG) && (mantissa_digits != DBL_MANT_DIG) && (mantissa_digits != LDBL_MANT_DIG)) { ret = -1; goto end; } floating_point->declaration.mantissa->len = mantissa_digits - 1; end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void) { struct bt_ctf_field_type_structure *structure = g_new0(struct bt_ctf_field_type_structure, 1); if (!structure) { goto error; } structure->parent.declaration = &structure->declaration.p; structure->parent.declaration->id = CTF_TYPE_STRUCT; bt_ctf_field_type_init(&structure->parent); structure->fields = g_ptr_array_new_with_free_func( (GDestroyNotify)destroy_structure_field); structure->field_name_to_index = g_hash_table_new(NULL, NULL); return &structure->parent; error: return NULL; } int bt_ctf_field_type_structure_add_field(struct bt_ctf_field_type *type, struct bt_ctf_field_type *field_type, const char *field_name) { int ret = 0; struct bt_ctf_field_type_structure *structure; if (!type || !field_type || type->frozen || validate_identifier(field_name) || (type->declaration->id != CTF_TYPE_STRUCT) || bt_ctf_field_type_validate(field_type)) { goto end; } structure = container_of(type, struct bt_ctf_field_type_structure, parent); if (add_structure_field(structure->fields, structure->field_name_to_index, field_type, field_name)) { ret = -1; goto end; } if (type->declaration->alignment < field_type->declaration->alignment) { type->declaration->alignment = field_type->declaration->alignment; } end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_variant_create( struct bt_ctf_field_type *enum_tag, const char *tag_name) { struct bt_ctf_field_type_variant *variant = NULL; if (!enum_tag || validate_identifier(tag_name) || (enum_tag->declaration->id != CTF_TYPE_ENUM)) { goto error; } variant = g_new0(struct bt_ctf_field_type_variant, 1); if (!variant) { goto error; } variant->parent.declaration = &variant->declaration.p; variant->parent.declaration->id = CTF_TYPE_VARIANT; variant->tag_name = g_string_new(tag_name); bt_ctf_field_type_init(&variant->parent); variant->field_name_to_index = g_hash_table_new(NULL, NULL); variant->fields = g_ptr_array_new_with_free_func( (GDestroyNotify)destroy_structure_field); bt_ctf_field_type_get(enum_tag); variant->tag = container_of(enum_tag, struct bt_ctf_field_type_enumeration, parent); return &variant->parent; error: return NULL; } int bt_ctf_field_type_variant_add_field(struct bt_ctf_field_type *type, struct bt_ctf_field_type *field_type, const char *field_name) { size_t i; int ret = 0; int name_found = 0; struct bt_ctf_field_type_variant *variant; GQuark field_name_quark = g_quark_from_string(field_name); if (!type || !field_type || type->frozen || validate_identifier(field_name) || (type->declaration->id != CTF_TYPE_VARIANT) || bt_ctf_field_type_validate(field_type)) { ret = -1; goto end; } variant = container_of(type, struct bt_ctf_field_type_variant, parent); /* Make sure this name is present in the enum tag */ for (i = 0; i < variant->tag->entries->len; i++) { struct enumeration_mapping *mapping = g_ptr_array_index(variant->tag->entries, i); if (mapping->string == field_name_quark) { name_found = 1; break; } } if (!name_found || add_structure_field(variant->fields, variant->field_name_to_index, field_type, field_name)) { ret = -1; goto end; } end: return ret; } struct bt_ctf_field_type *bt_ctf_field_type_array_create( struct bt_ctf_field_type *element_type, unsigned int length) { struct bt_ctf_field_type_array *array = NULL; if (!element_type || length == 0 || bt_ctf_field_type_validate(element_type)) { goto error; } array = g_new0(struct bt_ctf_field_type_array, 1); if (!array) { goto error; } array->parent.declaration = &array->declaration.p; array->parent.declaration->id = CTF_TYPE_ARRAY; bt_ctf_field_type_init(&array->parent); bt_ctf_field_type_get(element_type); array->element_type = element_type; array->length = length; array->parent.declaration->alignment = element_type->declaration->alignment; return &array->parent; error: return NULL; } struct bt_ctf_field_type *bt_ctf_field_type_sequence_create( struct bt_ctf_field_type *element_type, const char *length_field_name) { struct bt_ctf_field_type_sequence *sequence = NULL; if (!element_type || validate_identifier(length_field_name) || bt_ctf_field_type_validate(element_type)) { goto error; } sequence = g_new0(struct bt_ctf_field_type_sequence, 1); if (!sequence) { goto error; } sequence->parent.declaration = &sequence->declaration.p; sequence->parent.declaration->id = CTF_TYPE_SEQUENCE; bt_ctf_field_type_init(&sequence->parent); bt_ctf_field_type_get(element_type); sequence->element_type = element_type; sequence->length_field_name = g_string_new(length_field_name); sequence->parent.declaration->alignment = element_type->declaration->alignment; return &sequence->parent; error: return NULL; } struct bt_ctf_field_type *bt_ctf_field_type_string_create(void) { struct bt_ctf_field_type_string *string = g_new0(struct bt_ctf_field_type_string, 1); if (!string) { return NULL; } string->parent.declaration = &string->declaration.p; string->parent.declaration->id = CTF_TYPE_STRING; bt_ctf_field_type_init(&string->parent); string->declaration.encoding = CTF_STRING_UTF8; string->parent.declaration->alignment = CHAR_BIT; return &string->parent; } int bt_ctf_field_type_string_set_encoding( struct bt_ctf_field_type *type, enum ctf_string_encoding encoding) { int ret = 0; struct bt_ctf_field_type_string *string; if (!type || type->declaration->id != CTF_TYPE_STRING || (encoding != CTF_STRING_UTF8 && encoding != CTF_STRING_ASCII)) { ret = -1; goto end; } string = container_of(type, struct bt_ctf_field_type_string, parent); string->declaration.encoding = encoding; end: return ret; } int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment) { int ret = 0; /* Alignment must be bit-aligned (1) or byte aligned */ if (!type || type->frozen || (alignment != 1 && (alignment & 0x7))) { ret = -1; goto end; } if (type->declaration->id == CTF_TYPE_STRING && alignment != CHAR_BIT) { ret = -1; goto end; } type->declaration->alignment = alignment; ret = 0; end: return ret; } int bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order) { int ret = 0; int internal_byte_order; enum ctf_type_id type_id; if (!type || type->frozen) { ret = -1; goto end; } type_id = type->declaration->id; switch (byte_order) { case BT_CTF_BYTE_ORDER_NATIVE: internal_byte_order = (G_BYTE_ORDER == G_LITTLE_ENDIAN ? LITTLE_ENDIAN : BIG_ENDIAN); break; case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN: internal_byte_order = LITTLE_ENDIAN; break; case BT_CTF_BYTE_ORDER_BIG_ENDIAN: case BT_CTF_BYTE_ORDER_NETWORK: internal_byte_order = BIG_ENDIAN; break; default: ret = -1; goto end; } if (set_byte_order_funcs[type_id]) { set_byte_order_funcs[type_id](type, internal_byte_order); } end: return ret; } void bt_ctf_field_type_get(struct bt_ctf_field_type *type) { if (!type) { return; } bt_ctf_ref_get(&type->ref_count); } void bt_ctf_field_type_put(struct bt_ctf_field_type *type) { enum ctf_type_id type_id; if (!type) { return; } type_id = type->declaration->id; assert(type_id > CTF_TYPE_UNKNOWN && type_id < NR_CTF_TYPES); bt_ctf_ref_put(&type->ref_count, type_destroy_funcs[type_id]); } BT_HIDDEN void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type) { if (!type) { return; } type->freeze(type); } BT_HIDDEN enum ctf_type_id bt_ctf_field_type_get_type_id( struct bt_ctf_field_type *type) { if (!type) { return CTF_TYPE_UNKNOWN; } return type->declaration->id; } BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_structure_get_type( struct bt_ctf_field_type_structure *structure, const char *name) { struct bt_ctf_field_type *type = NULL; struct structure_field *field; GQuark name_quark = g_quark_try_string(name); size_t index; if (!name_quark) { goto end; } if (!g_hash_table_lookup_extended(structure->field_name_to_index, GUINT_TO_POINTER(name_quark), NULL, (gpointer *)&index)) { goto end; } field = structure->fields->pdata[index]; type = field->type; end: return type; } BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_array_get_element_type( struct bt_ctf_field_type_array *array) { assert(array); return array->element_type; } BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_sequence_get_element_type( struct bt_ctf_field_type_sequence *sequence) { assert(sequence); return sequence->element_type; } BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type( struct bt_ctf_field_type_variant *variant, int64_t tag_value) { struct bt_ctf_field_type *type = NULL; GQuark field_name_quark; gpointer index; struct structure_field *field_entry; struct range_overlap_query query = {.range_start = tag_value, .range_end = tag_value, .mapping_name = 0, .overlaps = 0}; g_ptr_array_foreach(variant->tag->entries, check_ranges_overlap, &query); if (!query.overlaps) { goto end; } field_name_quark = query.mapping_name; if (!g_hash_table_lookup_extended(variant->field_name_to_index, GUINT_TO_POINTER(field_name_quark), NULL, &index)) { goto end; } field_entry = g_ptr_array_index(variant->fields, (size_t)index); type = field_entry->type; end: return type; } BT_HIDDEN int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { int ret; if (!type || !context) { ret = -1; goto end; } ret = type->serialize(type, context); end: return ret; } static void bt_ctf_field_type_integer_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_integer *integer; if (!ref) { return; } integer = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_integer, parent); g_free(integer); } static void bt_ctf_field_type_enumeration_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_enumeration *enumeration; if (!ref) { return; } enumeration = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_enumeration, parent); g_ptr_array_free(enumeration->entries, TRUE); bt_ctf_field_type_put(enumeration->container); g_free(enumeration); } static void bt_ctf_field_type_floating_point_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_floating_point *floating_point; if (!ref) { return; } floating_point = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_floating_point, parent); g_free(floating_point); } static void bt_ctf_field_type_structure_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_structure *structure; if (!ref) { return; } structure = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_structure, parent); g_ptr_array_free(structure->fields, TRUE); g_hash_table_destroy(structure->field_name_to_index); g_free(structure); } static void bt_ctf_field_type_variant_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_variant *variant; if (!ref) { return; } variant = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_variant, parent); g_ptr_array_free(variant->fields, TRUE); g_hash_table_destroy(variant->field_name_to_index); g_string_free(variant->tag_name, TRUE); bt_ctf_field_type_put(&variant->tag->parent); g_free(variant); } static void bt_ctf_field_type_array_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_array *array; if (!ref) { return; } array = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_array, parent); bt_ctf_field_type_put(array->element_type); g_free(array); } static void bt_ctf_field_type_sequence_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_sequence *sequence; if (!ref) { return; } sequence = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_sequence, parent); bt_ctf_field_type_put(sequence->element_type); g_string_free(sequence->length_field_name, TRUE); g_free(sequence); } static void bt_ctf_field_type_string_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_field_type_string *string; if (!ref) { return; } string = container_of( container_of(ref, struct bt_ctf_field_type, ref_count), struct bt_ctf_field_type_string, parent); g_free(string); } static void generic_field_type_freeze(struct bt_ctf_field_type *type) { type->frozen = 1; } static void bt_ctf_field_type_enumeration_freeze(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_enumeration *enumeration_type = container_of( type, struct bt_ctf_field_type_enumeration, parent); generic_field_type_freeze(type); bt_ctf_field_type_freeze(enumeration_type->container); } static void freeze_structure_field(struct structure_field *field) { bt_ctf_field_type_freeze(field->type); } static void bt_ctf_field_type_structure_freeze(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_structure *structure_type = container_of( type, struct bt_ctf_field_type_structure, parent); generic_field_type_freeze(type); g_ptr_array_foreach(structure_type->fields, (GFunc)freeze_structure_field, NULL); } static void bt_ctf_field_type_variant_freeze(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_variant *variant_type = container_of( type, struct bt_ctf_field_type_variant, parent); generic_field_type_freeze(type); g_ptr_array_foreach(variant_type->fields, (GFunc)freeze_structure_field, NULL); } static void bt_ctf_field_type_array_freeze(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_array *array_type = container_of( type, struct bt_ctf_field_type_array, parent); generic_field_type_freeze(type); bt_ctf_field_type_freeze(array_type->element_type); } static void bt_ctf_field_type_sequence_freeze(struct bt_ctf_field_type *type) { struct bt_ctf_field_type_sequence *sequence_type = container_of( type, struct bt_ctf_field_type_sequence, parent); generic_field_type_freeze(type); bt_ctf_field_type_freeze(sequence_type->element_type); } static const char *get_encoding_string(enum ctf_string_encoding encoding) { const char *encoding_string; switch (encoding) { case CTF_STRING_NONE: encoding_string = "none"; break; case CTF_STRING_ASCII: encoding_string = "ASCII"; break; case CTF_STRING_UTF8: encoding_string = "UTF8"; break; default: encoding_string = "unknown"; break; } return encoding_string; } static const char *get_integer_base_string(enum bt_ctf_integer_base base) { const char *base_string; switch (base) { case BT_CTF_INTEGER_BASE_DECIMAL: base_string = "decimal"; break; case BT_CTF_INTEGER_BASE_HEXADECIMAL: base_string = "hexadecimal"; break; case BT_CTF_INTEGER_BASE_OCTAL: base_string = "octal"; break; case BT_CTF_INTEGER_BASE_BINARY: base_string = "binary"; break; default: base_string = "unknown"; break; } return base_string; } static int bt_ctf_field_type_integer_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { struct bt_ctf_field_type_integer *integer = container_of(type, struct bt_ctf_field_type_integer, parent); g_string_append_printf(context->string, "integer { size = %zu; align = %zu; signed = %s; encoding = %s; base = %s; byte_order = %s; }", integer->declaration.len, type->declaration->alignment, (integer->declaration.signedness ? "true" : "false"), get_encoding_string(integer->declaration.encoding), get_integer_base_string(integer->declaration.base), get_byte_order_string(integer->declaration.byte_order)); return 0; } static int bt_ctf_field_type_enumeration_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { size_t entry; int ret; struct bt_ctf_field_type_enumeration *enumeration = container_of(type, struct bt_ctf_field_type_enumeration, parent); ret = bt_ctf_field_type_validate(type); if (ret) { goto end; } g_string_append(context->string, "enum : "); ret = bt_ctf_field_type_serialize(enumeration->container, context); if (ret) { goto end; } g_string_append(context->string, " { "); for (entry = 0; entry < enumeration->entries->len; entry++) { struct enumeration_mapping *mapping = enumeration->entries->pdata[entry]; if (mapping->range_start == mapping->range_end) { g_string_append_printf(context->string, "\"%s\" = %" PRId64, g_quark_to_string(mapping->string), mapping->range_start); } else { g_string_append_printf(context->string, "\"%s\" = %" PRId64 " ... %" PRId64, g_quark_to_string(mapping->string), mapping->range_start, mapping->range_end); } g_string_append(context->string, ((entry != (enumeration->entries->len - 1)) ? ", " : " }")); } if (context->field_name->len) { g_string_append_printf(context->string, " %s", context->field_name->str); g_string_assign(context->field_name, ""); } end: return ret; } static int bt_ctf_field_type_floating_point_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { struct bt_ctf_field_type_floating_point *floating_point = container_of( type, struct bt_ctf_field_type_floating_point, parent); g_string_append_printf(context->string, "floating_point { exp_dig = %zu; mant_dig = %zu; byte_order = %s; align = %zu; }", floating_point->declaration.exp->len, floating_point->declaration.mantissa->len + 1, get_byte_order_string(floating_point->declaration.byte_order), type->declaration->alignment); return 0; } static int bt_ctf_field_type_structure_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { size_t i; unsigned int indent; int ret = 0; struct bt_ctf_field_type_structure *structure = container_of(type, struct bt_ctf_field_type_structure, parent); GString *structure_field_name = context->field_name; context->field_name = g_string_new(""); context->current_indentation_level++; g_string_append(context->string, "struct {\n"); for (i = 0; i < structure->fields->len; i++) { struct structure_field *field; for (indent = 0; indent < context->current_indentation_level; indent++) { g_string_append_c(context->string, '\t'); } field = structure->fields->pdata[i]; g_string_assign(context->field_name, g_quark_to_string(field->name)); ret = bt_ctf_field_type_serialize(field->type, context); if (ret) { goto end; } if (context->field_name->len) { g_string_append_printf(context->string, " %s", context->field_name->str); } g_string_append(context->string, ";\n"); } context->current_indentation_level--; for (indent = 0; indent < context->current_indentation_level; indent++) { g_string_append_c(context->string, '\t'); } g_string_append_printf(context->string, "} align(%zu)", type->declaration->alignment); end: g_string_free(context->field_name, TRUE); context->field_name = structure_field_name; return ret; } static int bt_ctf_field_type_variant_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { size_t i; unsigned int indent; int ret = 0; struct bt_ctf_field_type_variant *variant = container_of( type, struct bt_ctf_field_type_variant, parent); GString *variant_field_name = context->field_name; context->field_name = g_string_new(""); g_string_append_printf(context->string, "variant <%s> {\n", variant->tag_name->str); context->current_indentation_level++; for (i = 0; i < variant->fields->len; i++) { struct structure_field *field = variant->fields->pdata[i]; g_string_assign(context->field_name, g_quark_to_string(field->name)); for (indent = 0; indent < context->current_indentation_level; indent++) { g_string_append_c(context->string, '\t'); } g_string_assign(context->field_name, g_quark_to_string(field->name)); ret = bt_ctf_field_type_serialize(field->type, context); if (ret) { goto end; } if (context->field_name->len) { g_string_append_printf(context->string, " %s;", context->field_name->str); } g_string_append_c(context->string, '\n'); } context->current_indentation_level--; for (indent = 0; indent < context->current_indentation_level; indent++) { g_string_append_c(context->string, '\t'); } g_string_append(context->string, "}"); end: g_string_free(context->field_name, TRUE); context->field_name = variant_field_name; return ret; } static int bt_ctf_field_type_array_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { int ret = 0; struct bt_ctf_field_type_array *array = container_of(type, struct bt_ctf_field_type_array, parent); ret = bt_ctf_field_type_serialize(array->element_type, context); if (ret) { goto end; } if (context->field_name->len) { g_string_append_printf(context->string, " %s[%u]", context->field_name->str, array->length); g_string_assign(context->field_name, ""); } else { g_string_append_printf(context->string, "[%u]", array->length); } end: return ret; } static int bt_ctf_field_type_sequence_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { int ret = 0; struct bt_ctf_field_type_sequence *sequence = container_of( type, struct bt_ctf_field_type_sequence, parent); ret = bt_ctf_field_type_serialize(sequence->element_type, context); if (ret) { goto end; } if (context->field_name->len) { g_string_append_printf(context->string, " %s[%s]", context->field_name->str, sequence->length_field_name->str); g_string_assign(context->field_name, ""); } else { g_string_append_printf(context->string, "[%s]", sequence->length_field_name->str); } end: return ret; } static int bt_ctf_field_type_string_serialize(struct bt_ctf_field_type *type, struct metadata_context *context) { struct bt_ctf_field_type_string *string = container_of( type, struct bt_ctf_field_type_string, parent); g_string_append_printf(context->string, "string { encoding = %s; }", get_encoding_string(string->declaration.encoding)); return 0; } static void bt_ctf_field_type_integer_set_byte_order(struct bt_ctf_field_type *type, int byte_order) { struct bt_ctf_field_type_integer *integer_type = container_of(type, struct bt_ctf_field_type_integer, parent); integer_type->declaration.byte_order = byte_order; } static void bt_ctf_field_type_floating_point_set_byte_order( struct bt_ctf_field_type *type, int byte_order) { struct bt_ctf_field_type_floating_point *floating_point_type = container_of(type, struct bt_ctf_field_type_floating_point, parent); floating_point_type->declaration.byte_order = byte_order; floating_point_type->sign.byte_order = byte_order; floating_point_type->mantissa.byte_order = byte_order; floating_point_type->exp.byte_order = byte_order; } babeltrace-1.2.1/formats/ctf/writer/functor.c0000644000175000017500000000272112304150543016106 00000000000000/* * functor.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include BT_HIDDEN void value_exists(gpointer element, gpointer search_query) { if (element == ((struct search_query *)search_query)->value) { ((struct search_query *)search_query)->found = 1; } } babeltrace-1.2.1/formats/ctf/writer/writer.c0000644000175000017500000004353412304150543015751 00000000000000/* * writer.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define DEFAULT_IDENTIFIER_SIZE 128 #define DEFAULT_METADATA_STRING_SIZE 4096 static void environment_variable_destroy(struct environment_variable *var); static void bt_ctf_writer_destroy(struct bt_ctf_ref *ref); static int init_trace_packet_header(struct bt_ctf_writer *writer); static int create_stream_file(struct bt_ctf_writer *writer, struct bt_ctf_stream *stream); static void stream_flush_cb(struct bt_ctf_stream *stream, struct bt_ctf_writer *writer); static const char * const reserved_keywords_str[] = {"align", "callsite", "const", "char", "clock", "double", "enum", "env", "event", "floating_point", "float", "integer", "int", "long", "short", "signed", "stream", "string", "struct", "trace", "typealias", "typedef", "unsigned", "variant", "void" "_Bool", "_Complex", "_Imaginary"}; static const unsigned int field_type_aliases_alignments[] = { [FIELD_TYPE_ALIAS_UINT5_T] = 1, [FIELD_TYPE_ALIAS_UINT8_T ... FIELD_TYPE_ALIAS_UINT16_T] = 8, [FIELD_TYPE_ALIAS_UINT27_T] = 1, [FIELD_TYPE_ALIAS_UINT32_T ... FIELD_TYPE_ALIAS_UINT64_T] = 8, }; static const unsigned int field_type_aliases_sizes[] = { [FIELD_TYPE_ALIAS_UINT5_T] = 5, [FIELD_TYPE_ALIAS_UINT8_T] = 8, [FIELD_TYPE_ALIAS_UINT16_T] = 16, [FIELD_TYPE_ALIAS_UINT27_T] = 27, [FIELD_TYPE_ALIAS_UINT32_T] = 32, [FIELD_TYPE_ALIAS_UINT64_T] = 64, }; static GHashTable *reserved_keywords_set; static int init_done; static int global_data_refcount; struct bt_ctf_writer *bt_ctf_writer_create(const char *path) { struct bt_ctf_writer *writer = NULL; if (!path) { goto error; } writer = g_new0(struct bt_ctf_writer, 1); if (!writer) { goto error; } bt_ctf_writer_set_byte_order(writer, BT_CTF_BYTE_ORDER_NATIVE); bt_ctf_ref_init(&writer->ref_count); writer->path = g_string_new(path); if (!writer->path) { goto error_destroy; } /* Create trace directory if necessary and open a metadata file */ if (g_mkdir_with_parents(path, S_IRWXU | S_IRWXG)) { perror("g_mkdir_with_parents"); goto error_destroy; } writer->trace_dir_fd = open(path, O_RDONLY, S_IRWXU | S_IRWXG); if (writer->trace_dir_fd < 0) { perror("open"); goto error_destroy; } writer->metadata_fd = openat(writer->trace_dir_fd, "metadata", O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); writer->environment = g_ptr_array_new_with_free_func( (GDestroyNotify)environment_variable_destroy); writer->clocks = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_clock_put); writer->streams = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_stream_put); writer->stream_classes = g_ptr_array_new_with_free_func( (GDestroyNotify)bt_ctf_stream_class_put); if (!writer->environment || !writer->clocks || !writer->stream_classes || !writer->streams) { goto error_destroy; } /* Generate a trace UUID */ uuid_generate(writer->uuid); if (init_trace_packet_header(writer)) { goto error_destroy; } return writer; error_destroy: unlinkat(writer->trace_dir_fd, "metadata", 0); bt_ctf_writer_destroy(&writer->ref_count); writer = NULL; error: return writer; } void bt_ctf_writer_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_writer *writer; if (!ref) { return; } writer = container_of(ref, struct bt_ctf_writer, ref_count); bt_ctf_writer_flush_metadata(writer); if (writer->path) { g_string_free(writer->path, TRUE); } if (writer->trace_dir_fd > 0) { if (close(writer->trace_dir_fd)) { perror("close"); abort(); } } if (writer->metadata_fd > 0) { if (close(writer->metadata_fd)) { perror("close"); abort(); } } if (writer->environment) { g_ptr_array_free(writer->environment, TRUE); } if (writer->clocks) { g_ptr_array_free(writer->clocks, TRUE); } if (writer->streams) { g_ptr_array_free(writer->streams, TRUE); } if (writer->stream_classes) { g_ptr_array_free(writer->stream_classes, TRUE); } bt_ctf_field_type_put(writer->trace_packet_header_type); bt_ctf_field_put(writer->trace_packet_header); g_free(writer); } struct bt_ctf_stream *bt_ctf_writer_create_stream(struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class) { int ret; int stream_class_found = 0; size_t i; int stream_fd; struct bt_ctf_stream *stream = NULL; if (!writer || !stream_class) { goto error; } stream = bt_ctf_stream_create(stream_class); if (!stream) { goto error; } stream_fd = create_stream_file(writer, stream); if (stream_fd < 0 || bt_ctf_stream_set_fd(stream, stream_fd)) { goto error; } bt_ctf_stream_set_flush_callback(stream, (flush_func)stream_flush_cb, writer); ret = bt_ctf_stream_class_set_byte_order(stream->stream_class, writer->byte_order == LITTLE_ENDIAN ? BT_CTF_BYTE_ORDER_LITTLE_ENDIAN : BT_CTF_BYTE_ORDER_BIG_ENDIAN); if (ret) { goto error; } for (i = 0; i < writer->stream_classes->len; i++) { if (writer->stream_classes->pdata[i] == stream->stream_class) { stream_class_found = 1; } } if (!stream_class_found) { if (bt_ctf_stream_class_set_id(stream->stream_class, writer->next_stream_id++)) { goto error; } bt_ctf_stream_class_get(stream->stream_class); g_ptr_array_add(writer->stream_classes, stream->stream_class); } bt_ctf_stream_get(stream); g_ptr_array_add(writer->streams, stream); writer->frozen = 1; return stream; error: bt_ctf_stream_put(stream); return NULL; } int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value) { struct environment_variable *var = NULL; char *escaped_value = NULL; int ret = 0; if (!writer || !name || !value || validate_identifier(name)) { ret = -1; goto error; } if (strchr(name, ' ')) { ret = -1; goto error; } var = g_new0(struct environment_variable, 1); if (!var) { ret = -1; goto error; } escaped_value = g_strescape(value, NULL); if (!escaped_value) { ret = -1; goto error; } var->name = g_string_new(name); var->value = g_string_new(escaped_value); g_free(escaped_value); if (!var->name || !var->value) { ret = -1; goto error; } g_ptr_array_add(writer->environment, var); return ret; error: if (var && var->name) { g_string_free(var->name, TRUE); } if (var && var->value) { g_string_free(var->value, TRUE); } g_free(var); return ret; } int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock) { int ret = 0; struct search_query query = { .value = clock, .found = 0 }; if (!writer || !clock) { ret = -1; goto end; } /* Check for duplicate clocks */ g_ptr_array_foreach(writer->clocks, value_exists, &query); if (query.found) { ret = -1; goto end; } bt_ctf_clock_get(clock); g_ptr_array_add(writer->clocks, clock); end: return ret; } BT_HIDDEN const char *get_byte_order_string(int byte_order) { const char *string; switch (byte_order) { case LITTLE_ENDIAN: string = "le"; break; case BIG_ENDIAN: string = "be"; break; default: string = "unknown"; break; } return string; } static int append_trace_metadata(struct bt_ctf_writer *writer, struct metadata_context *context) { unsigned char *uuid = writer->uuid; int ret; g_string_append(context->string, "trace {\n"); g_string_append(context->string, "\tmajor = 1;\n"); g_string_append(context->string, "\tminor = 8;\n"); g_string_append_printf(context->string, "\tuuid = \"%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\";\n", uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], uuid[6], uuid[7], uuid[8], uuid[9], uuid[10], uuid[11], uuid[12], uuid[13], uuid[14], uuid[15]); g_string_append_printf(context->string, "\tbyte_order = %s;\n", get_byte_order_string(writer->byte_order)); g_string_append(context->string, "\tpacket.header := "); context->current_indentation_level++; g_string_assign(context->field_name, ""); ret = bt_ctf_field_type_serialize(writer->trace_packet_header_type, context); if (ret) { goto end; } context->current_indentation_level--; g_string_append(context->string, ";\n};\n\n"); end: return ret; } static void append_env_field_metadata(struct environment_variable *var, struct metadata_context *context) { g_string_append_printf(context->string, "\t%s = \"%s\";\n", var->name->str, var->value->str); } static void append_env_metadata(struct bt_ctf_writer *writer, struct metadata_context *context) { if (writer->environment->len == 0) { return; } g_string_append(context->string, "env {\n"); g_ptr_array_foreach(writer->environment, (GFunc)append_env_field_metadata, context); g_string_append(context->string, "};\n\n"); } char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer) { char *metadata = NULL; struct metadata_context *context = NULL; int err = 0; size_t i; if (!writer) { goto end; } context = g_new0(struct metadata_context, 1); if (!context) { goto end; } context->field_name = g_string_sized_new(DEFAULT_IDENTIFIER_SIZE); context->string = g_string_sized_new(DEFAULT_METADATA_STRING_SIZE); g_string_append(context->string, "/* CTF 1.8 */\n\n"); if (append_trace_metadata(writer, context)) { goto error; } append_env_metadata(writer, context); g_ptr_array_foreach(writer->clocks, (GFunc)bt_ctf_clock_serialize, context); for (i = 0; i < writer->stream_classes->len; i++) { err = bt_ctf_stream_class_serialize( writer->stream_classes->pdata[i], context); if (err) { goto error; } } metadata = context->string->str; error: g_string_free(context->string, err ? TRUE : FALSE); g_string_free(context->field_name, TRUE); g_free(context); end: return metadata; } void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer) { int ret; char *metadata_string = NULL; if (!writer) { goto end; } metadata_string = bt_ctf_writer_get_metadata_string(writer); if (!metadata_string) { goto end; } if (lseek(writer->metadata_fd, 0, SEEK_SET) == (off_t)-1) { perror("lseek"); goto end; } if (ftruncate(writer->metadata_fd, 0)) { perror("ftruncate"); goto end; } ret = write(writer->metadata_fd, metadata_string, strlen(metadata_string)); if (ret < 0) { perror("write"); goto end; } end: g_free(metadata_string); } int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order) { int ret = 0; int internal_byte_order; if (!writer || writer->frozen) { ret = -1; goto end; } switch (byte_order) { case BT_CTF_BYTE_ORDER_NATIVE: internal_byte_order = (G_BYTE_ORDER == G_LITTLE_ENDIAN) ? LITTLE_ENDIAN : BIG_ENDIAN; break; case BT_CTF_BYTE_ORDER_LITTLE_ENDIAN: internal_byte_order = LITTLE_ENDIAN; break; case BT_CTF_BYTE_ORDER_BIG_ENDIAN: case BT_CTF_BYTE_ORDER_NETWORK: internal_byte_order = BIG_ENDIAN; break; default: ret = -1; goto end; } writer->byte_order = internal_byte_order; if (writer->trace_packet_header_type || writer->trace_packet_header) { init_trace_packet_header(writer); } end: return ret; } void bt_ctf_writer_get(struct bt_ctf_writer *writer) { if (!writer) { return; } bt_ctf_ref_get(&writer->ref_count); } void bt_ctf_writer_put(struct bt_ctf_writer *writer) { if (!writer) { return; } bt_ctf_ref_put(&writer->ref_count, bt_ctf_writer_destroy); } BT_HIDDEN int validate_identifier(const char *input_string) { int ret = 0; char *string = NULL; char *save_ptr, *token; if (!input_string || input_string[0] == '\0') { ret = -1; goto end; } string = strdup(input_string); if (!string) { ret = -1; goto end; } token = strtok_r(string, " ", &save_ptr); while (token) { if (g_hash_table_lookup_extended(reserved_keywords_set, GINT_TO_POINTER(g_quark_from_string(token)), NULL, NULL)) { ret = -1; goto end; } token = strtok_r(NULL, " ", &save_ptr); } end: free(string); return ret; } BT_HIDDEN struct bt_ctf_field_type *get_field_type(enum field_type_alias alias) { unsigned int alignment, size; struct bt_ctf_field_type *field_type; if (alias >= NR_FIELD_TYPE_ALIAS) { return NULL; } alignment = field_type_aliases_alignments[alias]; size = field_type_aliases_sizes[alias]; field_type = bt_ctf_field_type_integer_create(size); bt_ctf_field_type_set_alignment(field_type, alignment); return field_type; } static int init_trace_packet_header(struct bt_ctf_writer *writer) { size_t i; int ret = 0; struct bt_ctf_field *trace_packet_header = NULL, *magic = NULL, *uuid_array = NULL; struct bt_ctf_field_type *_uint32_t = get_field_type(FIELD_TYPE_ALIAS_UINT32_T); struct bt_ctf_field_type *_uint8_t = get_field_type(FIELD_TYPE_ALIAS_UINT8_T); struct bt_ctf_field_type *trace_packet_header_type = bt_ctf_field_type_structure_create(); struct bt_ctf_field_type *uuid_array_type = bt_ctf_field_type_array_create(_uint8_t, 16); if (!trace_packet_header_type || !uuid_array_type) { ret = -1; goto end; } ret = bt_ctf_field_type_set_byte_order(_uint32_t, (writer->byte_order == LITTLE_ENDIAN ? BT_CTF_BYTE_ORDER_LITTLE_ENDIAN : BT_CTF_BYTE_ORDER_BIG_ENDIAN)); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type, _uint32_t, "magic"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type, uuid_array_type, "uuid"); if (ret) { goto end; } ret = bt_ctf_field_type_structure_add_field(trace_packet_header_type, _uint32_t, "stream_id"); if (ret) { goto end; } trace_packet_header = bt_ctf_field_create(trace_packet_header_type); if (!trace_packet_header) { ret = -1; goto end; } magic = bt_ctf_field_structure_get_field(trace_packet_header, "magic"); ret = bt_ctf_field_unsigned_integer_set_value(magic, 0xC1FC1FC1); if (ret) { goto end; } uuid_array = bt_ctf_field_structure_get_field(trace_packet_header, "uuid"); for (i = 0; i < 16; i++) { struct bt_ctf_field *uuid_element = bt_ctf_field_array_get_field(uuid_array, i); ret = bt_ctf_field_unsigned_integer_set_value(uuid_element, writer->uuid[i]); bt_ctf_field_put(uuid_element); if (ret) { goto end; } } bt_ctf_field_type_put(writer->trace_packet_header_type); bt_ctf_field_put(writer->trace_packet_header); writer->trace_packet_header_type = trace_packet_header_type; writer->trace_packet_header = trace_packet_header; end: bt_ctf_field_type_put(uuid_array_type); bt_ctf_field_type_put(_uint32_t); bt_ctf_field_type_put(_uint8_t); bt_ctf_field_put(magic); bt_ctf_field_put(uuid_array); if (ret) { bt_ctf_field_type_put(trace_packet_header_type); bt_ctf_field_put(trace_packet_header); } return ret; } static void environment_variable_destroy(struct environment_variable *var) { g_string_free(var->name, TRUE); g_string_free(var->value, TRUE); g_free(var); } static int create_stream_file(struct bt_ctf_writer *writer, struct bt_ctf_stream *stream) { int fd; GString *filename = g_string_new(stream->stream_class->name->str); g_string_append_printf(filename, "_%" PRIu32, stream->id); fd = openat(writer->trace_dir_fd, filename->str, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); g_string_free(filename, TRUE); return fd; } static void stream_flush_cb(struct bt_ctf_stream *stream, struct bt_ctf_writer *writer) { struct bt_ctf_field *stream_id; /* Start a new packet in the stream */ if (stream->flushed_packet_count) { /* ctf_init_pos has already initialized the first packet */ ctf_packet_seek(&stream->pos.parent, 0, SEEK_CUR); } stream_id = bt_ctf_field_structure_get_field( writer->trace_packet_header, "stream_id"); bt_ctf_field_unsigned_integer_set_value(stream_id, stream->id); bt_ctf_field_put(stream_id); /* Write the trace_packet_header */ bt_ctf_field_serialize(writer->trace_packet_header, &stream->pos); } static __attribute__((constructor)) void writer_init(void) { size_t i; const size_t reserved_keywords_count = sizeof(reserved_keywords_str) / sizeof(char *); global_data_refcount++; if (init_done) { return; } reserved_keywords_set = g_hash_table_new(g_direct_hash, g_direct_equal); for (i = 0; i < reserved_keywords_count; i++) { gpointer quark = GINT_TO_POINTER(g_quark_from_string( reserved_keywords_str[i])); g_hash_table_insert(reserved_keywords_set, quark, quark); } init_done = 1; } static __attribute__((destructor)) void writer_finalize(void) { if (--global_data_refcount == 0) { g_hash_table_destroy(reserved_keywords_set); } } babeltrace-1.2.1/formats/ctf/writer/event.c0000644000175000017500000001756312304150543015561 00000000000000/* * event.c * * Babeltrace CTF Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include static void bt_ctf_event_class_destroy(struct bt_ctf_ref *ref); static void bt_ctf_event_destroy(struct bt_ctf_ref *ref); struct bt_ctf_event_class *bt_ctf_event_class_create(const char *name) { struct bt_ctf_event_class *event_class = NULL; if (validate_identifier(name)) { goto end; } event_class = g_new0(struct bt_ctf_event_class, 1); if (!event_class) { goto end; } bt_ctf_ref_init(&event_class->ref_count); event_class->name = g_quark_from_string(name); end: return event_class; } int bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name) { int ret = 0; if (!event_class || !type || validate_identifier(name) || event_class->frozen) { ret = -1; goto end; } if (!event_class->fields) { event_class->fields = bt_ctf_field_type_structure_create(); if (!event_class->fields) { ret = -1; goto end; } } ret = bt_ctf_field_type_structure_add_field(event_class->fields, type, name); end: return ret; } void bt_ctf_event_class_get(struct bt_ctf_event_class *event_class) { if (!event_class) { return; } bt_ctf_ref_get(&event_class->ref_count); } void bt_ctf_event_class_put(struct bt_ctf_event_class *event_class) { if (!event_class) { return; } bt_ctf_ref_put(&event_class->ref_count, bt_ctf_event_class_destroy); } struct bt_ctf_event *bt_ctf_event_create(struct bt_ctf_event_class *event_class) { struct bt_ctf_event *event = NULL; if (!event_class) { goto end; } event = g_new0(struct bt_ctf_event, 1); if (!event) { goto end; } bt_ctf_ref_init(&event->ref_count); bt_ctf_event_class_get(event_class); bt_ctf_event_class_freeze(event_class); event->event_class = event_class; event->context_payload = bt_ctf_field_create(event_class->context); event->fields_payload = bt_ctf_field_create(event_class->fields); end: return event; } int bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value) { int ret = 0; if (!event || !value || validate_identifier(name)) { ret = -1; goto end; } ret = bt_ctf_field_structure_set_field(event->fields_payload, name, value); end: return ret; } struct bt_ctf_field *bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name) { struct bt_ctf_field *field = NULL; if (!event || !name) { goto end; } field = bt_ctf_field_structure_get_field(event->fields_payload, name); end: return field; } void bt_ctf_event_get(struct bt_ctf_event *event) { if (!event) { return; } bt_ctf_ref_get(&event->ref_count); } void bt_ctf_event_put(struct bt_ctf_event *event) { if (!event) { return; } bt_ctf_ref_put(&event->ref_count, bt_ctf_event_destroy); } static void bt_ctf_event_class_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_event_class *event_class; if (!ref) { return; } event_class = container_of(ref, struct bt_ctf_event_class, ref_count); bt_ctf_field_type_put(event_class->context); bt_ctf_field_type_put(event_class->fields); g_free(event_class); } static void bt_ctf_event_destroy(struct bt_ctf_ref *ref) { struct bt_ctf_event *event; if (!ref) { return; } event = container_of(ref, struct bt_ctf_event, ref_count); bt_ctf_event_class_put(event->event_class); bt_ctf_field_put(event->context_payload); bt_ctf_field_put(event->fields_payload); g_free(event); } BT_HIDDEN void bt_ctf_event_class_freeze(struct bt_ctf_event_class *event_class) { assert(event_class); event_class->frozen = 1; bt_ctf_field_type_freeze(event_class->context); bt_ctf_field_type_freeze(event_class->fields); } BT_HIDDEN int bt_ctf_event_class_set_id(struct bt_ctf_event_class *event_class, uint32_t id) { int ret = 0; if (event_class->id_set && id != event_class->id) { ret = -1; goto end; } event_class->id = id; event_class->id_set = 1; end: return ret; } BT_HIDDEN uint32_t bt_ctf_event_class_get_id(struct bt_ctf_event_class *event_class) { assert(event_class); return event_class->id; } BT_HIDDEN int bt_ctf_event_class_set_stream_id(struct bt_ctf_event_class *event_class, uint32_t id) { int ret = 0; assert(event_class); if (event_class->stream_id_set && id != event_class->stream_id) { ret = -1; goto end; } event_class->stream_id = id; event_class->stream_id_set = 1; end: return ret; } BT_HIDDEN int bt_ctf_event_class_serialize(struct bt_ctf_event_class *event_class, struct metadata_context *context) { int ret = 0; assert(event_class); assert(context); context->current_indentation_level = 1; g_string_assign(context->field_name, ""); g_string_append_printf(context->string, "event {\n\tname = \"%s\";\n\tid = %u;\n\tstream_id = %" PRIu32 ";\n", g_quark_to_string(event_class->name), event_class->id, event_class->stream_id); if (event_class->context) { g_string_append(context->string, "\tcontext := "); ret = bt_ctf_field_type_serialize(event_class->context, context); if (ret) { goto end; } g_string_append(context->string, ";\n"); } if (event_class->fields) { g_string_append(context->string, "\tfields := "); ret = bt_ctf_field_type_serialize(event_class->fields, context); if (ret) { goto end; } g_string_append(context->string, ";\n"); } g_string_append(context->string, "};\n\n"); end: context->current_indentation_level = 0; return ret; } BT_HIDDEN int bt_ctf_event_validate(struct bt_ctf_event *event) { /* Make sure each field's payload has been set */ int ret; assert(event); ret = bt_ctf_field_validate(event->fields_payload); if (ret) { goto end; } if (event->event_class->context) { ret = bt_ctf_field_validate(event->context_payload); } end: return ret; } BT_HIDDEN int bt_ctf_event_serialize(struct bt_ctf_event *event, struct ctf_stream_pos *pos) { int ret = 0; assert(event); assert(pos); if (event->context_payload) { ret = bt_ctf_field_serialize(event->context_payload, pos); if (ret) { goto end; } } if (event->fields_payload) { ret = bt_ctf_field_serialize(event->fields_payload, pos); if (ret) { goto end; } } end: return ret; } BT_HIDDEN int bt_ctf_event_set_timestamp(struct bt_ctf_event *event, uint64_t timestamp) { int ret = 0; assert(event); if (event->timestamp) { ret = -1; goto end; } event->timestamp = timestamp; end: return ret; } BT_HIDDEN uint64_t bt_ctf_event_get_timestamp(struct bt_ctf_event *event) { assert(event); return event->timestamp; } babeltrace-1.2.1/formats/ctf/Makefile.in0000644000175000017500000006252612306621104015022 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/ctf DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_ctf_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la types/libctf-types.la \ metadata/libctf-parser.la metadata/libctf-ast.la \ writer/libctf-writer.la am_libbabeltrace_ctf_la_OBJECTS = ctf.lo events.lo iterator.lo \ callbacks.lo libbabeltrace_ctf_la_OBJECTS = $(am_libbabeltrace_ctf_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_ctf_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libbabeltrace_ctf_la_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_ctf_la_SOURCES) DIST_SOURCES = $(libbabeltrace_ctf_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = types metadata writer . lib_LTLIBRARIES = libbabeltrace-ctf.la libbabeltrace_ctf_la_SOURCES = \ ctf.c \ events.c \ iterator.c \ callbacks.c \ events-private.h # Request that the linker keeps all static libraries objects. libbabeltrace_ctf_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_ctf_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la \ types/libctf-types.la \ metadata/libctf-parser.la \ metadata/libctf-ast.la \ writer/libctf-writer.la all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace-ctf.la: $(libbabeltrace_ctf_la_OBJECTS) $(libbabeltrace_ctf_la_DEPENDENCIES) $(EXTRA_libbabeltrace_ctf_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_ctf_la_LINK) -rpath $(libdir) $(libbabeltrace_ctf_la_OBJECTS) $(libbabeltrace_ctf_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/events.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iterator.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags ctags-recursive \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libLTLIBRARIES install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf/iterator.c0000644000175000017500000001246012304150543014744 00000000000000/* * ctf/iterator.c * * Babeltrace Library * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include "events-private.h" struct bt_ctf_iter *bt_ctf_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos) { struct bt_ctf_iter *iter; int ret; if (!ctx) return NULL; iter = g_new0(struct bt_ctf_iter, 1); ret = bt_iter_init(&iter->parent, ctx, begin_pos, end_pos); if (ret) { g_free(iter); return NULL; } iter->callbacks = g_array_new(FALSE, TRUE, sizeof(struct bt_stream_callbacks)); iter->recalculate_dep_graph = 0; iter->main_callbacks.callback = NULL; iter->dep_gc = g_ptr_array_new(); return iter; } void bt_ctf_iter_destroy(struct bt_ctf_iter *iter) { struct bt_stream_callbacks *bt_stream_cb; struct bt_callback_chain *bt_chain; int i, j; assert(iter); /* free all events callbacks */ if (iter->main_callbacks.callback) g_array_free(iter->main_callbacks.callback, TRUE); /* free per-event callbacks */ for (i = 0; i < iter->callbacks->len; i++) { bt_stream_cb = &g_array_index(iter->callbacks, struct bt_stream_callbacks, i); if (!bt_stream_cb || !bt_stream_cb->per_id_callbacks) continue; for (j = 0; j < bt_stream_cb->per_id_callbacks->len; j++) { bt_chain = &g_array_index(bt_stream_cb->per_id_callbacks, struct bt_callback_chain, j); if (bt_chain->callback) { g_array_free(bt_chain->callback, TRUE); } } g_array_free(bt_stream_cb->per_id_callbacks, TRUE); } g_array_free(iter->callbacks, TRUE); g_ptr_array_free(iter->dep_gc, TRUE); bt_iter_fini(&iter->parent); g_free(iter); } struct bt_iter *bt_ctf_get_iter(struct bt_ctf_iter *iter) { if (!iter) return NULL; return &iter->parent; } struct bt_ctf_event *bt_ctf_iter_read_event_flags(struct bt_ctf_iter *iter, int *flags) { struct ctf_file_stream *file_stream; struct bt_ctf_event *ret; struct ctf_stream_definition *stream; struct packet_index *packet_index; /* * We do not want to fail for any other reason than end of * trace, hence the assert. */ assert(iter); if (flags) *flags = 0; ret = &iter->current_ctf_event; file_stream = bt_heap_maximum(iter->parent.stream_heap); if (!file_stream) { /* end of file for all streams */ goto stop; } /* * If the packet is empty (contains only headers or is of size 0), the * caller has to know that we can't read the current event and we need * to do a bt_iter_next. */ if (file_stream->pos.data_offset == file_stream->pos.content_size || file_stream->pos.content_size == 0) { /* More events may come. */ ret = NULL; if (flags) *flags |= BT_ITER_FLAG_RETRY; goto end; } stream = &file_stream->parent; if (iter->parent.end_pos && iter->parent.end_pos->type == BT_SEEK_TIME && stream->real_timestamp > iter->parent.end_pos->u.seek_time) { goto stop; } ret->parent = g_ptr_array_index(stream->events_by_id, stream->event_id); if (!file_stream->pos.packet_index) packet_index = NULL; else packet_index = &g_array_index(file_stream->pos.packet_index, struct packet_index, file_stream->pos.cur_index); iter->events_lost = 0; if (packet_index && packet_index->events_discarded > file_stream->pos.last_events_discarded) { if (flags) *flags |= BT_ITER_FLAG_LOST_EVENTS; iter->events_lost += packet_index->events_discarded - file_stream->pos.last_events_discarded; file_stream->pos.last_events_discarded = packet_index->events_discarded; } if (ret->parent->stream->stream_id > iter->callbacks->len) goto end; process_callbacks(iter, ret->parent->stream); end: return ret; stop: return NULL; } struct bt_ctf_event *bt_ctf_iter_read_event(struct bt_ctf_iter *iter) { return bt_ctf_iter_read_event_flags(iter, NULL); } uint64_t bt_ctf_get_lost_events_count(struct bt_ctf_iter *iter) { if (!iter) return -1ULL; return iter->events_lost; } babeltrace-1.2.1/formats/ctf/types/0000755000175000017500000000000012306621157014176 500000000000000babeltrace-1.2.1/formats/ctf/types/array.c0000644000175000017500000000734612304150543015404 00000000000000/* * Common Trace Format * * Array format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include int ctf_array_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_array *array_definition = container_of(definition, struct definition_array, p); struct declaration_array *array_declaration = array_definition->declaration; struct bt_declaration *elem = array_declaration->elem; struct ctf_stream_pos *pos = container_of(ppos, struct ctf_stream_pos, parent); if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, array_declaration->len * CHAR_BIT)) return -EFAULT; g_string_assign(array_definition->string, ""); g_string_insert_len(array_definition->string, 0, (char *) ctf_get_pos_addr(pos), array_declaration->len); /* * We want to populate both the string * and the underlying values, so carry * on calling bt_array_rw(). */ } } } return bt_array_rw(ppos, definition); } int ctf_array_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_array *array_definition = container_of(definition, struct definition_array, p); struct declaration_array *array_declaration = array_definition->declaration; struct bt_declaration *elem = array_declaration->elem; struct ctf_stream_pos *pos = container_of(ppos, struct ctf_stream_pos, parent); if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, array_declaration->len * CHAR_BIT)) return -EFAULT; memcpy((char *) ctf_get_pos_addr(pos), array_definition->string->str, array_declaration->len); if (!ctf_move_pos(pos, array_declaration->len * CHAR_BIT)) return -EFAULT; return 0; } } } return bt_array_rw(ppos, definition); } babeltrace-1.2.1/formats/ctf/types/variant.c0000644000175000017500000000311112303205563015716 00000000000000/* * Common Trace Format * * Variant format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include int ctf_variant_rw(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct bt_declaration *declaration = definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); if (!ctf_align_pos(pos, declaration->alignment)) return -EFAULT; return bt_variant_rw(ppos, definition); } babeltrace-1.2.1/formats/ctf/types/Makefile.am0000644000175000017500000000043111721504112016137 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-types.la libctf_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c libctf_types_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la babeltrace-1.2.1/formats/ctf/types/sequence.c0000644000175000017500000000725612303205563016100 00000000000000/* * Common Trace Format * * Sequence format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include int ctf_sequence_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_sequence *sequence_definition = container_of(definition, struct definition_sequence, p); struct declaration_sequence *sequence_declaration = sequence_definition->declaration; struct bt_declaration *elem = sequence_declaration->elem; struct ctf_stream_pos *pos = ctf_pos(ppos); if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { uint64_t len = bt_sequence_len(sequence_definition); if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, len * CHAR_BIT)) return -EFAULT; g_string_assign(sequence_definition->string, ""); g_string_insert_len(sequence_definition->string, 0, (char *) ctf_get_pos_addr(pos), len); if (!ctf_move_pos(pos, len * CHAR_BIT)) return -EFAULT; return 0; } } } return bt_sequence_rw(ppos, definition); } int ctf_sequence_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_sequence *sequence_definition = container_of(definition, struct definition_sequence, p); struct declaration_sequence *sequence_declaration = sequence_definition->declaration; struct bt_declaration *elem = sequence_declaration->elem; struct ctf_stream_pos *pos = ctf_pos(ppos); if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { uint64_t len = bt_sequence_len(sequence_definition); if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, len * CHAR_BIT)) return -EFAULT; memcpy((char *) ctf_get_pos_addr(pos), sequence_definition->string->str, len); if (!ctf_move_pos(pos, len * CHAR_BIT)) return -EFAULT; return 0; } } } return bt_sequence_rw(ppos, definition); } babeltrace-1.2.1/formats/ctf/types/Makefile.in0000644000175000017500000004261512306621104016163 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/ctf/types DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libctf_types_la_DEPENDENCIES = $(top_builddir)/lib/libbabeltrace.la am_libctf_types_la_OBJECTS = array.lo enum.lo float.lo integer.lo \ sequence.lo string.lo struct.lo variant.lo libctf_types_la_OBJECTS = $(am_libctf_types_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libctf_types_la_SOURCES) DIST_SOURCES = $(libctf_types_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-types.la libctf_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c libctf_types_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf/types/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf/types/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libctf-types.la: $(libctf_types_la_OBJECTS) $(libctf_types_la_DEPENDENCIES) $(EXTRA_libctf_types_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libctf_types_la_OBJECTS) $(libctf_types_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enum.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/float.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sequence.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/string.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/struct.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/variant.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf/types/float.c0000644000175000017500000002117112304150543015363 00000000000000/* * Common Trace Format * * Floating point read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Reference: ISO C99 standard 5.2.4 */ #include #include #include /* C99 floating point definitions */ #include /* C99 limits */ #include #include /* * This library is limited to binary representation of floating point values. * We use hardware support for conversion between 32 and 64-bit floating * point values. */ /* * Aliasing float/double and unsigned long is not strictly permitted by strict * aliasing, but in practice declaration prunning is well supported, and this permits * us to use per-word read/writes rather than per-byte. */ #if defined(__GNUC__) || defined(__MINGW32__) || defined(_MSC_VER) #define HAS_TYPE_PRUNING #endif #if (FLT_RADIX != 2) #error "Unsupported floating point radix" #endif union doubleIEEE754 { double vd; float vf; #ifdef HAS_TYPE_PRUNING unsigned long bits[(sizeof(double) + sizeof(unsigned long) - 1) / sizeof(unsigned long)]; #else unsigned char bits[sizeof(double)]; #endif }; /* * This mutex protects the static temporary float and double * declarations (static_float_declaration and static_double_declaration). */ static pthread_mutex_t float_mutex = PTHREAD_MUTEX_INITIALIZER; static struct declaration_float *static_float_declaration, *static_double_declaration; struct pos_len { size_t len; }; static void float_lock(void) { int ret; ret = pthread_mutex_lock(&float_mutex); assert(!ret); } static void float_unlock(void) { int ret; ret = pthread_mutex_unlock(&float_mutex); assert(!ret); } static int _ctf_float_copy(struct bt_stream_pos *destp, struct definition_float *dest_definition, struct bt_stream_pos *srcp, const struct definition_float *src_definition) { int ret; /* We only support copy of same-size floats for now */ assert(src_definition->declaration->sign->len == dest_definition->declaration->sign->len); assert(src_definition->declaration->exp->len == dest_definition->declaration->exp->len); assert(src_definition->declaration->mantissa->len == dest_definition->declaration->mantissa->len); /* Read */ if (src_definition->declaration->byte_order == LITTLE_ENDIAN) { ret = ctf_integer_read(srcp, &src_definition->mantissa->p); if (ret) return ret; ret = ctf_integer_read(srcp, &src_definition->exp->p); if (ret) return ret; ret = ctf_integer_read(srcp, &src_definition->sign->p); if (ret) return ret; } else { ret = ctf_integer_read(srcp, &src_definition->sign->p); if (ret) return ret; ret = ctf_integer_read(srcp, &src_definition->exp->p); if (ret) return ret; ret = ctf_integer_read(srcp, &src_definition->mantissa->p); if (ret) return ret; } dest_definition->mantissa->value._unsigned = src_definition->mantissa->value._unsigned; dest_definition->exp->value._signed = src_definition->exp->value._signed; dest_definition->sign->value._unsigned = src_definition->sign->value._unsigned; /* Write */ if (dest_definition->declaration->byte_order == LITTLE_ENDIAN) { ret = ctf_integer_write(destp, &dest_definition->mantissa->p); if (ret) return ret; ret = ctf_integer_write(destp, &dest_definition->exp->p); if (ret) return ret; ret = ctf_integer_write(destp, &dest_definition->sign->p); if (ret) return ret; } else { ret = ctf_integer_write(destp, &dest_definition->sign->p); if (ret) return ret; ret = ctf_integer_write(destp, &dest_definition->exp->p); if (ret) return ret; ret = ctf_integer_write(destp, &dest_definition->mantissa->p); if (ret) return ret; } return 0; } int ctf_float_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); const struct declaration_float *float_declaration = float_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); union doubleIEEE754 u; struct bt_definition *tmpdef; struct definition_float *tmpfloat; struct ctf_stream_pos destp; struct mmap_align mma; int ret; float_lock(); switch (float_declaration->mantissa->len + 1) { case FLT_MANT_DIG: tmpdef = static_float_declaration->p.definition_new( &static_float_declaration->p, NULL, 0, 0, "__tmpfloat"); break; case DBL_MANT_DIG: tmpdef = static_double_declaration->p.definition_new( &static_double_declaration->p, NULL, 0, 0, "__tmpfloat"); break; default: ret = -EINVAL; goto end; } tmpfloat = container_of(tmpdef, struct definition_float, p); memset(&destp, 0, sizeof(destp)); ctf_init_pos(&destp, NULL, -1, O_RDWR); mmap_align_set_addr(&mma, (char *) u.bits); destp.base_mma = &mma; destp.content_size = destp.packet_size = sizeof(u) * CHAR_BIT; if (!ctf_align_pos(pos, float_declaration->p.alignment)) { ret = -EFAULT; goto end_unref; } ret = _ctf_float_copy(&destp.parent, tmpfloat, ppos, float_definition); switch (float_declaration->mantissa->len + 1) { case FLT_MANT_DIG: float_definition->value = u.vf; break; case DBL_MANT_DIG: float_definition->value = u.vd; break; default: ret = -EINVAL; goto end_unref; } end_unref: bt_definition_unref(tmpdef); end: float_unlock(); return ret; } int ctf_float_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); const struct declaration_float *float_declaration = float_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); union doubleIEEE754 u; struct bt_definition *tmpdef; struct definition_float *tmpfloat; struct ctf_stream_pos srcp = { { 0 } }; struct mmap_align mma; int ret; float_lock(); switch (float_declaration->mantissa->len + 1) { case FLT_MANT_DIG: tmpdef = static_float_declaration->p.definition_new( &static_float_declaration->p, NULL, 0, 0, "__tmpfloat"); break; case DBL_MANT_DIG: tmpdef = static_double_declaration->p.definition_new( &static_double_declaration->p, NULL, 0, 0, "__tmpfloat"); break; default: ret = -EINVAL; goto end; } tmpfloat = container_of(tmpdef, struct definition_float, p); ctf_init_pos(&srcp, NULL, -1, O_RDONLY); mmap_align_set_addr(&mma, (char *) u.bits); srcp.base_mma = &mma; srcp.content_size = srcp.packet_size = sizeof(u) * CHAR_BIT; switch (float_declaration->mantissa->len + 1) { case FLT_MANT_DIG: u.vf = float_definition->value; break; case DBL_MANT_DIG: u.vd = float_definition->value; break; default: ret = -EINVAL; goto end_unref; } if (!ctf_align_pos(pos, float_declaration->p.alignment)) { ret = -EFAULT; goto end_unref; } ret = _ctf_float_copy(ppos, float_definition, &srcp.parent, tmpfloat); end_unref: bt_definition_unref(tmpdef); end: float_unlock(); return ret; } double bt_get_float(const struct bt_definition *field) { struct definition_float *definition = container_of(field, struct definition_float, p); return definition->value; } static void __attribute__((constructor)) ctf_float_init(void) { static_float_declaration = bt_float_declaration_new(FLT_MANT_DIG, sizeof(float) * CHAR_BIT - FLT_MANT_DIG, BYTE_ORDER, __alignof__(float)); static_double_declaration = bt_float_declaration_new(DBL_MANT_DIG, sizeof(double) * CHAR_BIT - DBL_MANT_DIG, BYTE_ORDER, __alignof__(double)); } static void __attribute__((destructor)) ctf_float_fini(void) { bt_declaration_unref(&static_float_declaration->p); bt_declaration_unref(&static_double_declaration->p); } babeltrace-1.2.1/formats/ctf/types/integer.c0000644000175000017500000002145412303205563015721 00000000000000/* * Common Trace Format * * Integers read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include /* * The aligned read/write functions are expected to be faster than the * bitfield variants. They will be enabled eventually as an * optimisation. */ static int _aligned_integer_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_integer *integer_definition = container_of(definition, struct definition_integer, p); const struct declaration_integer *integer_declaration = integer_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); int rbo = (integer_declaration->byte_order != BYTE_ORDER); /* reverse byte order */ if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, integer_declaration->len)) return -EFAULT; assert(!(pos->offset % CHAR_BIT)); if (!integer_declaration->signedness) { switch (integer_declaration->len) { case 8: { uint8_t v; v = *(const uint8_t *) ctf_get_pos_addr(pos); integer_definition->value._unsigned = v; break; } case 16: { uint16_t v; v = *(const uint16_t *) ctf_get_pos_addr(pos); integer_definition->value._unsigned = rbo ? GUINT16_SWAP_LE_BE(v) : v; break; } case 32: { uint32_t v; v = *(const uint32_t *) ctf_get_pos_addr(pos); integer_definition->value._unsigned = rbo ? GUINT32_SWAP_LE_BE(v) : v; break; } case 64: { uint64_t v; v = *(const uint64_t *) ctf_get_pos_addr(pos); integer_definition->value._unsigned = rbo ? GUINT64_SWAP_LE_BE(v) : v; break; } default: assert(0); } } else { switch (integer_declaration->len) { case 8: { int8_t v; v = *(const int8_t *) ctf_get_pos_addr(pos); integer_definition->value._signed = v; break; } case 16: { int16_t v; v = *(const int16_t *) ctf_get_pos_addr(pos); integer_definition->value._signed = rbo ? (int16_t) GUINT16_SWAP_LE_BE(v) : v; break; } case 32: { int32_t v; v = *(const int32_t *) ctf_get_pos_addr(pos); integer_definition->value._signed = rbo ? (int32_t) GUINT32_SWAP_LE_BE(v) : v; break; } case 64: { int64_t v; v = *(const int64_t *) ctf_get_pos_addr(pos); integer_definition->value._signed = rbo ? (int64_t) GUINT64_SWAP_LE_BE(v) : v; break; } default: assert(0); } } if (!ctf_move_pos(pos, integer_declaration->len)) return -EFAULT; return 0; } static int _aligned_integer_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_integer *integer_definition = container_of(definition, struct definition_integer, p); const struct declaration_integer *integer_declaration = integer_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); int rbo = (integer_declaration->byte_order != BYTE_ORDER); /* reverse byte order */ if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, integer_declaration->len)) return -EFAULT; assert(!(pos->offset % CHAR_BIT)); if (pos->dummy) goto end; if (!integer_declaration->signedness) { uint64_t v = integer_definition->value._unsigned; switch (integer_declaration->len) { case 8: *(uint8_t *) ctf_get_pos_addr(pos) = (uint8_t) v; break; case 16: *(uint16_t *) ctf_get_pos_addr(pos) = rbo ? GUINT16_SWAP_LE_BE((uint16_t) v) : (uint16_t) v; break; case 32: *(uint32_t *) ctf_get_pos_addr(pos) = rbo ? GUINT32_SWAP_LE_BE((uint32_t) v) : (uint32_t) v; break; case 64: *(uint64_t *) ctf_get_pos_addr(pos) = rbo ? GUINT64_SWAP_LE_BE(v) : v; break; default: assert(0); } } else { int64_t v = integer_definition->value._signed; switch (integer_declaration->len) { case 8: *(int8_t *) ctf_get_pos_addr(pos) = (int8_t) v; break; case 16: *(int16_t *) ctf_get_pos_addr(pos) = rbo ? (int16_t) GUINT16_SWAP_LE_BE((int16_t) v) : (int16_t) v; break; case 32: *(int32_t *) ctf_get_pos_addr(pos) = rbo ? (int32_t) GUINT32_SWAP_LE_BE((int32_t) v) : (int32_t) v; break; case 64: *(int64_t *) ctf_get_pos_addr(pos) = rbo ? GUINT64_SWAP_LE_BE(v) : v; break; default: assert(0); } } end: if (!ctf_move_pos(pos, integer_declaration->len)) return -EFAULT; return 0; } int ctf_integer_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_integer *integer_definition = container_of(definition, struct definition_integer, p); const struct declaration_integer *integer_declaration = integer_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); if (!(integer_declaration->p.alignment % CHAR_BIT) && !(integer_declaration->len % CHAR_BIT)) { return _aligned_integer_read(ppos, definition); } if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, integer_declaration->len)) return -EFAULT; if (!integer_declaration->signedness) { if (integer_declaration->byte_order == LITTLE_ENDIAN) bt_bitfield_read_le(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, &integer_definition->value._unsigned); else bt_bitfield_read_be(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, &integer_definition->value._unsigned); } else { if (integer_declaration->byte_order == LITTLE_ENDIAN) bt_bitfield_read_le(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, &integer_definition->value._signed); else bt_bitfield_read_be(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, &integer_definition->value._signed); } if (!ctf_move_pos(pos, integer_declaration->len)) return -EFAULT; return 0; } int ctf_integer_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_integer *integer_definition = container_of(definition, struct definition_integer, p); const struct declaration_integer *integer_declaration = integer_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); if (!(integer_declaration->p.alignment % CHAR_BIT) && !(integer_declaration->len % CHAR_BIT)) { return _aligned_integer_write(ppos, definition); } if (!ctf_align_pos(pos, integer_declaration->p.alignment)) return -EFAULT; if (!ctf_pos_access_ok(pos, integer_declaration->len)) return -EFAULT; if (pos->dummy) goto end; if (!integer_declaration->signedness) { if (integer_declaration->byte_order == LITTLE_ENDIAN) bt_bitfield_write_le(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, integer_definition->value._unsigned); else bt_bitfield_write_be(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, integer_definition->value._unsigned); } else { if (integer_declaration->byte_order == LITTLE_ENDIAN) bt_bitfield_write_le(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, integer_definition->value._signed); else bt_bitfield_write_be(mmap_align_addr(pos->base_mma) + pos->mmap_base_offset, unsigned long, pos->offset, integer_declaration->len, integer_definition->value._signed); } end: if (!ctf_move_pos(pos, integer_declaration->len)) return -EFAULT; return 0; } babeltrace-1.2.1/formats/ctf/types/struct.c0000644000175000017500000000311112303205563015576 00000000000000/* * Common Trace Format * * Structure format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include int ctf_struct_rw(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct bt_declaration *declaration = definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); if (!ctf_align_pos(pos, declaration->alignment)) return -EFAULT; return bt_struct_rw(ppos, definition); } babeltrace-1.2.1/formats/ctf/types/string.c0000644000175000017500000000651512303205563015573 00000000000000/* * Common Trace Format * * Strings read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include /* C99 limits */ #include int ctf_string_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_string *string_definition = container_of(definition, struct definition_string, p); const struct declaration_string *string_declaration = string_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); size_t len; ssize_t max_len_bits; char *srcaddr; if (!ctf_align_pos(pos, string_declaration->p.alignment)) return -EFAULT; srcaddr = ctf_get_pos_addr(pos); if (pos->offset == EOF) return -EFAULT; /* Not counting \0. Counting in bits. */ max_len_bits = pos->packet_size - pos->offset - CHAR_BIT; if (max_len_bits < 0) return -EFAULT; /* Add \0, counting in bytes. */ len = strnlen(srcaddr, (size_t) max_len_bits / CHAR_BIT) + 1; /* Truncated string, unexpected. Trace probably corrupted. */ if (srcaddr[len - 1] != '\0') return -EFAULT; if (string_definition->alloc_len < len) { string_definition->value = g_realloc(string_definition->value, len); string_definition->alloc_len = len; } printf_debug("CTF string read %s\n", srcaddr); memcpy(string_definition->value, srcaddr, len); string_definition->len = len; if (!ctf_move_pos(pos, len * CHAR_BIT)) return -EFAULT; return 0; } int ctf_string_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_string *string_definition = container_of(definition, struct definition_string, p); const struct declaration_string *string_declaration = string_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); size_t len; char *destaddr; if (!ctf_align_pos(pos, string_declaration->p.alignment)) return -EFAULT; assert(string_definition->value != NULL); len = string_definition->len; if (!ctf_pos_access_ok(pos, len)) return -EFAULT; if (pos->dummy) goto end; destaddr = ctf_get_pos_addr(pos); memcpy(destaddr, string_definition->value, len); end: if (!ctf_move_pos(pos, len * CHAR_BIT)) return -EFAULT; return 0; } babeltrace-1.2.1/formats/ctf/types/enum.c0000644000175000017500000000547212272477052015243 00000000000000/* * Common Trace Format * * Enumeration mapping strings (quarks) from/to integers. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include int ctf_enum_read(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_enum *enum_definition = container_of(definition, struct definition_enum, p); const struct declaration_enum *enum_declaration = enum_definition->declaration; struct definition_integer *integer_definition = enum_definition->integer; const struct declaration_integer *integer_declaration = integer_definition->declaration; GArray *qs; int ret; ret = ctf_integer_read(ppos, &integer_definition->p); if (ret) return ret; if (!integer_declaration->signedness) { qs = bt_enum_uint_to_quark_set(enum_declaration, integer_definition->value._unsigned); if (!qs) { fprintf(stderr, "[warning] Unknown value %" PRIu64 " in enum.\n", integer_definition->value._unsigned); } } else { qs = bt_enum_int_to_quark_set(enum_declaration, integer_definition->value._signed); if (!qs) { fprintf(stderr, "[warning] Unknown value %" PRId64 " in enum.\n", integer_definition->value._signed); } } /* unref previous quark set */ if (enum_definition->value) g_array_unref(enum_definition->value); enum_definition->value = qs; return 0; } int ctf_enum_write(struct bt_stream_pos *pos, struct bt_definition *definition) { struct definition_enum *enum_definition = container_of(definition, struct definition_enum, p); struct definition_integer *integer_definition = enum_definition->integer; return ctf_integer_write(pos, &integer_definition->p); } babeltrace-1.2.1/formats/ctf/metadata/0000755000175000017500000000000012306621157014612 500000000000000babeltrace-1.2.1/formats/ctf/metadata/ctf-scanner-symbols.h0000644000175000017500000000350112272477052020600 00000000000000#ifndef _CTF_SCANNER_SYMBOLS #define _CTF_SCANNER_SYMBOLS /* * ctf-scanner-symbols.h * * Copyright 2011-2012 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ #define yy_create_buffer bt_yy_create_buffer #define yy_delete_buffer bt_yy_delete_buffer #define yy_flush_buffer bt_yy_flush_buffer #define yy_scan_buffer bt_yy_scan_buffer #define yy_scan_bytes bt_yy_scan_bytes #define yy_scan_string bt_yy_scan_string #define yy_switch_to_buffer bt_yy_switch_to_buffer #define yyalloc bt_yyalloc #define yyfree bt_yyfree #define yyget_column bt_yyget_column #define yyget_debug bt_yyget_debug #define yyget_extra bt_yyget_extra #define yyget_in bt_yyget_in #define yyget_leng bt_yyget_leng #define yyget_lineno bt_yyget_lineno #define yyget_lval bt_yyget_lval #define yyget_out bt_yyget_out #define yyget_text bt_yyget_text #define yylex_init bt_yylex_init #define yypop_buffer_state bt_yypop_buffer_state #define yypush_buffer_state bt_yypush_buffer_state #define yyrealloc bt_yyrealloc #define yyset_column bt_yyset_column #define yyset_debug bt_yyset_debug #define yyset_extra bt_yyset_extra #define yyset_in bt_yyset_in #define yyset_lineno bt_yyset_lineno #define yyset_lval bt_yyset_lval #define yyset_out bt_yyset_out #endif /* _CTF_SCANNER_SYMBOLS */ babeltrace-1.2.1/formats/ctf/metadata/objstack.c0000644000175000017500000000665112272477052016513 00000000000000/* * objstack.c * * Common Trace Format Object Stack. * * Copyright 2013 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #define OBJSTACK_INIT_LEN 128 #define OBJSTACK_POISON 0xcc struct objstack { struct bt_list_head head; /* list of struct objstack_node */ }; struct objstack_node { struct bt_list_head node; size_t len; size_t used_len; char data[]; }; BT_HIDDEN struct objstack *objstack_create(void) { struct objstack *objstack; struct objstack_node *node; objstack = calloc(1, sizeof(*objstack)); if (!objstack) return NULL; node = calloc(sizeof(struct objstack_node) + OBJSTACK_INIT_LEN, sizeof(char)); if (!node) { free(objstack); return NULL; } BT_INIT_LIST_HEAD(&objstack->head); bt_list_add_tail(&node->node, &objstack->head); node->len = OBJSTACK_INIT_LEN; return objstack; } static void objstack_node_free(struct objstack_node *node) { size_t offset, len; char *p; if (!node) return; p = (char *) node; len = sizeof(*node) + node->len; for (offset = 0; offset < len; offset++) p[offset] = OBJSTACK_POISON; free(node); } BT_HIDDEN void objstack_destroy(struct objstack *objstack) { struct objstack_node *node, *p; if (!objstack) return; bt_list_for_each_entry_safe(node, p, &objstack->head, node) { bt_list_del(&node->node); objstack_node_free(node); } free(objstack); } static struct objstack_node *objstack_append_node(struct objstack *objstack) { struct objstack_node *last_node, *new_node; /* Get last node */ last_node = bt_list_entry(objstack->head.prev, struct objstack_node, node); /* Allocate new node with double of size of last node */ new_node = calloc(sizeof(struct objstack_node) + (last_node->len << 1), sizeof(char)); if (!new_node) { return NULL; } bt_list_add_tail(&new_node->node, &objstack->head); new_node->len = last_node->len << 1; return new_node; } BT_HIDDEN void *objstack_alloc(struct objstack *objstack, size_t len) { struct objstack_node *last_node; void *p; /* Get last node */ last_node = bt_list_entry(objstack->head.prev, struct objstack_node, node); while (last_node->len - last_node->used_len < len) { last_node = objstack_append_node(objstack); if (!last_node) { return NULL; } } p = &last_node->data[last_node->used_len]; last_node->used_len += len; return p; } babeltrace-1.2.1/formats/ctf/metadata/ctf-visitor-semantic-validator.c0000644000175000017500000006160412304150543022734 00000000000000/* * ctf-visitor-semantic-validator.c * * Common Trace Format Metadata Semantic Validator. * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define _bt_list_first_entry(ptr, type, member) \ bt_list_entry((ptr)->next, type, member) #define fprintf_dbg(fd, fmt, args...) fprintf(fd, "%s: " fmt, __func__, ## args) static int _ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node); static int ctf_visitor_unary_expression(FILE *fd, int depth, struct ctf_node *node) { struct ctf_node *iter; int is_ctf_exp = 0, is_ctf_exp_left = 0; switch (node->parent->type) { case NODE_CTF_EXPRESSION: is_ctf_exp = 1; bt_list_for_each_entry(iter, &node->parent->u.ctf_expression.left, siblings) { if (iter == node) { is_ctf_exp_left = 1; /* * We are a left child of a ctf expression. * We are only allowed to be a string. */ if (node->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error]: semantic error (left child of a ctf expression is only allowed to be a string)\n"); goto errperm; } break; } } /* Right child of a ctf expression can be any type of unary exp. */ break; /* OK */ case NODE_TYPE_DECLARATOR: /* * We are the length of a type declarator. */ switch (node->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: case UNARY_STRING: break; default: fprintf(fd, "[error]: semantic error (children of type declarator and enum can only be unsigned numeric constants or references to fields (a.b.c))\n"); goto errperm; } break; /* OK */ case NODE_STRUCT: /* * We are the size of a struct align attribute. */ switch (node->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: break; default: fprintf(fd, "[error]: semantic error (structure alignment attribute can only be unsigned numeric constants)\n"); goto errperm; } break; case NODE_ENUMERATOR: /* The enumerator's parent has validated its validity already. */ break; /* OK */ case NODE_UNARY_EXPRESSION: /* * We disallow nested unary expressions and "sbrac" unary * expressions. */ fprintf(fd, "[error]: semantic error (nested unary expressions not allowed ( () and [] ))\n"); goto errperm; case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_POINTER: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_VARIANT: default: goto errinval; } switch (node->u.unary_expression.link) { case UNARY_LINK_UNKNOWN: /* We don't allow empty link except on the first node of the list */ if (is_ctf_exp && _bt_list_first_entry(is_ctf_exp_left ? &node->parent->u.ctf_expression.left : &node->parent->u.ctf_expression.right, struct ctf_node, siblings) != node) { fprintf(fd, "[error]: semantic error (empty link not allowed except on first node of unary expression (need to separate nodes with \".\" or \"->\")\n"); goto errperm; } break; /* OK */ case UNARY_DOTLINK: case UNARY_ARROWLINK: /* We only allow -> and . links between children of ctf_expression. */ if (node->parent->type != NODE_CTF_EXPRESSION) { fprintf(fd, "[error]: semantic error (links \".\" and \"->\" are only allowed as children of ctf expression)\n"); goto errperm; } /* * Only strings can be separated linked by . or ->. * This includes "", '' and non-quoted identifiers. */ if (node->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error]: semantic error (links \".\" and \"->\" are only allowed to separate strings and identifiers)\n"); goto errperm; } /* We don't allow link on the first node of the list */ if (is_ctf_exp && _bt_list_first_entry(is_ctf_exp_left ? &node->parent->u.ctf_expression.left : &node->parent->u.ctf_expression.right, struct ctf_node, siblings) == node) { fprintf(fd, "[error]: semantic error (links \".\" and \"->\" are not allowed before first node of the unary expression list)\n"); goto errperm; } break; case UNARY_DOTDOTDOT: /* We only allow ... link between children of enumerator. */ if (node->parent->type != NODE_ENUMERATOR) { fprintf(fd, "[error]: semantic error (link \"...\" is only allowed within enumerator)\n"); goto errperm; } /* We don't allow link on the first node of the list */ if (_bt_list_first_entry(&node->parent->u.enumerator.values, struct ctf_node, siblings) == node) { fprintf(fd, "[error]: semantic error (link \"...\" is not allowed on the first node of the unary expression list)\n"); goto errperm; } break; default: fprintf(fd, "[error] %s: unknown expression link type %d\n", __func__, (int) node->u.unary_expression.link); return -EINVAL; } return 0; errinval: fprintf(fd, "[error] %s: incoherent parent type %s for node type %s\n", __func__, node_type(node->parent), node_type(node)); return -EINVAL; /* Incoherent structure */ errperm: fprintf(fd, "[error] %s: semantic error (parent type %s for node type %s)\n", __func__, node_type(node->parent), node_type(node)); return -EPERM; /* Structure not allowed */ } static int ctf_visitor_type_specifier_list(FILE *fd, int depth, struct ctf_node *node) { switch (node->parent->type) { case NODE_CTF_EXPRESSION: case NODE_TYPE_DECLARATOR: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_ROOT: break; /* OK */ case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_UNARY_EXPRESSION: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUMERATOR: case NODE_VARIANT: case NODE_STRUCT: default: goto errinval; } return 0; errinval: fprintf(fd, "[error] %s: incoherent parent type %s for node type %s\n", __func__, node_type(node->parent), node_type(node)); return -EINVAL; /* Incoherent structure */ } static int ctf_visitor_type_specifier(FILE *fd, int depth, struct ctf_node *node) { switch (node->parent->type) { case NODE_TYPE_SPECIFIER_LIST: break; /* OK */ case NODE_CTF_EXPRESSION: case NODE_TYPE_DECLARATOR: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_UNARY_EXPRESSION: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_POINTER: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUMERATOR: case NODE_VARIANT: case NODE_STRUCT: default: goto errinval; } return 0; errinval: fprintf(fd, "[error] %s: incoherent parent type %s for node type %s\n", __func__, node_type(node->parent), node_type(node)); return -EINVAL; /* Incoherent structure */ } static int ctf_visitor_type_declarator(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; depth++; switch (node->parent->type) { case NODE_TYPE_DECLARATOR: /* * A nested type declarator is not allowed to contain pointers. */ if (!bt_list_empty(&node->u.type_declarator.pointers)) goto errperm; break; /* OK */ case NODE_TYPEALIAS_TARGET: break; /* OK */ case NODE_TYPEALIAS_ALIAS: /* * Only accept alias name containing: * - identifier * - identifier * (any number of pointers) * NOT accepting alias names containing [] (would otherwise * cause semantic clash for later declarations of * arrays/sequences of elements, where elements could be * arrays/sequences themselves (if allowed in typealias). * NOT accepting alias with identifier. The declarator should * be either empty or contain pointer(s). */ if (node->u.type_declarator.type == TYPEDEC_NESTED) goto errperm; bt_list_for_each_entry(iter, &node->parent->u.typealias_alias.type_specifier_list->u.type_specifier_list.head, siblings) { switch (iter->u.type_specifier.type) { case TYPESPEC_FLOATING_POINT: case TYPESPEC_INTEGER: case TYPESPEC_STRING: case TYPESPEC_STRUCT: case TYPESPEC_VARIANT: case TYPESPEC_ENUM: if (bt_list_empty(&node->u.type_declarator.pointers)) goto errperm; break; default: break; } } if (node->u.type_declarator.type == TYPEDEC_ID && node->u.type_declarator.u.id != NULL) goto errperm; break; /* OK */ case NODE_TYPEDEF: case NODE_STRUCT_OR_VARIANT_DECLARATION: break; /* OK */ case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_CTF_EXPRESSION: case NODE_UNARY_EXPRESSION: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_POINTER: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_VARIANT: case NODE_STRUCT: default: goto errinval; } bt_list_for_each_entry(iter, &node->u.type_declarator.pointers, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } switch (node->u.type_declarator.type) { case TYPEDEC_ID: break; case TYPEDEC_NESTED: { if (node->u.type_declarator.u.nested.type_declarator) { ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.type_declarator.u.nested.type_declarator); if (ret) return ret; } if (!node->u.type_declarator.u.nested.abstract_array) { bt_list_for_each_entry(iter, &node->u.type_declarator.u.nested.length, siblings) { if (iter->type != NODE_UNARY_EXPRESSION) { fprintf(fd, "[error] %s: expecting unary expression as length\n", __func__); return -EINVAL; } ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } } else { if (node->parent->type == NODE_TYPEALIAS_TARGET) { fprintf(fd, "[error] %s: abstract array declarator not permitted as target of typealias\n", __func__); return -EINVAL; } } if (node->u.type_declarator.bitfield_len) { ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.type_declarator.bitfield_len); if (ret) return ret; } break; } case TYPEDEC_UNKNOWN: default: fprintf(fd, "[error] %s: unknown type declarator %d\n", __func__, (int) node->u.type_declarator.type); return -EINVAL; } depth--; return 0; errinval: fprintf(fd, "[error] %s: incoherent parent type %s for node type %s\n", __func__, node_type(node->parent), node_type(node)); return -EINVAL; /* Incoherent structure */ errperm: fprintf(fd, "[error] %s: semantic error (parent type %s for node type %s)\n", __func__, node_type(node->parent), node_type(node)); return -EPERM; /* Structure not allowed */ } static int _ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; if (node->visited) return 0; switch (node->type) { case NODE_ROOT: bt_list_for_each_entry(iter, &node->u.root.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.trace, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.stream, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.event, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_EVENT: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.event.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STREAM: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.stream.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENV: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.env.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_TRACE: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.trace.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CLOCK: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.clock.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CALLSITE: switch (node->parent->type) { case NODE_ROOT: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.callsite.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CTF_EXPRESSION: switch (node->parent->type) { case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: break; /* OK */ case NODE_CTF_EXPRESSION: case NODE_UNARY_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_VARIANT: case NODE_STRUCT: default: goto errinval; } depth++; bt_list_for_each_entry(iter, &node->u.ctf_expression.left, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.ctf_expression.right, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_UNARY_EXPRESSION: return ctf_visitor_unary_expression(fd, depth, node); case NODE_TYPEDEF: switch (node->parent->type) { case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_TRACE: case NODE_VARIANT: case NODE_STRUCT: break; /* OK */ case NODE_CTF_EXPRESSION: case NODE_UNARY_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_CLOCK: case NODE_CALLSITE: case NODE_ENV: default: goto errinval; } depth++; ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u._typedef.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u._typedef.type_declarators, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_TYPEALIAS_TARGET: { int nr_declarators; switch (node->parent->type) { case NODE_TYPEALIAS: break; /* OK */ default: goto errinval; } depth++; ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.typealias_target.type_specifier_list); if (ret) return ret; nr_declarators = 0; bt_list_for_each_entry(iter, &node->u.typealias_target.type_declarators, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; nr_declarators++; } if (nr_declarators > 1) { fprintf(fd, "[error] %s: Too many declarators in typealias alias (%d, max is 1)\n", __func__, nr_declarators); return -EINVAL; } depth--; break; } case NODE_TYPEALIAS_ALIAS: { int nr_declarators; switch (node->parent->type) { case NODE_TYPEALIAS: break; /* OK */ default: goto errinval; } depth++; ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.typealias_alias.type_specifier_list); if (ret) return ret; nr_declarators = 0; bt_list_for_each_entry(iter, &node->u.typealias_alias.type_declarators, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; nr_declarators++; } if (nr_declarators > 1) { fprintf(fd, "[error] %s: Too many declarators in typealias alias (%d, max is 1)\n", __func__, nr_declarators); return -EINVAL; } depth--; break; } case NODE_TYPEALIAS: switch (node->parent->type) { case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_TRACE: case NODE_VARIANT: case NODE_STRUCT: break; /* OK */ case NODE_CTF_EXPRESSION: case NODE_UNARY_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_CLOCK: case NODE_CALLSITE: case NODE_ENV: default: goto errinval; } ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.typealias.target); if (ret) return ret; ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.typealias.alias); if (ret) return ret; break; case NODE_TYPE_SPECIFIER_LIST: ret = ctf_visitor_type_specifier_list(fd, depth, node); if (ret) return ret; break; case NODE_TYPE_SPECIFIER: ret = ctf_visitor_type_specifier(fd, depth, node); if (ret) return ret; break; case NODE_POINTER: switch (node->parent->type) { case NODE_TYPE_DECLARATOR: break; /* OK */ default: goto errinval; } break; case NODE_TYPE_DECLARATOR: ret = ctf_visitor_type_declarator(fd, depth, node); if (ret) return ret; break; case NODE_FLOATING_POINT: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; case NODE_UNARY_EXPRESSION: goto errperm; } bt_list_for_each_entry(iter, &node->u.floating_point.expressions, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_INTEGER: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; } bt_list_for_each_entry(iter, &node->u.integer.expressions, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STRING: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; case NODE_UNARY_EXPRESSION: goto errperm; } bt_list_for_each_entry(iter, &node->u.string.expressions, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENUMERATOR: switch (node->parent->type) { case NODE_ENUM: break; default: goto errinval; } /* * Enumerators are only allows to contain: * numeric unary expression * or num. unary exp. ... num. unary exp */ { int count = 0; bt_list_for_each_entry(iter, &node->u.enumerator.values, siblings) { switch (count++) { case 0: if (iter->type != NODE_UNARY_EXPRESSION || (iter->u.unary_expression.type != UNARY_SIGNED_CONSTANT && iter->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) || iter->u.unary_expression.link != UNARY_LINK_UNKNOWN) { fprintf(fd, "[error]: semantic error (first unary expression of enumerator is unexpected)\n"); goto errperm; } break; case 1: if (iter->type != NODE_UNARY_EXPRESSION || (iter->u.unary_expression.type != UNARY_SIGNED_CONSTANT && iter->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) || iter->u.unary_expression.link != UNARY_DOTDOTDOT) { fprintf(fd, "[error]: semantic error (second unary expression of enumerator is unexpected)\n"); goto errperm; } break; default: goto errperm; } } } bt_list_for_each_entry(iter, &node->u.enumerator.values, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENUM: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; case NODE_UNARY_EXPRESSION: goto errperm; } depth++; ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u._enum.container_type); if (ret) return ret; bt_list_for_each_entry(iter, &node->u._enum.enumerator_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: switch (node->parent->type) { case NODE_STRUCT: case NODE_VARIANT: break; default: goto errinval; } ret = _ctf_visitor_semantic_check(fd, depth + 1, node->u.struct_or_variant_declaration.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u.struct_or_variant_declaration.type_declarators, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_VARIANT: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; case NODE_UNARY_EXPRESSION: goto errperm; } bt_list_for_each_entry(iter, &node->u.variant.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STRUCT: switch (node->parent->type) { case NODE_TYPE_SPECIFIER: break; /* OK */ default: goto errinval; case NODE_UNARY_EXPRESSION: goto errperm; } bt_list_for_each_entry(iter, &node->u._struct.declaration_list, siblings) { ret = _ctf_visitor_semantic_check(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_UNKNOWN: default: fprintf(fd, "[error] %s: unknown node type %d\n", __func__, (int) node->type); return -EINVAL; } return ret; errinval: fprintf(fd, "[error] %s: incoherent parent type %s for node type %s\n", __func__, node_type(node->parent), node_type(node)); return -EINVAL; /* Incoherent structure */ errperm: fprintf(fd, "[error] %s: semantic error (parent type %s for node type %s)\n", __func__, node_type(node->parent), node_type(node)); return -EPERM; /* Structure not allowed */ } int ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; /* * First make sure we create the parent links for all children. Let's * take the safe route and recreate them at each validation, just in * case the structure has changed. */ printf_verbose("CTF visitor: parent links creation... "); ret = ctf_visitor_parent_links(fd, depth, node); if (ret) return ret; printf_verbose("done.\n"); printf_verbose("CTF visitor: semantic check... "); ret = _ctf_visitor_semantic_check(fd, depth, node); if (ret) return ret; printf_verbose("done.\n"); return ret; } babeltrace-1.2.1/formats/ctf/metadata/ctf-visitor-generate-io-struct.c0000644000175000017500000026775312304150543022704 00000000000000/* * ctf-visitor-generate-io-struct.c * * Common Trace Format Metadata Visitor (generate I/O structures). * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define fprintf_dbg(fd, fmt, args...) fprintf(fd, "%s: " fmt, __func__, ## args) #define _bt_list_first_entry(ptr, type, member) \ bt_list_entry((ptr)->next, type, member) struct last_enum_value { union { int64_t s; uint64_t u; } u; }; int opt_clock_force_correlate; static struct bt_declaration *ctf_type_specifier_list_visit(FILE *fd, int depth, struct ctf_node *type_specifier_list, struct declaration_scope *declaration_scope, struct ctf_trace *trace); static int ctf_stream_visit(FILE *fd, int depth, struct ctf_node *node, struct declaration_scope *parent_declaration_scope, struct ctf_trace *trace); static int is_unary_string(struct bt_list_head *head) { struct ctf_node *node; bt_list_for_each_entry(node, head, siblings) { if (node->type != NODE_UNARY_EXPRESSION) return 0; if (node->u.unary_expression.type != UNARY_STRING) return 0; } return 1; } /* * String returned must be freed by the caller using g_free. */ static char *concatenate_unary_strings(struct bt_list_head *head) { struct ctf_node *node; GString *str; int i = 0; str = g_string_new(""); bt_list_for_each_entry(node, head, siblings) { char *src_string; if (node->type != NODE_UNARY_EXPRESSION || node->u.unary_expression.type != UNARY_STRING || !((node->u.unary_expression.link != UNARY_LINK_UNKNOWN) ^ (i == 0))) return NULL; switch (node->u.unary_expression.link) { case UNARY_DOTLINK: g_string_append(str, "."); break; case UNARY_ARROWLINK: g_string_append(str, "->"); break; case UNARY_DOTDOTDOT: g_string_append(str, "..."); break; default: break; } src_string = node->u.unary_expression.u.string; g_string_append(str, src_string); i++; } return g_string_free(str, FALSE); } static GQuark get_map_clock_name_value(struct bt_list_head *head) { struct ctf_node *node; const char *name = NULL; int i = 0; bt_list_for_each_entry(node, head, siblings) { char *src_string; if (node->type != NODE_UNARY_EXPRESSION || node->u.unary_expression.type != UNARY_STRING || !((node->u.unary_expression.link != UNARY_LINK_UNKNOWN) ^ (i == 0))) return 0; /* needs to be chained with . */ switch (node->u.unary_expression.link) { case UNARY_DOTLINK: break; case UNARY_ARROWLINK: case UNARY_DOTDOTDOT: return 0; default: break; } src_string = node->u.unary_expression.u.string; switch (i) { case 0: if (strcmp("clock", src_string) != 0) { return 0; } break; case 1: name = src_string; break; case 2: if (strcmp("value", src_string) != 0) { return 0; } break; default: return 0; /* extra identifier, unknown */ } i++; } return g_quark_from_string(name); } static int is_unary_unsigned(struct bt_list_head *head) { struct ctf_node *node; bt_list_for_each_entry(node, head, siblings) { if (node->type != NODE_UNARY_EXPRESSION) return 0; if (node->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) return 0; } return 1; } static int get_unary_unsigned(struct bt_list_head *head, uint64_t *value) { struct ctf_node *node; int i = 0; bt_list_for_each_entry(node, head, siblings) { if (node->type != NODE_UNARY_EXPRESSION || node->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT || node->u.unary_expression.link != UNARY_LINK_UNKNOWN || i != 0) return -EINVAL; *value = node->u.unary_expression.u.unsigned_constant; i++; } return 0; } static int is_unary_signed(struct bt_list_head *head) { struct ctf_node *node; bt_list_for_each_entry(node, head, siblings) { if (node->type != NODE_UNARY_EXPRESSION) return 0; if (node->u.unary_expression.type != UNARY_SIGNED_CONSTANT) return 0; } return 1; } static int get_unary_signed(struct bt_list_head *head, int64_t *value) { struct ctf_node *node; int i = 0; bt_list_for_each_entry(node, head, siblings) { if (node->type != NODE_UNARY_EXPRESSION || node->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT || (node->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT && node->u.unary_expression.type != UNARY_SIGNED_CONSTANT) || node->u.unary_expression.link != UNARY_LINK_UNKNOWN || i != 0) return -EINVAL; switch (node->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: *value = (int64_t) node->u.unary_expression.u.unsigned_constant; break; case UNARY_SIGNED_CONSTANT: *value = node->u.unary_expression.u.signed_constant; break; default: return -EINVAL; } i++; } return 0; } static int get_unary_uuid(struct bt_list_head *head, unsigned char *uuid) { struct ctf_node *node; int i = 0; int ret = -1; bt_list_for_each_entry(node, head, siblings) { const char *src_string; if (node->type != NODE_UNARY_EXPRESSION || node->u.unary_expression.type != UNARY_STRING || node->u.unary_expression.link != UNARY_LINK_UNKNOWN || i != 0) return -EINVAL; src_string = node->u.unary_expression.u.string; ret = babeltrace_uuid_parse(src_string, uuid); } return ret; } static struct ctf_stream_declaration *trace_stream_lookup(struct ctf_trace *trace, uint64_t stream_id) { if (trace->streams->len <= stream_id) return NULL; return g_ptr_array_index(trace->streams, stream_id); } static struct ctf_event_declaration *stream_event_lookup(struct ctf_stream_declaration *stream, uint64_t event_id) { if (stream->events_by_id->len <= event_id) return NULL; return g_ptr_array_index(stream->events_by_id, event_id); } static struct ctf_clock *trace_clock_lookup(struct ctf_trace *trace, GQuark clock_name) { return g_hash_table_lookup(trace->parent.clocks, (gpointer) (unsigned long) clock_name); } static int visit_type_specifier(FILE *fd, struct ctf_node *type_specifier, GString *str) { if (type_specifier->type != NODE_TYPE_SPECIFIER) return -EINVAL; switch (type_specifier->u.type_specifier.type) { case TYPESPEC_VOID: g_string_append(str, "void"); break; case TYPESPEC_CHAR: g_string_append(str, "char"); break; case TYPESPEC_SHORT: g_string_append(str, "short"); break; case TYPESPEC_INT: g_string_append(str, "int"); break; case TYPESPEC_LONG: g_string_append(str, "long"); break; case TYPESPEC_FLOAT: g_string_append(str, "float"); break; case TYPESPEC_DOUBLE: g_string_append(str, "double"); break; case TYPESPEC_SIGNED: g_string_append(str, "signed"); break; case TYPESPEC_UNSIGNED: g_string_append(str, "unsigned"); break; case TYPESPEC_BOOL: g_string_append(str, "bool"); break; case TYPESPEC_COMPLEX: g_string_append(str, "_Complex"); break; case TYPESPEC_IMAGINARY: g_string_append(str, "_Imaginary"); break; case TYPESPEC_CONST: g_string_append(str, "const"); break; case TYPESPEC_ID_TYPE: if (type_specifier->u.type_specifier.id_type) g_string_append(str, type_specifier->u.type_specifier.id_type); break; case TYPESPEC_STRUCT: { struct ctf_node *node = type_specifier->u.type_specifier.node; if (!node->u._struct.name) { fprintf(fd, "[error] %s: unexpected empty variant name\n", __func__); return -EINVAL; } g_string_append(str, "struct "); g_string_append(str, node->u._struct.name); break; } case TYPESPEC_VARIANT: { struct ctf_node *node = type_specifier->u.type_specifier.node; if (!node->u.variant.name) { fprintf(fd, "[error] %s: unexpected empty variant name\n", __func__); return -EINVAL; } g_string_append(str, "variant "); g_string_append(str, node->u.variant.name); break; } case TYPESPEC_ENUM: { struct ctf_node *node = type_specifier->u.type_specifier.node; if (!node->u._enum.enum_id) { fprintf(fd, "[error] %s: unexpected empty enum ID\n", __func__); return -EINVAL; } g_string_append(str, "enum "); g_string_append(str, node->u._enum.enum_id); break; } case TYPESPEC_FLOATING_POINT: case TYPESPEC_INTEGER: case TYPESPEC_STRING: default: fprintf(fd, "[error] %s: unknown specifier\n", __func__); return -EINVAL; } return 0; } static int visit_type_specifier_list(FILE *fd, struct ctf_node *type_specifier_list, GString *str) { struct ctf_node *iter; int alias_item_nr = 0; int ret; bt_list_for_each_entry(iter, &type_specifier_list->u.type_specifier_list.head, siblings) { if (alias_item_nr != 0) g_string_append(str, " "); alias_item_nr++; ret = visit_type_specifier(fd, iter, str); if (ret) return ret; } return 0; } static GQuark create_typealias_identifier(FILE *fd, int depth, struct ctf_node *type_specifier_list, struct ctf_node *node_type_declarator) { struct ctf_node *iter; GString *str; char *str_c; GQuark alias_q; int ret; str = g_string_new(""); ret = visit_type_specifier_list(fd, type_specifier_list, str); if (ret) { g_string_free(str, TRUE); return 0; } bt_list_for_each_entry(iter, &node_type_declarator->u.type_declarator.pointers, siblings) { g_string_append(str, " *"); if (iter->u.pointer.const_qualifier) g_string_append(str, " const"); } str_c = g_string_free(str, FALSE); alias_q = g_quark_from_string(str_c); g_free(str_c); return alias_q; } static struct bt_declaration *ctf_type_declarator_visit(FILE *fd, int depth, struct ctf_node *type_specifier_list, GQuark *field_name, struct ctf_node *node_type_declarator, struct declaration_scope *declaration_scope, struct bt_declaration *nested_declaration, struct ctf_trace *trace) { /* * Visit type declarator by first taking care of sequence/array * (recursively). Then, when we get to the identifier, take care * of pointers. */ if (node_type_declarator) { if (node_type_declarator->u.type_declarator.type == TYPEDEC_UNKNOWN) { return NULL; } /* TODO: gcc bitfields not supported yet. */ if (node_type_declarator->u.type_declarator.bitfield_len != NULL) { fprintf(fd, "[error] %s: gcc bitfields are not supported yet.\n", __func__); return NULL; } } if (!nested_declaration) { if (node_type_declarator && !bt_list_empty(&node_type_declarator->u.type_declarator.pointers)) { GQuark alias_q; /* * If we have a pointer declarator, it _has_ to be present in * the typealiases (else fail). */ alias_q = create_typealias_identifier(fd, depth, type_specifier_list, node_type_declarator); nested_declaration = bt_lookup_declaration(alias_q, declaration_scope); if (!nested_declaration) { fprintf(fd, "[error] %s: cannot find typealias \"%s\".\n", __func__, g_quark_to_string(alias_q)); return NULL; } if (nested_declaration->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(nested_declaration, struct declaration_integer, p); /* For base to 16 for pointers (expected pretty-print) */ if (!integer_declaration->base) { /* * We need to do a copy of the * integer declaration to modify it. There could be other references to * it. */ integer_declaration = bt_integer_declaration_new(integer_declaration->len, integer_declaration->byte_order, integer_declaration->signedness, integer_declaration->p.alignment, 16, integer_declaration->encoding, integer_declaration->clock); nested_declaration = &integer_declaration->p; } } } else { nested_declaration = ctf_type_specifier_list_visit(fd, depth, type_specifier_list, declaration_scope, trace); } } if (!node_type_declarator) return nested_declaration; if (node_type_declarator->u.type_declarator.type == TYPEDEC_ID) { if (node_type_declarator->u.type_declarator.u.id) *field_name = g_quark_from_string(node_type_declarator->u.type_declarator.u.id); else *field_name = 0; return nested_declaration; } else { struct bt_declaration *declaration; struct ctf_node *first; /* TYPEDEC_NESTED */ if (!nested_declaration) { fprintf(fd, "[error] %s: nested type is unknown.\n", __func__); return NULL; } /* create array/sequence, pass nested_declaration as child. */ if (bt_list_empty(&node_type_declarator->u.type_declarator.u.nested.length)) { fprintf(fd, "[error] %s: expecting length field reference or value.\n", __func__); return NULL; } first = _bt_list_first_entry(&node_type_declarator->u.type_declarator.u.nested.length, struct ctf_node, siblings); if (first->type != NODE_UNARY_EXPRESSION) { return NULL; } switch (first->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: { struct declaration_array *array_declaration; size_t len; len = first->u.unary_expression.u.unsigned_constant; array_declaration = bt_array_declaration_new(len, nested_declaration, declaration_scope); if (!array_declaration) { fprintf(fd, "[error] %s: cannot create array declaration.\n", __func__); return NULL; } bt_declaration_unref(nested_declaration); declaration = &array_declaration->p; break; } case UNARY_STRING: { /* Lookup unsigned integer definition, create sequence */ char *length_name = concatenate_unary_strings(&node_type_declarator->u.type_declarator.u.nested.length); struct declaration_sequence *sequence_declaration; if (!length_name) return NULL; sequence_declaration = bt_sequence_declaration_new(length_name, nested_declaration, declaration_scope); if (!sequence_declaration) { fprintf(fd, "[error] %s: cannot create sequence declaration.\n", __func__); g_free(length_name); return NULL; } bt_declaration_unref(nested_declaration); declaration = &sequence_declaration->p; g_free(length_name); break; } default: return NULL; } /* Pass it as content of outer container */ declaration = ctf_type_declarator_visit(fd, depth, type_specifier_list, field_name, node_type_declarator->u.type_declarator.u.nested.type_declarator, declaration_scope, declaration, trace); return declaration; } } static int ctf_struct_type_declarators_visit(FILE *fd, int depth, struct declaration_struct *struct_declaration, struct ctf_node *type_specifier_list, struct bt_list_head *type_declarators, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct ctf_node *iter; GQuark field_name; bt_list_for_each_entry(iter, type_declarators, siblings) { struct bt_declaration *field_declaration; field_declaration = ctf_type_declarator_visit(fd, depth, type_specifier_list, &field_name, iter, struct_declaration->scope, NULL, trace); if (!field_declaration) { fprintf(fd, "[error] %s: unable to find struct field declaration type\n", __func__); return -EINVAL; } /* Check if field with same name already exists */ if (bt_struct_declaration_lookup_field_index(struct_declaration, field_name) >= 0) { fprintf(fd, "[error] %s: duplicate field %s in struct\n", __func__, g_quark_to_string(field_name)); return -EINVAL; } bt_struct_declaration_add_field(struct_declaration, g_quark_to_string(field_name), field_declaration); bt_declaration_unref(field_declaration); } return 0; } static int ctf_variant_type_declarators_visit(FILE *fd, int depth, struct declaration_untagged_variant *untagged_variant_declaration, struct ctf_node *type_specifier_list, struct bt_list_head *type_declarators, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct ctf_node *iter; GQuark field_name; bt_list_for_each_entry(iter, type_declarators, siblings) { struct bt_declaration *field_declaration; field_declaration = ctf_type_declarator_visit(fd, depth, type_specifier_list, &field_name, iter, untagged_variant_declaration->scope, NULL, trace); if (!field_declaration) { fprintf(fd, "[error] %s: unable to find variant field declaration type\n", __func__); return -EINVAL; } if (bt_untagged_variant_declaration_get_field_from_tag(untagged_variant_declaration, field_name) != NULL) { fprintf(fd, "[error] %s: duplicate field %s in variant\n", __func__, g_quark_to_string(field_name)); return -EINVAL; } bt_untagged_variant_declaration_add_field(untagged_variant_declaration, g_quark_to_string(field_name), field_declaration); bt_declaration_unref(field_declaration); } return 0; } static int ctf_typedef_visit(FILE *fd, int depth, struct declaration_scope *scope, struct ctf_node *type_specifier_list, struct bt_list_head *type_declarators, struct ctf_trace *trace) { struct ctf_node *iter; GQuark identifier; bt_list_for_each_entry(iter, type_declarators, siblings) { struct bt_declaration *type_declaration; int ret; type_declaration = ctf_type_declarator_visit(fd, depth, type_specifier_list, &identifier, iter, scope, NULL, trace); if (!type_declaration) { fprintf(fd, "[error] %s: problem creating type declaration\n", __func__); return -EINVAL; } /* * Don't allow typedef and typealias of untagged * variants. */ if (type_declaration->id == CTF_TYPE_UNTAGGED_VARIANT) { fprintf(fd, "[error] %s: typedef of untagged variant is not permitted.\n", __func__); bt_declaration_unref(type_declaration); return -EPERM; } ret = bt_register_declaration(identifier, type_declaration, scope); if (ret) { type_declaration->declaration_free(type_declaration); return ret; } bt_declaration_unref(type_declaration); } return 0; } static int ctf_typealias_visit(FILE *fd, int depth, struct declaration_scope *scope, struct ctf_node *target, struct ctf_node *alias, struct ctf_trace *trace) { struct bt_declaration *type_declaration; struct ctf_node *node; GQuark dummy_id; GQuark alias_q; int err; /* See ctf_visitor_type_declarator() in the semantic validator. */ /* * Create target type declaration. */ if (bt_list_empty(&target->u.typealias_target.type_declarators)) node = NULL; else node = _bt_list_first_entry(&target->u.typealias_target.type_declarators, struct ctf_node, siblings); type_declaration = ctf_type_declarator_visit(fd, depth, target->u.typealias_target.type_specifier_list, &dummy_id, node, scope, NULL, trace); if (!type_declaration) { fprintf(fd, "[error] %s: problem creating type declaration\n", __func__); err = -EINVAL; goto error; } /* * Don't allow typedef and typealias of untagged * variants. */ if (type_declaration->id == CTF_TYPE_UNTAGGED_VARIANT) { fprintf(fd, "[error] %s: typedef of untagged variant is not permitted.\n", __func__); bt_declaration_unref(type_declaration); return -EPERM; } /* * The semantic validator does not check whether the target is * abstract or not (if it has an identifier). Check it here. */ if (dummy_id != 0) { fprintf(fd, "[error] %s: expecting empty identifier\n", __func__); err = -EINVAL; goto error; } /* * Create alias identifier. */ node = _bt_list_first_entry(&alias->u.typealias_alias.type_declarators, struct ctf_node, siblings); alias_q = create_typealias_identifier(fd, depth, alias->u.typealias_alias.type_specifier_list, node); err = bt_register_declaration(alias_q, type_declaration, scope); if (err) goto error; bt_declaration_unref(type_declaration); return 0; error: if (type_declaration) { type_declaration->declaration_free(type_declaration); } return err; } static int ctf_struct_declaration_list_visit(FILE *fd, int depth, struct ctf_node *iter, struct declaration_struct *struct_declaration, struct ctf_trace *trace) { int ret; switch (iter->type) { case NODE_TYPEDEF: /* For each declarator, declare type and add type to struct bt_declaration scope */ ret = ctf_typedef_visit(fd, depth, struct_declaration->scope, iter->u._typedef.type_specifier_list, &iter->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: /* Declare type with declarator and add type to struct bt_declaration scope */ ret = ctf_typealias_visit(fd, depth, struct_declaration->scope, iter->u.typealias.target, iter->u.typealias.alias, trace); if (ret) return ret; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: /* Add field to structure declaration */ ret = ctf_struct_type_declarators_visit(fd, depth, struct_declaration, iter->u.struct_or_variant_declaration.type_specifier_list, &iter->u.struct_or_variant_declaration.type_declarators, struct_declaration->scope, trace); if (ret) return ret; break; default: fprintf(fd, "[error] %s: unexpected node type %d\n", __func__, (int) iter->type); return -EINVAL; } return 0; } static int ctf_variant_declaration_list_visit(FILE *fd, int depth, struct ctf_node *iter, struct declaration_untagged_variant *untagged_variant_declaration, struct ctf_trace *trace) { int ret; switch (iter->type) { case NODE_TYPEDEF: /* For each declarator, declare type and add type to variant declaration scope */ ret = ctf_typedef_visit(fd, depth, untagged_variant_declaration->scope, iter->u._typedef.type_specifier_list, &iter->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: /* Declare type with declarator and add type to variant declaration scope */ ret = ctf_typealias_visit(fd, depth, untagged_variant_declaration->scope, iter->u.typealias.target, iter->u.typealias.alias, trace); if (ret) return ret; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: /* Add field to structure declaration */ ret = ctf_variant_type_declarators_visit(fd, depth, untagged_variant_declaration, iter->u.struct_or_variant_declaration.type_specifier_list, &iter->u.struct_or_variant_declaration.type_declarators, untagged_variant_declaration->scope, trace); if (ret) return ret; break; default: fprintf(fd, "[error] %s: unexpected node type %d\n", __func__, (int) iter->type); return -EINVAL; } return 0; } static struct bt_declaration *ctf_declaration_struct_visit(FILE *fd, int depth, const char *name, struct bt_list_head *declaration_list, int has_body, struct bt_list_head *min_align, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct declaration_struct *struct_declaration; struct ctf_node *iter; /* * For named struct (without body), lookup in * declaration scope. Don't take reference on struct * declaration: ref is only taken upon definition. */ if (!has_body) { if (!name) return NULL; struct_declaration = bt_lookup_struct_declaration(g_quark_from_string(name), declaration_scope); bt_declaration_ref(&struct_declaration->p); return &struct_declaration->p; } else { uint64_t min_align_value = 0; /* For unnamed struct, create type */ /* For named struct (with body), create type and add to declaration scope */ if (name) { if (bt_lookup_struct_declaration(g_quark_from_string(name), declaration_scope)) { fprintf(fd, "[error] %s: struct %s already declared in scope\n", __func__, name); return NULL; } } if (!bt_list_empty(min_align)) { int ret; ret = get_unary_unsigned(min_align, &min_align_value); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for structure \"align\" attribute\n", __func__); goto error; } } struct_declaration = bt_struct_declaration_new(declaration_scope, min_align_value); bt_list_for_each_entry(iter, declaration_list, siblings) { int ret; ret = ctf_struct_declaration_list_visit(fd, depth + 1, iter, struct_declaration, trace); if (ret) goto error_free_declaration; } if (name) { int ret; ret = bt_register_struct_declaration(g_quark_from_string(name), struct_declaration, declaration_scope); if (ret) return NULL; } return &struct_declaration->p; } error_free_declaration: struct_declaration->p.declaration_free(&struct_declaration->p); error: return NULL; } static struct bt_declaration *ctf_declaration_variant_visit(FILE *fd, int depth, const char *name, const char *choice, struct bt_list_head *declaration_list, int has_body, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct declaration_untagged_variant *untagged_variant_declaration; struct declaration_variant *variant_declaration; struct ctf_node *iter; /* * For named variant (without body), lookup in * declaration scope. Don't take reference on variant * declaration: ref is only taken upon definition. */ if (!has_body) { if (!name) return NULL; untagged_variant_declaration = bt_lookup_variant_declaration(g_quark_from_string(name), declaration_scope); bt_declaration_ref(&untagged_variant_declaration->p); } else { /* For unnamed variant, create type */ /* For named variant (with body), create type and add to declaration scope */ if (name) { if (bt_lookup_variant_declaration(g_quark_from_string(name), declaration_scope)) { fprintf(fd, "[error] %s: variant %s already declared in scope\n", __func__, name); return NULL; } } untagged_variant_declaration = bt_untagged_bt_variant_declaration_new(declaration_scope); bt_list_for_each_entry(iter, declaration_list, siblings) { int ret; ret = ctf_variant_declaration_list_visit(fd, depth + 1, iter, untagged_variant_declaration, trace); if (ret) goto error; } if (name) { int ret; ret = bt_register_variant_declaration(g_quark_from_string(name), untagged_variant_declaration, declaration_scope); if (ret) return NULL; } } /* * if tagged, create tagged variant and return. else return * untagged variant. */ if (!choice) { return &untagged_variant_declaration->p; } else { variant_declaration = bt_variant_declaration_new(untagged_variant_declaration, choice); if (!variant_declaration) goto error; bt_declaration_unref(&untagged_variant_declaration->p); return &variant_declaration->p; } error: untagged_variant_declaration->p.declaration_free(&untagged_variant_declaration->p); return NULL; } static int ctf_enumerator_list_visit(FILE *fd, int depth, struct ctf_node *enumerator, struct declaration_enum *enum_declaration, struct last_enum_value *last) { GQuark q; struct ctf_node *iter; q = g_quark_from_string(enumerator->u.enumerator.id); if (enum_declaration->integer_declaration->signedness) { int64_t start, end; int nr_vals = 0; bt_list_for_each_entry(iter, &enumerator->u.enumerator.values, siblings) { int64_t *target; if (iter->type != NODE_UNARY_EXPRESSION) return -EINVAL; if (nr_vals == 0) target = &start; else target = &end; switch (iter->u.unary_expression.type) { case UNARY_SIGNED_CONSTANT: *target = iter->u.unary_expression.u.signed_constant; break; case UNARY_UNSIGNED_CONSTANT: *target = iter->u.unary_expression.u.unsigned_constant; break; default: fprintf(fd, "[error] %s: invalid enumerator\n", __func__); return -EINVAL; } if (nr_vals > 1) { fprintf(fd, "[error] %s: invalid enumerator\n", __func__); return -EINVAL; } nr_vals++; } if (nr_vals == 0) start = last->u.s; if (nr_vals <= 1) end = start; last->u.s = end + 1; bt_enum_signed_insert(enum_declaration, start, end, q); } else { uint64_t start, end; int nr_vals = 0; bt_list_for_each_entry(iter, &enumerator->u.enumerator.values, siblings) { uint64_t *target; if (iter->type != NODE_UNARY_EXPRESSION) return -EINVAL; if (nr_vals == 0) target = &start; else target = &end; switch (iter->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: *target = iter->u.unary_expression.u.unsigned_constant; break; case UNARY_SIGNED_CONSTANT: /* * We don't accept signed constants for enums with unsigned * container type. */ fprintf(fd, "[error] %s: invalid enumerator (signed constant encountered, but enum container type is unsigned)\n", __func__); return -EINVAL; default: fprintf(fd, "[error] %s: invalid enumerator\n", __func__); return -EINVAL; } if (nr_vals > 1) { fprintf(fd, "[error] %s: invalid enumerator\n", __func__); return -EINVAL; } nr_vals++; } if (nr_vals == 0) start = last->u.u; if (nr_vals <= 1) end = start; last->u.u = end + 1; bt_enum_unsigned_insert(enum_declaration, start, end, q); } return 0; } static struct bt_declaration *ctf_declaration_enum_visit(FILE *fd, int depth, const char *name, struct ctf_node *container_type, struct bt_list_head *enumerator_list, int has_body, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct bt_declaration *declaration; struct declaration_enum *enum_declaration; struct declaration_integer *integer_declaration; struct last_enum_value last_value; struct ctf_node *iter; GQuark dummy_id; /* * For named enum (without body), lookup in * declaration scope. Don't take reference on enum * declaration: ref is only taken upon definition. */ if (!has_body) { if (!name) return NULL; enum_declaration = bt_lookup_enum_declaration(g_quark_from_string(name), declaration_scope); bt_declaration_ref(&enum_declaration->p); return &enum_declaration->p; } else { /* For unnamed enum, create type */ /* For named enum (with body), create type and add to declaration scope */ if (name) { if (bt_lookup_enum_declaration(g_quark_from_string(name), declaration_scope)) { fprintf(fd, "[error] %s: enum %s already declared in scope\n", __func__, name); return NULL; } } if (!container_type) { declaration = bt_lookup_declaration(g_quark_from_static_string("int"), declaration_scope); if (!declaration) { fprintf(fd, "[error] %s: \"int\" type declaration missing for enumeration\n", __func__); return NULL; } } else { declaration = ctf_type_declarator_visit(fd, depth, container_type, &dummy_id, NULL, declaration_scope, NULL, trace); } if (!declaration) { fprintf(fd, "[error] %s: unable to create container type for enumeration\n", __func__); return NULL; } if (declaration->id != CTF_TYPE_INTEGER) { fprintf(fd, "[error] %s: container type for enumeration is not integer\n", __func__); return NULL; } integer_declaration = container_of(declaration, struct declaration_integer, p); enum_declaration = bt_enum_declaration_new(integer_declaration); bt_declaration_unref(&integer_declaration->p); /* leave ref to enum */ if (enum_declaration->integer_declaration->signedness) { last_value.u.s = 0; } else { last_value.u.u = 0; } bt_list_for_each_entry(iter, enumerator_list, siblings) { int ret; ret = ctf_enumerator_list_visit(fd, depth + 1, iter, enum_declaration, &last_value); if (ret) goto error; } if (name) { int ret; ret = bt_register_enum_declaration(g_quark_from_string(name), enum_declaration, declaration_scope); if (ret) return NULL; bt_declaration_unref(&enum_declaration->p); } return &enum_declaration->p; } error: enum_declaration->p.declaration_free(&enum_declaration->p); return NULL; } static struct bt_declaration *ctf_declaration_type_specifier_visit(FILE *fd, int depth, struct ctf_node *type_specifier_list, struct declaration_scope *declaration_scope) { GString *str; struct bt_declaration *declaration; char *str_c; int ret; GQuark id_q; str = g_string_new(""); ret = visit_type_specifier_list(fd, type_specifier_list, str); if (ret) { (void) g_string_free(str, TRUE); return NULL; } str_c = g_string_free(str, FALSE); id_q = g_quark_from_string(str_c); g_free(str_c); declaration = bt_lookup_declaration(id_q, declaration_scope); if (!declaration) return NULL; bt_declaration_ref(declaration); return declaration; } /* * Returns 0/1 boolean, or < 0 on error. */ static int get_boolean(FILE *fd, int depth, struct ctf_node *unary_expression) { if (unary_expression->type != NODE_UNARY_EXPRESSION) { fprintf(fd, "[error] %s: expecting unary expression\n", __func__); return -EINVAL; } switch (unary_expression->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: if (unary_expression->u.unary_expression.u.unsigned_constant == 0) return 0; else return 1; case UNARY_SIGNED_CONSTANT: if (unary_expression->u.unary_expression.u.signed_constant == 0) return 0; else return 1; case UNARY_STRING: if (!strcmp(unary_expression->u.unary_expression.u.string, "true")) return 1; else if (!strcmp(unary_expression->u.unary_expression.u.string, "TRUE")) return 1; else if (!strcmp(unary_expression->u.unary_expression.u.string, "false")) return 0; else if (!strcmp(unary_expression->u.unary_expression.u.string, "FALSE")) return 0; else { fprintf(fd, "[error] %s: unexpected string \"%s\"\n", __func__, unary_expression->u.unary_expression.u.string); return -EINVAL; } break; default: fprintf(fd, "[error] %s: unexpected unary expression type\n", __func__); return -EINVAL; } } static int get_trace_byte_order(FILE *fd, int depth, struct ctf_node *unary_expression) { int byte_order; if (unary_expression->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error] %s: byte_order: expecting string\n", __func__); return -EINVAL; } if (!strcmp(unary_expression->u.unary_expression.u.string, "be")) byte_order = BIG_ENDIAN; else if (!strcmp(unary_expression->u.unary_expression.u.string, "le")) byte_order = LITTLE_ENDIAN; else { fprintf(fd, "[error] %s: unexpected string \"%s\". Should be \"be\" or \"le\".\n", __func__, unary_expression->u.unary_expression.u.string); return -EINVAL; } return byte_order; } static int get_byte_order(FILE *fd, int depth, struct ctf_node *unary_expression, struct ctf_trace *trace) { int byte_order; if (unary_expression->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error] %s: byte_order: expecting string\n", __func__); return -EINVAL; } if (!strcmp(unary_expression->u.unary_expression.u.string, "native")) byte_order = trace->byte_order; else if (!strcmp(unary_expression->u.unary_expression.u.string, "network")) byte_order = BIG_ENDIAN; else if (!strcmp(unary_expression->u.unary_expression.u.string, "be")) byte_order = BIG_ENDIAN; else if (!strcmp(unary_expression->u.unary_expression.u.string, "le")) byte_order = LITTLE_ENDIAN; else { fprintf(fd, "[error] %s: unexpected string \"%s\". Should be \"native\", \"network\", \"be\" or \"le\".\n", __func__, unary_expression->u.unary_expression.u.string); return -EINVAL; } return byte_order; } static struct bt_declaration *ctf_declaration_integer_visit(FILE *fd, int depth, struct bt_list_head *expressions, struct ctf_trace *trace) { struct ctf_node *expression; uint64_t alignment = 1, size = 0; int byte_order = trace->byte_order; int signedness = 0; int has_alignment = 0, has_size = 0; int base = 0; enum ctf_string_encoding encoding = CTF_STRING_NONE; struct ctf_clock *clock = NULL; struct declaration_integer *integer_declaration; bt_list_for_each_entry(expression, expressions, siblings) { struct ctf_node *left, *right; left = _bt_list_first_entry(&expression->u.ctf_expression.left, struct ctf_node, siblings); right = _bt_list_first_entry(&expression->u.ctf_expression.right, struct ctf_node, siblings); if (left->u.unary_expression.type != UNARY_STRING) return NULL; if (!strcmp(left->u.unary_expression.u.string, "signed")) { signedness = get_boolean(fd, depth, right); if (signedness < 0) return NULL; } else if (!strcmp(left->u.unary_expression.u.string, "byte_order")) { byte_order = get_byte_order(fd, depth, right, trace); if (byte_order < 0) return NULL; } else if (!strcmp(left->u.unary_expression.u.string, "size")) { if (right->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) { fprintf(fd, "[error] %s: size: expecting unsigned constant\n", __func__); return NULL; } size = right->u.unary_expression.u.unsigned_constant; if (!size) { fprintf(fd, "[error] %s: integer size: expecting non-zero constant\n", __func__); return NULL; } has_size = 1; } else if (!strcmp(left->u.unary_expression.u.string, "align")) { if (right->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) { fprintf(fd, "[error] %s: align: expecting unsigned constant\n", __func__); return NULL; } alignment = right->u.unary_expression.u.unsigned_constant; /* Make sure alignment is a power of two */ if (alignment == 0 || (alignment & (alignment - 1)) != 0) { fprintf(fd, "[error] %s: align: expecting power of two\n", __func__); return NULL; } has_alignment = 1; } else if (!strcmp(left->u.unary_expression.u.string, "base")) { switch (right->u.unary_expression.type) { case UNARY_UNSIGNED_CONSTANT: switch (right->u.unary_expression.u.unsigned_constant) { case 2: case 8: case 10: case 16: base = right->u.unary_expression.u.unsigned_constant; break; default: fprintf(fd, "[error] %s: base not supported (%" PRIu64 ")\n", __func__, right->u.unary_expression.u.unsigned_constant); return NULL; } break; case UNARY_STRING: { char *s_right = concatenate_unary_strings(&expression->u.ctf_expression.right); if (!s_right) { fprintf(fd, "[error] %s: unexpected unary expression for integer base\n", __func__); g_free(s_right); return NULL; } if (!strcmp(s_right, "decimal") || !strcmp(s_right, "dec") || !strcmp(s_right, "d") || !strcmp(s_right, "i") || !strcmp(s_right, "u")) { base = 10; } else if (!strcmp(s_right, "hexadecimal") || !strcmp(s_right, "hex") || !strcmp(s_right, "x") || !strcmp(s_right, "X") || !strcmp(s_right, "p")) { base = 16; } else if (!strcmp(s_right, "octal") || !strcmp(s_right, "oct") || !strcmp(s_right, "o")) { base = 8; } else if (!strcmp(s_right, "binary") || !strcmp(s_right, "b")) { base = 2; } else { fprintf(fd, "[error] %s: unexpected expression for integer base (%s)\n", __func__, s_right); g_free(s_right); return NULL; } g_free(s_right); break; } default: fprintf(fd, "[error] %s: base: expecting unsigned constant or unary string\n", __func__); return NULL; } } else if (!strcmp(left->u.unary_expression.u.string, "encoding")) { char *s_right; if (right->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error] %s: encoding: expecting unary string\n", __func__); return NULL; } s_right = concatenate_unary_strings(&expression->u.ctf_expression.right); if (!s_right) { fprintf(fd, "[error] %s: unexpected unary expression for integer base\n", __func__); g_free(s_right); return NULL; } if (!strcmp(s_right, "UTF8") || !strcmp(s_right, "utf8") || !strcmp(s_right, "utf-8") || !strcmp(s_right, "UTF-8")) encoding = CTF_STRING_UTF8; else if (!strcmp(s_right, "ASCII") || !strcmp(s_right, "ascii")) encoding = CTF_STRING_ASCII; else if (!strcmp(s_right, "none")) encoding = CTF_STRING_NONE; else { fprintf(fd, "[error] %s: unknown string encoding \"%s\"\n", __func__, s_right); g_free(s_right); return NULL; } g_free(s_right); } else if (!strcmp(left->u.unary_expression.u.string, "map")) { GQuark clock_name; if (right->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error] %s: map: expecting identifier\n", __func__); return NULL; } /* currently only support clock.name.value */ clock_name = get_map_clock_name_value(&expression->u.ctf_expression.right); if (!clock_name) { char *s_right; s_right = concatenate_unary_strings(&expression->u.ctf_expression.right); if (!s_right) { fprintf(fd, "[error] %s: unexpected unary expression for integer map\n", __func__); g_free(s_right); return NULL; } fprintf(fd, "[warning] %s: unknown map %s in integer declaration\n", __func__, s_right); g_free(s_right); continue; } clock = trace_clock_lookup(trace, clock_name); if (!clock) { fprintf(fd, "[error] %s: map: unable to find clock %s declaration\n", __func__, g_quark_to_string(clock_name)); return NULL; } } else { fprintf(fd, "[warning] %s: unknown attribute name %s\n", __func__, left->u.unary_expression.u.string); /* Fall-through after warning */ } } if (!has_size) { fprintf(fd, "[error] %s: missing size attribute\n", __func__); return NULL; } if (!has_alignment) { if (size % CHAR_BIT) { /* bit-packed alignment */ alignment = 1; } else { /* byte-packed alignment */ alignment = CHAR_BIT; } } integer_declaration = bt_integer_declaration_new(size, byte_order, signedness, alignment, base, encoding, clock); return &integer_declaration->p; } static struct bt_declaration *ctf_declaration_floating_point_visit(FILE *fd, int depth, struct bt_list_head *expressions, struct ctf_trace *trace) { struct ctf_node *expression; uint64_t alignment = 1, exp_dig = 0, mant_dig = 0; int byte_order = trace->byte_order, has_alignment = 0, has_exp_dig = 0, has_mant_dig = 0; struct declaration_float *float_declaration; bt_list_for_each_entry(expression, expressions, siblings) { struct ctf_node *left, *right; left = _bt_list_first_entry(&expression->u.ctf_expression.left, struct ctf_node, siblings); right = _bt_list_first_entry(&expression->u.ctf_expression.right, struct ctf_node, siblings); if (left->u.unary_expression.type != UNARY_STRING) return NULL; if (!strcmp(left->u.unary_expression.u.string, "byte_order")) { byte_order = get_byte_order(fd, depth, right, trace); if (byte_order < 0) return NULL; } else if (!strcmp(left->u.unary_expression.u.string, "exp_dig")) { if (right->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) { fprintf(fd, "[error] %s: exp_dig: expecting unsigned constant\n", __func__); return NULL; } exp_dig = right->u.unary_expression.u.unsigned_constant; has_exp_dig = 1; } else if (!strcmp(left->u.unary_expression.u.string, "mant_dig")) { if (right->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) { fprintf(fd, "[error] %s: mant_dig: expecting unsigned constant\n", __func__); return NULL; } mant_dig = right->u.unary_expression.u.unsigned_constant; has_mant_dig = 1; } else if (!strcmp(left->u.unary_expression.u.string, "align")) { if (right->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT) { fprintf(fd, "[error] %s: align: expecting unsigned constant\n", __func__); return NULL; } alignment = right->u.unary_expression.u.unsigned_constant; /* Make sure alignment is a power of two */ if (alignment == 0 || (alignment & (alignment - 1)) != 0) { fprintf(fd, "[error] %s: align: expecting power of two\n", __func__); return NULL; } has_alignment = 1; } else { fprintf(fd, "[warning] %s: unknown attribute name %s\n", __func__, left->u.unary_expression.u.string); /* Fall-through after warning */ } } if (!has_mant_dig) { fprintf(fd, "[error] %s: missing mant_dig attribute\n", __func__); return NULL; } if (!has_exp_dig) { fprintf(fd, "[error] %s: missing exp_dig attribute\n", __func__); return NULL; } if (!has_alignment) { if ((mant_dig + exp_dig) % CHAR_BIT) { /* bit-packed alignment */ alignment = 1; } else { /* byte-packed alignment */ alignment = CHAR_BIT; } } float_declaration = bt_float_declaration_new(mant_dig, exp_dig, byte_order, alignment); return &float_declaration->p; } static struct bt_declaration *ctf_declaration_string_visit(FILE *fd, int depth, struct bt_list_head *expressions, struct ctf_trace *trace) { struct ctf_node *expression; const char *encoding_c = NULL; enum ctf_string_encoding encoding = CTF_STRING_UTF8; struct declaration_string *string_declaration; bt_list_for_each_entry(expression, expressions, siblings) { struct ctf_node *left, *right; left = _bt_list_first_entry(&expression->u.ctf_expression.left, struct ctf_node, siblings); right = _bt_list_first_entry(&expression->u.ctf_expression.right, struct ctf_node, siblings); if (left->u.unary_expression.type != UNARY_STRING) return NULL; if (!strcmp(left->u.unary_expression.u.string, "encoding")) { if (right->u.unary_expression.type != UNARY_STRING) { fprintf(fd, "[error] %s: encoding: expecting string\n", __func__); return NULL; } encoding_c = right->u.unary_expression.u.string; } else { fprintf(fd, "[warning] %s: unknown attribute name %s\n", __func__, left->u.unary_expression.u.string); /* Fall-through after warning */ } } if (encoding_c && !strcmp(encoding_c, "ASCII")) encoding = CTF_STRING_ASCII; string_declaration = bt_string_declaration_new(encoding); return &string_declaration->p; } static struct bt_declaration *ctf_type_specifier_list_visit(FILE *fd, int depth, struct ctf_node *type_specifier_list, struct declaration_scope *declaration_scope, struct ctf_trace *trace) { struct ctf_node *first; struct ctf_node *node; if (type_specifier_list->type != NODE_TYPE_SPECIFIER_LIST) return NULL; first = _bt_list_first_entry(&type_specifier_list->u.type_specifier_list.head, struct ctf_node, siblings); if (first->type != NODE_TYPE_SPECIFIER) return NULL; node = first->u.type_specifier.node; switch (first->u.type_specifier.type) { case TYPESPEC_FLOATING_POINT: return ctf_declaration_floating_point_visit(fd, depth, &node->u.floating_point.expressions, trace); case TYPESPEC_INTEGER: return ctf_declaration_integer_visit(fd, depth, &node->u.integer.expressions, trace); case TYPESPEC_STRING: return ctf_declaration_string_visit(fd, depth, &node->u.string.expressions, trace); case TYPESPEC_STRUCT: return ctf_declaration_struct_visit(fd, depth, node->u._struct.name, &node->u._struct.declaration_list, node->u._struct.has_body, &node->u._struct.min_align, declaration_scope, trace); case TYPESPEC_VARIANT: return ctf_declaration_variant_visit(fd, depth, node->u.variant.name, node->u.variant.choice, &node->u.variant.declaration_list, node->u.variant.has_body, declaration_scope, trace); case TYPESPEC_ENUM: return ctf_declaration_enum_visit(fd, depth, node->u._enum.enum_id, node->u._enum.container_type, &node->u._enum.enumerator_list, node->u._enum.has_body, declaration_scope, trace); case TYPESPEC_VOID: case TYPESPEC_CHAR: case TYPESPEC_SHORT: case TYPESPEC_INT: case TYPESPEC_LONG: case TYPESPEC_FLOAT: case TYPESPEC_DOUBLE: case TYPESPEC_SIGNED: case TYPESPEC_UNSIGNED: case TYPESPEC_BOOL: case TYPESPEC_COMPLEX: case TYPESPEC_IMAGINARY: case TYPESPEC_CONST: case TYPESPEC_ID_TYPE: return ctf_declaration_type_specifier_visit(fd, depth, type_specifier_list, declaration_scope); default: fprintf(fd, "[error] %s: unexpected node type %d\n", __func__, (int) first->u.type_specifier.type); return NULL; } } static int ctf_event_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_event_declaration *event, struct ctf_trace *trace) { int ret = 0; switch (node->type) { case NODE_TYPEDEF: ret = ctf_typedef_visit(fd, depth + 1, event->declaration_scope, node->u._typedef.type_specifier_list, &node->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: ret = ctf_typealias_visit(fd, depth + 1, event->declaration_scope, node->u.typealias.target, node->u.typealias.alias, trace); if (ret) return ret; break; case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "name")) { char *right; if (CTF_EVENT_FIELD_IS_SET(event, name)) { fprintf(fd, "[error] %s: name already declared in event declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for event name\n", __func__); ret = -EINVAL; goto error; } event->name = g_quark_from_string(right); g_free(right); CTF_EVENT_SET_FIELD(event, name); } else if (!strcmp(left, "id")) { if (CTF_EVENT_FIELD_IS_SET(event, id)) { fprintf(fd, "[error] %s: id already declared in event declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &event->id); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for event id\n", __func__); ret = -EINVAL; goto error; } CTF_EVENT_SET_FIELD(event, id); } else if (!strcmp(left, "stream_id")) { if (CTF_EVENT_FIELD_IS_SET(event, stream_id)) { fprintf(fd, "[error] %s: stream_id already declared in event declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &event->stream_id); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for event stream_id\n", __func__); ret = -EINVAL; goto error; } event->stream = trace_stream_lookup(trace, event->stream_id); if (!event->stream) { fprintf(fd, "[error] %s: stream id %" PRIu64 " cannot be found\n", __func__, event->stream_id); ret = -EINVAL; goto error; } CTF_EVENT_SET_FIELD(event, stream_id); } else if (!strcmp(left, "context")) { struct bt_declaration *declaration; if (event->context_decl) { fprintf(fd, "[error] %s: context already declared in event declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), event->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } event->context_decl = container_of(declaration, struct declaration_struct, p); } else if (!strcmp(left, "fields")) { struct bt_declaration *declaration; if (event->fields_decl) { fprintf(fd, "[error] %s: fields already declared in event declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), event->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } event->fields_decl = container_of(declaration, struct declaration_struct, p); } else if (!strcmp(left, "loglevel")) { int64_t loglevel = -1; if (CTF_EVENT_FIELD_IS_SET(event, loglevel)) { fprintf(fd, "[error] %s: loglevel already declared in event declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_signed(&node->u.ctf_expression.right, &loglevel); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for event loglevel\n", __func__); ret = -EINVAL; goto error; } event->loglevel = (int) loglevel; CTF_EVENT_SET_FIELD(event, loglevel); } else if (!strcmp(left, "model.emf.uri")) { char *right; if (CTF_EVENT_FIELD_IS_SET(event, model_emf_uri)) { fprintf(fd, "[error] %s: model.emf.uri already declared in event declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for event model.emf.uri\n", __func__); ret = -EINVAL; goto error; } event->model_emf_uri = g_quark_from_string(right); g_free(right); CTF_EVENT_SET_FIELD(event, model_emf_uri); } else { fprintf(fd, "[warning] %s: attribute \"%s\" is unknown in event declaration.\n", __func__, left); /* Fall-through after warning */ } error: g_free(left); break; } default: return -EPERM; /* TODO: declaration specifier should be added. */ } return ret; } static int ctf_event_visit(FILE *fd, int depth, struct ctf_node *node, struct declaration_scope *parent_declaration_scope, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; struct ctf_event_declaration *event; struct bt_ctf_event_decl *event_decl; if (node->visited) return 0; node->visited = 1; event_decl = g_new0(struct bt_ctf_event_decl, 1); event = &event_decl->parent; event->declaration_scope = bt_new_declaration_scope(parent_declaration_scope); event->loglevel = -1; bt_list_for_each_entry(iter, &node->u.event.declaration_list, siblings) { ret = ctf_event_declaration_visit(fd, depth + 1, iter, event, trace); if (ret) goto error; } if (!CTF_EVENT_FIELD_IS_SET(event, name)) { ret = -EPERM; fprintf(fd, "[error] %s: missing name field in event declaration\n", __func__); goto error; } if (!CTF_EVENT_FIELD_IS_SET(event, stream_id)) { /* Allow missing stream_id if there is only a single stream */ switch (trace->streams->len) { case 0: /* Create stream if there was none. */ ret = ctf_stream_visit(fd, depth, NULL, trace->root_declaration_scope, trace); if (ret) goto error; /* Fall-through */ case 1: event->stream_id = 0; event->stream = trace_stream_lookup(trace, event->stream_id); break; default: ret = -EPERM; fprintf(fd, "[error] %s: missing stream_id field in event declaration\n", __func__); goto error; } } /* Allow only one event without id per stream */ if (!CTF_EVENT_FIELD_IS_SET(event, id) && event->stream->events_by_id->len != 0) { ret = -EPERM; fprintf(fd, "[error] %s: missing id field in event declaration\n", __func__); goto error; } /* Disallow re-using the same event ID in the same stream */ if (stream_event_lookup(event->stream, event->id)) { ret = -EPERM; fprintf(fd, "[error] %s: event ID %" PRIu64 " used more than once in stream %" PRIu64 "\n", __func__, event->id, event->stream_id); goto error; } if (event->stream->events_by_id->len <= event->id) g_ptr_array_set_size(event->stream->events_by_id, event->id + 1); g_ptr_array_index(event->stream->events_by_id, event->id) = event; g_hash_table_insert(event->stream->event_quark_to_id, (gpointer) (unsigned long) event->name, &event->id); g_ptr_array_add(trace->event_declarations, event_decl); return 0; error: if (event->fields_decl) bt_declaration_unref(&event->fields_decl->p); if (event->context_decl) bt_declaration_unref(&event->context_decl->p); bt_free_declaration_scope(event->declaration_scope); g_free(event_decl); return ret; } static int ctf_stream_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_stream_declaration *stream, struct ctf_trace *trace) { int ret = 0; switch (node->type) { case NODE_TYPEDEF: ret = ctf_typedef_visit(fd, depth + 1, stream->declaration_scope, node->u._typedef.type_specifier_list, &node->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: ret = ctf_typealias_visit(fd, depth + 1, stream->declaration_scope, node->u.typealias.target, node->u.typealias.alias, trace); if (ret) return ret; break; case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "id")) { if (CTF_STREAM_FIELD_IS_SET(stream, stream_id)) { fprintf(fd, "[error] %s: id already declared in stream declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &stream->stream_id); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for stream id\n", __func__); ret = -EINVAL; goto error; } CTF_STREAM_SET_FIELD(stream, stream_id); } else if (!strcmp(left, "event.header")) { struct bt_declaration *declaration; if (stream->event_header_decl) { fprintf(fd, "[error] %s: event.header already declared in stream declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), stream->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } stream->event_header_decl = container_of(declaration, struct declaration_struct, p); } else if (!strcmp(left, "event.context")) { struct bt_declaration *declaration; if (stream->event_context_decl) { fprintf(fd, "[error] %s: event.context already declared in stream declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), stream->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } stream->event_context_decl = container_of(declaration, struct declaration_struct, p); } else if (!strcmp(left, "packet.context")) { struct bt_declaration *declaration; if (stream->packet_context_decl) { fprintf(fd, "[error] %s: packet.context already declared in stream declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), stream->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } stream->packet_context_decl = container_of(declaration, struct declaration_struct, p); } else { fprintf(fd, "[warning] %s: attribute \"%s\" is unknown in stream declaration.\n", __func__, left); /* Fall-through after warning */ } error: g_free(left); break; } default: return -EPERM; /* TODO: declaration specifier should be added. */ } return ret; } static int ctf_stream_visit(FILE *fd, int depth, struct ctf_node *node, struct declaration_scope *parent_declaration_scope, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; struct ctf_stream_declaration *stream; if (node) { if (node->visited) return 0; node->visited = 1; } stream = g_new0(struct ctf_stream_declaration, 1); stream->declaration_scope = bt_new_declaration_scope(parent_declaration_scope); stream->events_by_id = g_ptr_array_new(); stream->event_quark_to_id = g_hash_table_new(g_direct_hash, g_direct_equal); stream->streams = g_ptr_array_new(); if (node) { bt_list_for_each_entry(iter, &node->u.stream.declaration_list, siblings) { ret = ctf_stream_declaration_visit(fd, depth + 1, iter, stream, trace); if (ret) goto error; } } if (CTF_STREAM_FIELD_IS_SET(stream, stream_id)) { /* check that packet header has stream_id field. */ if (!trace->packet_header_decl || bt_struct_declaration_lookup_field_index(trace->packet_header_decl, g_quark_from_static_string("stream_id")) < 0) { ret = -EPERM; fprintf(fd, "[error] %s: missing stream_id field in packet header declaration, but stream_id attribute is declared for stream.\n", __func__); goto error; } } else { /* Allow only one id-less stream */ if (trace->streams->len != 0) { ret = -EPERM; fprintf(fd, "[error] %s: missing id field in stream declaration\n", __func__); goto error; } stream->stream_id = 0; } if (trace->streams->len <= stream->stream_id) g_ptr_array_set_size(trace->streams, stream->stream_id + 1); g_ptr_array_index(trace->streams, stream->stream_id) = stream; stream->trace = trace; return 0; error: if (stream->event_header_decl) bt_declaration_unref(&stream->event_header_decl->p); if (stream->event_context_decl) bt_declaration_unref(&stream->event_context_decl->p); if (stream->packet_context_decl) bt_declaration_unref(&stream->packet_context_decl->p); g_ptr_array_free(stream->streams, TRUE); g_ptr_array_free(stream->events_by_id, TRUE); g_hash_table_destroy(stream->event_quark_to_id); bt_free_declaration_scope(stream->declaration_scope); g_free(stream); return ret; } static int ctf_trace_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; switch (node->type) { case NODE_TYPEDEF: ret = ctf_typedef_visit(fd, depth + 1, trace->declaration_scope, node->u._typedef.type_specifier_list, &node->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: ret = ctf_typealias_visit(fd, depth + 1, trace->declaration_scope, node->u.typealias.target, node->u.typealias.alias, trace); if (ret) return ret; break; case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "major")) { if (CTF_TRACE_FIELD_IS_SET(trace, major)) { fprintf(fd, "[error] %s: major already declared in trace declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &trace->major); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for trace major number\n", __func__); ret = -EINVAL; goto error; } CTF_TRACE_SET_FIELD(trace, major); } else if (!strcmp(left, "minor")) { if (CTF_TRACE_FIELD_IS_SET(trace, minor)) { fprintf(fd, "[error] %s: minor already declared in trace declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &trace->minor); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for trace minor number\n", __func__); ret = -EINVAL; goto error; } CTF_TRACE_SET_FIELD(trace, minor); } else if (!strcmp(left, "uuid")) { unsigned char uuid[BABELTRACE_UUID_LEN]; ret = get_unary_uuid(&node->u.ctf_expression.right, uuid); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for trace uuid\n", __func__); ret = -EINVAL; goto error; } if (CTF_TRACE_FIELD_IS_SET(trace, uuid) && babeltrace_uuid_compare(uuid, trace->uuid)) { fprintf(fd, "[error] %s: uuid mismatch\n", __func__); ret = -EPERM; goto error; } else { memcpy(trace->uuid, uuid, sizeof(uuid)); } CTF_TRACE_SET_FIELD(trace, uuid); } else if (!strcmp(left, "byte_order")) { struct ctf_node *right; int byte_order; right = _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings); byte_order = get_trace_byte_order(fd, depth, right); if (byte_order < 0) { ret = -EINVAL; goto error; } if (CTF_TRACE_FIELD_IS_SET(trace, byte_order) && byte_order != trace->byte_order) { fprintf(fd, "[error] %s: endianness mismatch\n", __func__); ret = -EPERM; goto error; } else { if (byte_order != trace->byte_order) { trace->byte_order = byte_order; /* * We need to restart * construction of the * intermediate representation. */ trace->field_mask = 0; CTF_TRACE_SET_FIELD(trace, byte_order); ret = -EINTR; goto error; } } CTF_TRACE_SET_FIELD(trace, byte_order); } else if (!strcmp(left, "packet.header")) { struct bt_declaration *declaration; if (trace->packet_header_decl) { fprintf(fd, "[error] %s: packet.header already declared in trace declaration\n", __func__); ret = -EINVAL; goto error; } declaration = ctf_type_specifier_list_visit(fd, depth, _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings), trace->declaration_scope, trace); if (!declaration) { ret = -EPERM; goto error; } if (declaration->id != CTF_TYPE_STRUCT) { ret = -EPERM; goto error; } trace->packet_header_decl = container_of(declaration, struct declaration_struct, p); } else { fprintf(fd, "[warning] %s: attribute \"%s\" is unknown in trace declaration.\n", __func__, left); } error: g_free(left); break; } default: return -EPERM; /* TODO: declaration specifier should be added. */ } return ret; } static int ctf_trace_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; if (!trace->restart_root_decl && node->visited) return 0; node->visited = 1; if (trace->declaration_scope) return -EEXIST; trace->declaration_scope = bt_new_declaration_scope(trace->root_declaration_scope); trace->streams = g_ptr_array_new(); trace->event_declarations = g_ptr_array_new(); bt_list_for_each_entry(iter, &node->u.trace.declaration_list, siblings) { ret = ctf_trace_declaration_visit(fd, depth + 1, iter, trace); if (ret) goto error; } if (!CTF_TRACE_FIELD_IS_SET(trace, major)) { ret = -EPERM; fprintf(fd, "[error] %s: missing major field in trace declaration\n", __func__); goto error; } if (!CTF_TRACE_FIELD_IS_SET(trace, minor)) { ret = -EPERM; fprintf(fd, "[error] %s: missing minor field in trace declaration\n", __func__); goto error; } if (!CTF_TRACE_FIELD_IS_SET(trace, byte_order)) { ret = -EPERM; fprintf(fd, "[error] %s: missing byte_order field in trace declaration\n", __func__); goto error; } if (!CTF_TRACE_FIELD_IS_SET(trace, byte_order)) { /* check that the packet header contains a "magic" field */ if (!trace->packet_header_decl || bt_struct_declaration_lookup_field_index(trace->packet_header_decl, g_quark_from_static_string("magic")) < 0) { ret = -EPERM; fprintf(fd, "[error] %s: missing both byte_order and packet header magic number in trace declaration\n", __func__); goto error; } } return 0; error: if (trace->packet_header_decl) { bt_declaration_unref(&trace->packet_header_decl->p); trace->packet_header_decl = NULL; } g_ptr_array_free(trace->streams, TRUE); g_ptr_array_free(trace->event_declarations, TRUE); bt_free_declaration_scope(trace->declaration_scope); trace->declaration_scope = NULL; return ret; } static int ctf_clock_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_clock *clock, struct ctf_trace *trace) { int ret = 0; switch (node->type) { case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "name")) { char *right; if (CTF_CLOCK_FIELD_IS_SET(clock, name)) { fprintf(fd, "[error] %s: name already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for clock name\n", __func__); ret = -EINVAL; goto error; } clock->name = g_quark_from_string(right); g_free(right); CTF_CLOCK_SET_FIELD(clock, name); } else if (!strcmp(left, "uuid")) { char *right; if (clock->uuid) { fprintf(fd, "[error] %s: uuid already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for clock uuid\n", __func__); ret = -EINVAL; goto error; } clock->uuid = g_quark_from_string(right); g_free(right); } else if (!strcmp(left, "description")) { char *right; if (clock->description) { fprintf(fd, "[warning] %s: duplicated clock description\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for clock description\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } clock->description = right; } else if (!strcmp(left, "freq")) { if (CTF_CLOCK_FIELD_IS_SET(clock, freq)) { fprintf(fd, "[error] %s: freq already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &clock->freq); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for clock freq\n", __func__); ret = -EINVAL; goto error; } CTF_CLOCK_SET_FIELD(clock, freq); } else if (!strcmp(left, "precision")) { if (clock->precision) { fprintf(fd, "[error] %s: precision already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &clock->precision); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for clock precision\n", __func__); ret = -EINVAL; goto error; } } else if (!strcmp(left, "offset_s")) { if (clock->offset_s) { fprintf(fd, "[error] %s: offset_s already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &clock->offset_s); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for clock offset_s\n", __func__); ret = -EINVAL; goto error; } } else if (!strcmp(left, "offset")) { if (clock->offset) { fprintf(fd, "[error] %s: offset already declared in clock declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &clock->offset); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for clock offset\n", __func__); ret = -EINVAL; goto error; } } else if (!strcmp(left, "absolute")) { struct ctf_node *right; right = _bt_list_first_entry(&node->u.ctf_expression.right, struct ctf_node, siblings); ret = get_boolean(fd, depth, right); if (ret < 0) { fprintf(fd, "[error] %s: unexpected \"absolute\" right member\n", __func__); ret = -EINVAL; goto error; } clock->absolute = ret; ret = 0; } else { fprintf(fd, "[warning] %s: attribute \"%s\" is unknown in clock declaration.\n", __func__, left); } error: g_free(left); break; } default: return -EPERM; /* TODO: declaration specifier should be added. */ } return ret; } static int ctf_clock_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; struct ctf_clock *clock; if (node->visited) return 0; node->visited = 1; clock = g_new0(struct ctf_clock, 1); /* Default clock frequency is set to 1000000000 */ clock->freq = 1000000000ULL; bt_list_for_each_entry(iter, &node->u.clock.declaration_list, siblings) { ret = ctf_clock_declaration_visit(fd, depth + 1, iter, clock, trace); if (ret) goto error; } if (opt_clock_force_correlate) { /* * User requested to forcibly correlate the clock * sources, even if we have no correlation * information. */ if (!clock->absolute) { fprintf(fd, "[warning] Forcibly correlating trace clock sources (--clock-force-correlate).\n"); } clock->absolute = 1; } if (!CTF_CLOCK_FIELD_IS_SET(clock, name)) { ret = -EPERM; fprintf(fd, "[error] %s: missing name field in clock declaration\n", __func__); goto error; } if (g_hash_table_size(trace->parent.clocks) > 0) { fprintf(fd, "[error] Only CTF traces with a single clock description are supported by this babeltrace version.\n"); ret = -EINVAL; goto error; } trace->parent.single_clock = clock; g_hash_table_insert(trace->parent.clocks, (gpointer) (unsigned long) clock->name, clock); return 0; error: g_free(clock->description); g_free(clock); return ret; } static void ctf_clock_default(FILE *fd, int depth, struct ctf_trace *trace) { struct ctf_clock *clock; clock = g_new0(struct ctf_clock, 1); clock->name = g_quark_from_string("monotonic"); clock->uuid = 0; clock->description = g_strdup("Default clock"); /* Default clock frequency is set to 1000000000 */ clock->freq = 1000000000ULL; if (opt_clock_force_correlate) { /* * User requested to forcibly correlate the clock * sources, even if we have no correlatation * information. */ if (!clock->absolute) { fprintf(fd, "[warning] Forcibly correlating trace clock sources (--clock-force-correlate).\n"); } clock->absolute = 1; } else { clock->absolute = 0; /* Not an absolute reference across traces */ } trace->parent.single_clock = clock; g_hash_table_insert(trace->parent.clocks, (gpointer) (unsigned long) clock->name, clock); } static void clock_free(gpointer data) { struct ctf_clock *clock = data; g_free(clock->description); g_free(clock); } static int ctf_callsite_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_callsite *callsite, struct ctf_trace *trace) { int ret = 0; switch (node->type) { case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "name")) { char *right; if (CTF_CALLSITE_FIELD_IS_SET(callsite, name)) { fprintf(fd, "[error] %s: name already declared in callsite declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for callsite name\n", __func__); ret = -EINVAL; goto error; } callsite->name = g_quark_from_string(right); g_free(right); CTF_CALLSITE_SET_FIELD(callsite, name); } else if (!strcmp(left, "func")) { char *right; if (CTF_CALLSITE_FIELD_IS_SET(callsite, func)) { fprintf(fd, "[error] %s: func already declared in callsite declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for callsite func\n", __func__); ret = -EINVAL; goto error; } callsite->func = right; CTF_CALLSITE_SET_FIELD(callsite, func); } else if (!strcmp(left, "file")) { char *right; if (CTF_CALLSITE_FIELD_IS_SET(callsite, file)) { fprintf(fd, "[error] %s: file already declared in callsite declaration\n", __func__); ret = -EPERM; goto error; } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[error] %s: unexpected unary expression for callsite file\n", __func__); ret = -EINVAL; goto error; } callsite->file = right; CTF_CALLSITE_SET_FIELD(callsite, file); } else if (!strcmp(left, "line")) { if (CTF_CALLSITE_FIELD_IS_SET(callsite, line)) { fprintf(fd, "[error] %s: line already declared in callsite declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &callsite->line); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for callsite line\n", __func__); ret = -EINVAL; goto error; } CTF_CALLSITE_SET_FIELD(callsite, line); } else if (!strcmp(left, "ip")) { if (CTF_CALLSITE_FIELD_IS_SET(callsite, ip)) { fprintf(fd, "[error] %s: ip already declared in callsite declaration\n", __func__); ret = -EPERM; goto error; } ret = get_unary_unsigned(&node->u.ctf_expression.right, &callsite->ip); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for callsite ip\n", __func__); ret = -EINVAL; goto error; } CTF_CALLSITE_SET_FIELD(callsite, ip); } else { fprintf(fd, "[warning] %s: attribute \"%s\" is unknown in callsite declaration.\n", __func__, left); } error: g_free(left); break; } default: return -EPERM; /* TODO: declaration specifier should be added. */ } return ret; } static int ctf_callsite_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; struct ctf_callsite *callsite; struct ctf_callsite_dups *cs_dups; if (node->visited) return 0; node->visited = 1; callsite = g_new0(struct ctf_callsite, 1); bt_list_for_each_entry(iter, &node->u.callsite.declaration_list, siblings) { ret = ctf_callsite_declaration_visit(fd, depth + 1, iter, callsite, trace); if (ret) goto error; } if (!CTF_CALLSITE_FIELD_IS_SET(callsite, name)) { ret = -EPERM; fprintf(fd, "[error] %s: missing name field in callsite declaration\n", __func__); goto error; } if (!CTF_CALLSITE_FIELD_IS_SET(callsite, func)) { ret = -EPERM; fprintf(fd, "[error] %s: missing func field in callsite declaration\n", __func__); goto error; } if (!CTF_CALLSITE_FIELD_IS_SET(callsite, file)) { ret = -EPERM; fprintf(fd, "[error] %s: missing file field in callsite declaration\n", __func__); goto error; } if (!CTF_CALLSITE_FIELD_IS_SET(callsite, line)) { ret = -EPERM; fprintf(fd, "[error] %s: missing line field in callsite declaration\n", __func__); goto error; } cs_dups = g_hash_table_lookup(trace->callsites, (gpointer) (unsigned long) callsite->name); if (!cs_dups) { cs_dups = g_new0(struct ctf_callsite_dups, 1); BT_INIT_LIST_HEAD(&cs_dups->head); g_hash_table_insert(trace->callsites, (gpointer) (unsigned long) callsite->name, cs_dups); } bt_list_add_tail(&callsite->node, &cs_dups->head); return 0; error: g_free(callsite->func); g_free(callsite->file); g_free(callsite); return ret; } static void callsite_free(gpointer data) { struct ctf_callsite_dups *cs_dups = data; struct ctf_callsite *callsite, *cs_n; bt_list_for_each_entry_safe(callsite, cs_n, &cs_dups->head, node) { g_free(callsite->func); g_free(callsite->file); g_free(callsite); } g_free(cs_dups); } static int ctf_env_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; struct ctf_tracer_env *env = &trace->env; switch (node->type) { case NODE_CTF_EXPRESSION: { char *left; left = concatenate_unary_strings(&node->u.ctf_expression.left); if (!left) return -EINVAL; if (!strcmp(left, "vpid")) { uint64_t v; if (env->vpid != -1) { fprintf(fd, "[error] %s: vpid already declared in env declaration\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } ret = get_unary_unsigned(&node->u.ctf_expression.right, &v); if (ret) { fprintf(fd, "[error] %s: unexpected unary expression for env vpid\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } env->vpid = (int) v; printf_verbose("env.vpid = %d\n", env->vpid); } else if (!strcmp(left, "procname")) { char *right; if (env->procname[0]) { fprintf(fd, "[warning] %s: duplicated env procname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env procname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->procname, right, TRACER_ENV_LEN); env->procname[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.procname = \"%s\"\n", env->procname); g_free(right); } else if (!strcmp(left, "hostname")) { char *right; if (env->hostname[0]) { fprintf(fd, "[warning] %s: duplicated env hostname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env hostname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->hostname, right, TRACER_ENV_LEN); env->hostname[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.hostname = \"%s\"\n", env->hostname); g_free(right); } else if (!strcmp(left, "domain")) { char *right; if (env->domain[0]) { fprintf(fd, "[warning] %s: duplicated env domain\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env domain\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->domain, right, TRACER_ENV_LEN); env->domain[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.domain = \"%s\"\n", env->domain); g_free(right); } else if (!strcmp(left, "sysname")) { char *right; if (env->sysname[0]) { fprintf(fd, "[warning] %s: duplicated env sysname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env sysname\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->sysname, right, TRACER_ENV_LEN); env->sysname[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.sysname = \"%s\"\n", env->sysname); g_free(right); } else if (!strcmp(left, "kernel_release")) { char *right; if (env->release[0]) { fprintf(fd, "[warning] %s: duplicated env release\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env release\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->release, right, TRACER_ENV_LEN); env->release[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.release = \"%s\"\n", env->release); g_free(right); } else if (!strcmp(left, "kernel_version")) { char *right; if (env->version[0]) { fprintf(fd, "[warning] %s: duplicated env version\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env version\n", __func__); goto error; /* ret is 0, so not an actual error, just warn. */ } strncpy(env->version, right, TRACER_ENV_LEN); env->version[TRACER_ENV_LEN - 1] = '\0'; printf_verbose("env.version = \"%s\"\n", env->version); g_free(right); } else { if (is_unary_string(&node->u.ctf_expression.right)) { char *right; right = concatenate_unary_strings(&node->u.ctf_expression.right); if (!right) { fprintf(fd, "[warning] %s: unexpected unary expression for env\n", __func__); ret = -EINVAL; goto error; } printf_verbose("env.%s = \"%s\"\n", left, right); g_free(right); } else if (is_unary_unsigned(&node->u.ctf_expression.right)) { uint64_t v; int ret; ret = get_unary_unsigned(&node->u.ctf_expression.right, &v); if (ret) goto error; printf_verbose("env.%s = %" PRIu64 "\n", left, v); } else if (is_unary_signed(&node->u.ctf_expression.right)) { int64_t v; int ret; ret = get_unary_signed(&node->u.ctf_expression.right, &v); if (ret) goto error; printf_verbose("env.%s = %" PRId64 "\n", left, v); } else { printf_verbose("%s: attribute \"%s\" has unknown type.\n", __func__, left); } } error: g_free(left); break; } default: return -EPERM; } return ret; } static int ctf_env_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; struct ctf_node *iter; if (node->visited) return 0; node->visited = 1; trace->env.vpid = -1; trace->env.procname[0] = '\0'; trace->env.hostname[0] = '\0'; trace->env.domain[0] = '\0'; trace->env.sysname[0] = '\0'; trace->env.release[0] = '\0'; trace->env.version[0] = '\0'; bt_list_for_each_entry(iter, &node->u.env.declaration_list, siblings) { ret = ctf_env_declaration_visit(fd, depth + 1, iter, trace); if (ret) goto error; } error: return 0; } static int ctf_root_declaration_visit(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace) { int ret = 0; if (!trace->restart_root_decl && node->visited) return 0; node->visited = 1; switch (node->type) { case NODE_TYPEDEF: ret = ctf_typedef_visit(fd, depth + 1, trace->root_declaration_scope, node->u._typedef.type_specifier_list, &node->u._typedef.type_declarators, trace); if (ret) return ret; break; case NODE_TYPEALIAS: ret = ctf_typealias_visit(fd, depth + 1, trace->root_declaration_scope, node->u.typealias.target, node->u.typealias.alias, trace); if (ret) return ret; break; case NODE_TYPE_SPECIFIER_LIST: { struct bt_declaration *declaration; /* * Just add the type specifier to the root scope * declaration scope. Release local reference. */ declaration = ctf_type_specifier_list_visit(fd, depth + 1, node, trace->root_declaration_scope, trace); if (!declaration) return -ENOMEM; bt_declaration_unref(declaration); break; } default: return -EPERM; } return 0; } int ctf_visitor_construct_metadata(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace, int byte_order) { int ret = 0; struct ctf_node *iter; printf_verbose("CTF visitor: metadata construction...\n"); trace->byte_order = byte_order; trace->parent.clocks = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, clock_free); trace->callsites = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, callsite_free); retry: trace->root_declaration_scope = bt_new_declaration_scope(NULL); switch (node->type) { case NODE_ROOT: /* * declarations need to query clock hash table, * so clock need to be treated first. */ if (bt_list_empty(&node->u.root.clock)) { ctf_clock_default(fd, depth + 1, trace); } else { bt_list_for_each_entry(iter, &node->u.root.clock, siblings) { ret = ctf_clock_visit(fd, depth + 1, iter, trace); if (ret) { fprintf(fd, "[error] %s: clock declaration error\n", __func__); goto error; } } } bt_list_for_each_entry(iter, &node->u.root.declaration_list, siblings) { ret = ctf_root_declaration_visit(fd, depth + 1, iter, trace); if (ret) { fprintf(fd, "[error] %s: root declaration error\n", __func__); goto error; } } bt_list_for_each_entry(iter, &node->u.root.trace, siblings) { ret = ctf_trace_visit(fd, depth + 1, iter, trace); if (ret == -EINTR) { trace->restart_root_decl = 1; bt_free_declaration_scope(trace->root_declaration_scope); /* * Need to restart creation of type * definitions, aliases and * trace header declarations. */ goto retry; } if (ret) { fprintf(fd, "[error] %s: trace declaration error\n", __func__); goto error; } } trace->restart_root_decl = 0; bt_list_for_each_entry(iter, &node->u.root.callsite, siblings) { ret = ctf_callsite_visit(fd, depth + 1, iter, trace); if (ret) { fprintf(fd, "[error] %s: callsite declaration error\n", __func__); goto error; } } if (!trace->streams) { fprintf(fd, "[error] %s: missing trace declaration\n", __func__); ret = -EINVAL; goto error; } bt_list_for_each_entry(iter, &node->u.root.env, siblings) { ret = ctf_env_visit(fd, depth + 1, iter, trace); if (ret) { fprintf(fd, "[error] %s: env declaration error\n", __func__); goto error; } } bt_list_for_each_entry(iter, &node->u.root.stream, siblings) { ret = ctf_stream_visit(fd, depth + 1, iter, trace->root_declaration_scope, trace); if (ret) { fprintf(fd, "[error] %s: stream declaration error\n", __func__); goto error; } } bt_list_for_each_entry(iter, &node->u.root.event, siblings) { ret = ctf_event_visit(fd, depth + 1, iter, trace->root_declaration_scope, trace); if (ret) { fprintf(fd, "[error] %s: event declaration error\n", __func__); goto error; } } break; case NODE_UNKNOWN: default: fprintf(fd, "[error] %s: unknown node type %d\n", __func__, (int) node->type); ret = -EINVAL; goto error; } printf_verbose("done.\n"); return ret; error: bt_free_declaration_scope(trace->root_declaration_scope); g_hash_table_destroy(trace->callsites); g_hash_table_destroy(trace->parent.clocks); return ret; } int ctf_destroy_metadata(struct ctf_trace *trace) { int i; struct ctf_file_stream *metadata_stream; if (trace->streams) { for (i = 0; i < trace->streams->len; i++) { struct ctf_stream_declaration *stream; int j; stream = g_ptr_array_index(trace->streams, i); if (!stream) continue; for (j = 0; j < stream->streams->len; j++) { struct ctf_stream_definition *stream_def; int k; stream_def = g_ptr_array_index(stream->streams, j); if (!stream_def) continue; for (k = 0; k < stream_def->events_by_id->len; k++) { struct ctf_event_definition *event; event = g_ptr_array_index(stream_def->events_by_id, k); if (!event) continue; if (&event->event_fields->p) bt_definition_unref(&event->event_fields->p); if (&event->event_context->p) bt_definition_unref(&event->event_context->p); g_free(event); } if (&stream_def->trace_packet_header->p) bt_definition_unref(&stream_def->trace_packet_header->p); if (&stream_def->stream_event_header->p) bt_definition_unref(&stream_def->stream_event_header->p); if (&stream_def->stream_packet_context->p) bt_definition_unref(&stream_def->stream_packet_context->p); if (&stream_def->stream_event_context->p) bt_definition_unref(&stream_def->stream_event_context->p); g_ptr_array_free(stream_def->events_by_id, TRUE); g_free(stream_def); } if (stream->event_header_decl) bt_declaration_unref(&stream->event_header_decl->p); if (stream->event_context_decl) bt_declaration_unref(&stream->event_context_decl->p); if (stream->packet_context_decl) bt_declaration_unref(&stream->packet_context_decl->p); g_ptr_array_free(stream->streams, TRUE); g_ptr_array_free(stream->events_by_id, TRUE); g_hash_table_destroy(stream->event_quark_to_id); bt_free_declaration_scope(stream->declaration_scope); g_free(stream); } g_ptr_array_free(trace->streams, TRUE); } if (trace->event_declarations) { for (i = 0; i < trace->event_declarations->len; i++) { struct bt_ctf_event_decl *event_decl; struct ctf_event_declaration *event; event_decl = g_ptr_array_index(trace->event_declarations, i); if (event_decl->context_decl) g_ptr_array_free(event_decl->context_decl, TRUE); if (event_decl->fields_decl) g_ptr_array_free(event_decl->fields_decl, TRUE); if (event_decl->packet_header_decl) g_ptr_array_free(event_decl->packet_header_decl, TRUE); if (event_decl->event_context_decl) g_ptr_array_free(event_decl->event_context_decl, TRUE); if (event_decl->event_header_decl) g_ptr_array_free(event_decl->event_header_decl, TRUE); if (event_decl->packet_context_decl) g_ptr_array_free(event_decl->packet_context_decl, TRUE); event = &event_decl->parent; if (event->fields_decl) bt_declaration_unref(&event->fields_decl->p); if (event->context_decl) bt_declaration_unref(&event->context_decl->p); bt_free_declaration_scope(event->declaration_scope); g_free(event); } g_ptr_array_free(trace->event_declarations, TRUE); } if (trace->packet_header_decl) bt_declaration_unref(&trace->packet_header_decl->p); bt_free_declaration_scope(trace->root_declaration_scope); bt_free_declaration_scope(trace->declaration_scope); g_hash_table_destroy(trace->callsites); g_hash_table_destroy(trace->parent.clocks); metadata_stream = container_of(trace->metadata, struct ctf_file_stream, parent); g_free(metadata_stream); return 0; } babeltrace-1.2.1/formats/ctf/metadata/ctf-parser.h0000644000175000017500000001020112306621157016743 00000000000000/* A Bison parser, made by GNU Bison 2.5. */ /* Bison interface for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 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, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { INTEGER_LITERAL = 258, STRING_LITERAL = 259, CHARACTER_LITERAL = 260, LSBRAC = 261, RSBRAC = 262, LPAREN = 263, RPAREN = 264, LBRAC = 265, RBRAC = 266, RARROW = 267, STAR = 268, PLUS = 269, MINUS = 270, LT = 271, GT = 272, TYPEASSIGN = 273, COLON = 274, SEMICOLON = 275, DOTDOTDOT = 276, DOT = 277, EQUAL = 278, COMMA = 279, CONST = 280, CHAR = 281, DOUBLE = 282, ENUM = 283, ENV = 284, EVENT = 285, FLOATING_POINT = 286, FLOAT = 287, INTEGER = 288, INT = 289, LONG = 290, SHORT = 291, SIGNED = 292, STREAM = 293, STRING = 294, STRUCT = 295, TRACE = 296, CALLSITE = 297, CLOCK = 298, TYPEALIAS = 299, TYPEDEF = 300, UNSIGNED = 301, VARIANT = 302, VOID = 303, _BOOL = 304, _COMPLEX = 305, _IMAGINARY = 306, TOK_ALIGN = 307, IDENTIFIER = 308, ID_TYPE = 309, ERROR = 310 }; #endif /* Tokens. */ #define INTEGER_LITERAL 258 #define STRING_LITERAL 259 #define CHARACTER_LITERAL 260 #define LSBRAC 261 #define RSBRAC 262 #define LPAREN 263 #define RPAREN 264 #define LBRAC 265 #define RBRAC 266 #define RARROW 267 #define STAR 268 #define PLUS 269 #define MINUS 270 #define LT 271 #define GT 272 #define TYPEASSIGN 273 #define COLON 274 #define SEMICOLON 275 #define DOTDOTDOT 276 #define DOT 277 #define EQUAL 278 #define COMMA 279 #define CONST 280 #define CHAR 281 #define DOUBLE 282 #define ENUM 283 #define ENV 284 #define EVENT 285 #define FLOATING_POINT 286 #define FLOAT 287 #define INTEGER 288 #define INT 289 #define LONG 290 #define SHORT 291 #define SIGNED 292 #define STREAM 293 #define STRING 294 #define STRUCT 295 #define TRACE 296 #define CALLSITE 297 #define CLOCK 298 #define TYPEALIAS 299 #define TYPEDEF 300 #define UNSIGNED 301 #define VARIANT 302 #define VOID 303 #define _BOOL 304 #define _COMPLEX 305 #define _IMAGINARY 306 #define TOK_ALIGN 307 #define IDENTIFIER 308 #define ID_TYPE 309 #define ERROR 310 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 2068 of yacc.c */ #line 1060 "ctf-parser.y" long long ll; unsigned long long ull; char c; char *s; struct ctf_node *n; /* Line 2068 of yacc.c */ #line 170 "ctf-parser.h" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif babeltrace-1.2.1/formats/ctf/metadata/Makefile.am0000644000175000017500000000202312304150543016555 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include BUILT_SOURCES = ctf-parser.h AM_YFLAGS = -t -d -v noinst_LTLIBRARIES = libctf-parser.la libctf-ast.la noinst_HEADERS = \ ctf-scanner.h \ ctf-ast.h \ ctf-scanner-symbols.h \ objstack.h libctf_parser_la_SOURCES = ctf-lexer.l ctf-parser.y objstack.c libctf_parser_la_CFLAGS = $(AM_CFLAGS) -include ctf-scanner-symbols.h libctf_ast_la_SOURCES = ctf-visitor-xml.c \ ctf-visitor-parent-links.c \ ctf-visitor-semantic-validator.c \ ctf-visitor-generate-io-struct.c libctf_ast_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la if BABELTRACE_BUILD_WITH_LIBUUID libctf_ast_la_LIBADD += -luuid endif if BABELTRACE_BUILD_WITH_LIBC_UUID libctf_ast_la_LIBADD += -lc endif if BABELTRACE_BUILD_WITH_MINGW libctf_ast_la_LIBADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt endif noinst_PROGRAMS = ctf-parser-test ctf_parser_test_SOURCES = ctf-parser-test.c ctf_parser_test_LDADD = \ libctf-parser.la \ libctf-ast.la CLEANFILES = ctf-lexer.c ctf-parser.c ctf-parser.h ctf-parser.output babeltrace-1.2.1/formats/ctf/metadata/ctf-visitor-parent-links.c0000644000175000017500000003034512304150543021553 00000000000000/* * ctf-visitor-parent-links.c * * Common Trace Format Metadata Parent Link Creator. * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define fprintf_dbg(fd, fmt, args...) fprintf(fd, "%s: " fmt, __func__, ## args) static int ctf_visitor_unary_expression(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; switch (node->u.unary_expression.link) { case UNARY_LINK_UNKNOWN: case UNARY_DOTLINK: case UNARY_ARROWLINK: case UNARY_DOTDOTDOT: break; default: fprintf(fd, "[error] %s: unknown expression link type %d\n", __func__, (int) node->u.unary_expression.link); return -EINVAL; } switch (node->u.unary_expression.type) { case UNARY_STRING: case UNARY_SIGNED_CONSTANT: case UNARY_UNSIGNED_CONSTANT: break; case UNARY_SBRAC: node->u.unary_expression.u.sbrac_exp->parent = node; ret = ctf_visitor_unary_expression(fd, depth + 1, node->u.unary_expression.u.sbrac_exp); if (ret) return ret; break; case UNARY_UNKNOWN: default: fprintf(fd, "[error] %s: unknown expression type %d\n", __func__, (int) node->u.unary_expression.type); return -EINVAL; } return 0; } static int ctf_visitor_type_specifier(FILE *fd, int depth, struct ctf_node *node) { int ret; switch (node->u.type_specifier.type) { case TYPESPEC_VOID: case TYPESPEC_CHAR: case TYPESPEC_SHORT: case TYPESPEC_INT: case TYPESPEC_LONG: case TYPESPEC_FLOAT: case TYPESPEC_DOUBLE: case TYPESPEC_SIGNED: case TYPESPEC_UNSIGNED: case TYPESPEC_BOOL: case TYPESPEC_COMPLEX: case TYPESPEC_IMAGINARY: case TYPESPEC_CONST: case TYPESPEC_ID_TYPE: break; case TYPESPEC_FLOATING_POINT: case TYPESPEC_INTEGER: case TYPESPEC_STRING: case TYPESPEC_STRUCT: case TYPESPEC_VARIANT: case TYPESPEC_ENUM: node->u.type_specifier.node->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.type_specifier.node); if (ret) return ret; break; case TYPESPEC_UNKNOWN: default: fprintf(fd, "[error] %s: unknown type specifier %d\n", __func__, (int) node->u.type_specifier.type); return -EINVAL; } return 0; } static int ctf_visitor_type_declarator(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; depth++; bt_list_for_each_entry(iter, &node->u.type_declarator.pointers, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } switch (node->u.type_declarator.type) { case TYPEDEC_ID: break; case TYPEDEC_NESTED: if (node->u.type_declarator.u.nested.type_declarator) { node->u.type_declarator.u.nested.type_declarator->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.type_declarator.u.nested.type_declarator); if (ret) return ret; } if (!node->u.type_declarator.u.nested.abstract_array) { bt_list_for_each_entry(iter, &node->u.type_declarator.u.nested.length, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } } if (node->u.type_declarator.bitfield_len) { node->u.type_declarator.bitfield_len = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.type_declarator.bitfield_len); if (ret) return ret; } break; case TYPEDEC_UNKNOWN: default: fprintf(fd, "[error] %s: unknown type declarator %d\n", __func__, (int) node->u.type_declarator.type); return -EINVAL; } depth--; return 0; } int ctf_visitor_parent_links(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; if (node->visited) return 0; switch (node->type) { case NODE_ROOT: bt_list_for_each_entry(iter, &node->u.root.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.trace, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.stream, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.event, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.clock, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.callsite, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_EVENT: bt_list_for_each_entry(iter, &node->u.event.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STREAM: bt_list_for_each_entry(iter, &node->u.stream.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENV: bt_list_for_each_entry(iter, &node->u.env.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_TRACE: bt_list_for_each_entry(iter, &node->u.trace.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CLOCK: bt_list_for_each_entry(iter, &node->u.clock.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CALLSITE: bt_list_for_each_entry(iter, &node->u.callsite.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_CTF_EXPRESSION: depth++; bt_list_for_each_entry(iter, &node->u.ctf_expression.left, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.ctf_expression.right, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_UNARY_EXPRESSION: return ctf_visitor_unary_expression(fd, depth, node); case NODE_TYPEDEF: depth++; node->u._typedef.type_specifier_list->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u._typedef.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u._typedef.type_declarators, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_TYPEALIAS_TARGET: depth++; node->u.typealias_target.type_specifier_list->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.typealias_target.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u.typealias_target.type_declarators, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_TYPEALIAS_ALIAS: depth++; node->u.typealias_alias.type_specifier_list->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.typealias_alias.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u.typealias_alias.type_declarators, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_TYPEALIAS: node->u.typealias.target->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.typealias.target); if (ret) return ret; node->u.typealias.alias->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.typealias.alias); if (ret) return ret; break; case NODE_TYPE_SPECIFIER_LIST: bt_list_for_each_entry(iter, &node->u.type_specifier_list.head, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_TYPE_SPECIFIER: ret = ctf_visitor_type_specifier(fd, depth, node); if (ret) return ret; break; case NODE_POINTER: break; case NODE_TYPE_DECLARATOR: ret = ctf_visitor_type_declarator(fd, depth, node); if (ret) return ret; break; case NODE_FLOATING_POINT: bt_list_for_each_entry(iter, &node->u.floating_point.expressions, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_INTEGER: bt_list_for_each_entry(iter, &node->u.integer.expressions, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STRING: bt_list_for_each_entry(iter, &node->u.string.expressions, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENUMERATOR: bt_list_for_each_entry(iter, &node->u.enumerator.values, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_ENUM: depth++; if (node->u._enum.container_type) { ret = ctf_visitor_parent_links(fd, depth + 1, node->u._enum.container_type); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u._enum.enumerator_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } depth--; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: node->u.struct_or_variant_declaration.type_specifier_list->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, node->u.struct_or_variant_declaration.type_specifier_list); if (ret) return ret; bt_list_for_each_entry(iter, &node->u.struct_or_variant_declaration.type_declarators, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_VARIANT: bt_list_for_each_entry(iter, &node->u.variant.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_STRUCT: bt_list_for_each_entry(iter, &node->u._struct.declaration_list, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u._struct.min_align, siblings) { iter->parent = node; ret = ctf_visitor_parent_links(fd, depth + 1, iter); if (ret) return ret; } break; case NODE_UNKNOWN: default: fprintf(fd, "[error] %s: unknown node type %d\n", __func__, (int) node->type); return -EINVAL; } return ret; } babeltrace-1.2.1/formats/ctf/metadata/ctf-parser.y0000644000175000017500000021127612304150543016775 00000000000000%{ /* * ctf-parser.y * * Common Trace Format Metadata Grammar. * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #include "objstack.h" BT_HIDDEN int yydebug; /* Join two lists, put "add" at the end of "head". */ static inline void _bt_list_splice_tail (struct bt_list_head *add, struct bt_list_head *head) { /* Do nothing if the list which gets added is empty. */ if (add != add->next) { add->next->prev = head->prev; add->prev->next = head; head->prev->next = add->next; head->prev = add->prev; } } BT_HIDDEN int yyparse(struct ctf_scanner *scanner, yyscan_t yyscanner); BT_HIDDEN int yylex(union YYSTYPE *yyval, yyscan_t yyscanner); BT_HIDDEN int yylex_init_extra(struct ctf_scanner *scanner, yyscan_t * ptr_yy_globals); BT_HIDDEN int yylex_destroy(yyscan_t yyscanner); BT_HIDDEN void yyrestart(FILE * in_str, yyscan_t yyscanner); BT_HIDDEN int yyget_lineno(yyscan_t yyscanner); BT_HIDDEN char *yyget_text(yyscan_t yyscanner); static const char *node_type_to_str[] = { #define ENTRY(S) [S] = #S, FOREACH_CTF_NODES(ENTRY) #undef ENTRY }; /* * Static node for out of memory errors. Only "type" is used. lineno is * always left at 0. The rest of the node content can be overwritten, * but is never used. */ static struct ctf_node error_node = { .type = NODE_ERROR, }; BT_HIDDEN const char *node_type(struct ctf_node *node) { if (node->type < NR_NODE_TYPES) return node_type_to_str[node->type]; else return NULL; } void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src) { lvalp->s = objstack_alloc(scanner->objstack, strlen(src) + 1); strcpy(lvalp->s, src); } static int str_check(size_t str_len, size_t offset, size_t len) { /* check overflow */ if (offset + len < offset) return -1; if (offset + len > str_len) return -1; return 0; } static int bt_isodigit(int c) { switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': return 1; default: return 0; } } static int parse_base_sequence(const char *src, size_t len, size_t pos, char *buffer, size_t *buf_len, int base) { const size_t max_char = 3; int nr_char = 0; while (!str_check(len, pos, 1) && nr_char < max_char) { char c = src[pos++]; if (base == 8) { if (bt_isodigit(c)) buffer[nr_char++] = c; else break; } else if (base == 16) { if (isxdigit(c)) buffer[nr_char++] = c; else break; } else { /* Unsupported base */ return -1; } } assert(nr_char > 0); buffer[nr_char] = '\0'; *buf_len = nr_char; return 0; } static int import_basic_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, size_t len, const char *src, char delim) { size_t pos = 0, dpos = 0; if (str_check(len, pos, 1)) return -1; if (src[pos++] != delim) return -1; while (src[pos] != delim) { char c; if (str_check(len, pos, 1)) return -1; c = src[pos++]; if (c == '\\') { if (str_check(len, pos, 1)) return -1; c = src[pos++]; switch (c) { case 'a': c = '\a'; break; case 'b': c = '\b'; break; case 'f': c = '\f'; break; case 'n': c = '\n'; break; case 'r': c = '\r'; break; case 't': c = '\t'; break; case 'v': c = '\v'; break; case '\\': c = '\\'; break; case '\'': c = '\''; break; case '\"': c = '\"'; break; case '?': c = '?'; break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': { char oct_buffer[4]; size_t oct_len; if (parse_base_sequence(src, len, pos - 1, oct_buffer, &oct_len, 8)) return -1; c = strtoul(&oct_buffer[0], NULL, 8); pos += oct_len - 1; break; } case 'x': { char hex_buffer[4]; size_t hex_len; if (parse_base_sequence(src, len, pos, hex_buffer, &hex_len, 16)) return -1; c = strtoul(&hex_buffer[0], NULL, 16); pos += hex_len; break; } default: return -1; } } if (str_check(len, dpos, 1)) return -1; lvalp->s[dpos++] = c; } if (str_check(len, dpos, 1)) return -1; lvalp->s[dpos++] = '\0'; if (str_check(len, pos, 1)) return -1; if (src[pos++] != delim) return -1; if (str_check(len, pos, 1)) return -1; if (src[pos] != '\0') return -1; return 0; } int import_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src, char delim) { size_t len; len = strlen(src) + 1; lvalp->s = objstack_alloc(scanner->objstack, len); if (src[0] == 'L') { // TODO: import wide string printfl_error(yyget_lineno(scanner), "Wide string not supported yet."); return -1; } else { return import_basic_string(scanner, lvalp, len, src, delim); } } static void init_scope(struct ctf_scanner_scope *scope, struct ctf_scanner_scope *parent) { scope->parent = parent; scope->types = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); } static void finalize_scope(struct ctf_scanner_scope *scope) { g_hash_table_destroy(scope->types); } static void push_scope(struct ctf_scanner *scanner) { struct ctf_scanner_scope *ns; printf_debug("push scope\n"); ns = malloc(sizeof(struct ctf_scanner_scope)); init_scope(ns, scanner->cs); scanner->cs = ns; } static void pop_scope(struct ctf_scanner *scanner) { struct ctf_scanner_scope *os; printf_debug("pop scope\n"); os = scanner->cs; scanner->cs = os->parent; finalize_scope(os); free(os); } static int lookup_type(struct ctf_scanner_scope *s, const char *id) { int ret; ret = (int) (long) g_hash_table_lookup(s->types, id); printf_debug("lookup %p %s %d\n", s, id, ret); return ret; } BT_HIDDEN int is_type(struct ctf_scanner *scanner, const char *id) { struct ctf_scanner_scope *it; int ret = 0; for (it = scanner->cs; it != NULL; it = it->parent) { if (lookup_type(it, id)) { ret = 1; break; } } printf_debug("is type %s %d\n", id, ret); return ret; } static void add_type(struct ctf_scanner *scanner, char *id) { printf_debug("add type %s\n", id); if (lookup_type(scanner->cs, id)) return; g_hash_table_insert(scanner->cs->types, id, id); } static struct ctf_node *make_node(struct ctf_scanner *scanner, enum node_type type) { struct ctf_node *node; node = objstack_alloc(scanner->objstack, sizeof(*node)); if (!node) { printfl_fatal(yyget_lineno(scanner->scanner), "out of memory"); return &error_node; } node->type = type; node->lineno = yyget_lineno(scanner->scanner); BT_INIT_LIST_HEAD(&node->tmp_head); bt_list_add(&node->siblings, &node->tmp_head); switch (type) { case NODE_ROOT: node->type = NODE_ERROR; printfn_fatal(node, "trying to create root node"); break; case NODE_EVENT: BT_INIT_LIST_HEAD(&node->u.event.declaration_list); break; case NODE_STREAM: BT_INIT_LIST_HEAD(&node->u.stream.declaration_list); break; case NODE_ENV: BT_INIT_LIST_HEAD(&node->u.env.declaration_list); break; case NODE_TRACE: BT_INIT_LIST_HEAD(&node->u.trace.declaration_list); break; case NODE_CLOCK: BT_INIT_LIST_HEAD(&node->u.clock.declaration_list); break; case NODE_CALLSITE: BT_INIT_LIST_HEAD(&node->u.callsite.declaration_list); break; case NODE_CTF_EXPRESSION: BT_INIT_LIST_HEAD(&node->u.ctf_expression.left); BT_INIT_LIST_HEAD(&node->u.ctf_expression.right); break; case NODE_UNARY_EXPRESSION: break; case NODE_TYPEDEF: BT_INIT_LIST_HEAD(&node->u._typedef.type_declarators); break; case NODE_TYPEALIAS_TARGET: BT_INIT_LIST_HEAD(&node->u.typealias_target.type_declarators); break; case NODE_TYPEALIAS_ALIAS: BT_INIT_LIST_HEAD(&node->u.typealias_alias.type_declarators); break; case NODE_TYPEALIAS: break; case NODE_TYPE_SPECIFIER: break; case NODE_TYPE_SPECIFIER_LIST: BT_INIT_LIST_HEAD(&node->u.type_specifier_list.head); break; case NODE_POINTER: break; case NODE_TYPE_DECLARATOR: BT_INIT_LIST_HEAD(&node->u.type_declarator.pointers); break; case NODE_FLOATING_POINT: BT_INIT_LIST_HEAD(&node->u.floating_point.expressions); break; case NODE_INTEGER: BT_INIT_LIST_HEAD(&node->u.integer.expressions); break; case NODE_STRING: BT_INIT_LIST_HEAD(&node->u.string.expressions); break; case NODE_ENUMERATOR: BT_INIT_LIST_HEAD(&node->u.enumerator.values); break; case NODE_ENUM: BT_INIT_LIST_HEAD(&node->u._enum.enumerator_list); break; case NODE_STRUCT_OR_VARIANT_DECLARATION: BT_INIT_LIST_HEAD(&node->u.struct_or_variant_declaration.type_declarators); break; case NODE_VARIANT: BT_INIT_LIST_HEAD(&node->u.variant.declaration_list); break; case NODE_STRUCT: BT_INIT_LIST_HEAD(&node->u._struct.declaration_list); BT_INIT_LIST_HEAD(&node->u._struct.min_align); break; case NODE_UNKNOWN: default: node->type = NODE_ERROR; printfn_fatal(node, "unknown node type '%d'", (int) type); break; } return node; } static int reparent_ctf_expression(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_FLOATING_POINT: _bt_list_splice_tail(&node->tmp_head, &parent->u.floating_point.expressions); break; case NODE_INTEGER: _bt_list_splice_tail(&node->tmp_head, &parent->u.integer.expressions); break; case NODE_STRING: _bt_list_splice_tail(&node->tmp_head, &parent->u.string.expressions); break; case NODE_ROOT: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_VARIANT: case NODE_STRUCT: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_typedef(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: _bt_list_splice_tail(&node->tmp_head, &parent->u.root.declaration_list); break; case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type %d", parent->type); return -EINVAL; } return 0; } static int reparent_typealias(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: _bt_list_splice_tail(&node->tmp_head, &parent->u.root.declaration_list); break; case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_specifier(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_TYPE_SPECIFIER_LIST: _bt_list_splice_tail(&node->tmp_head, &parent->u.type_specifier_list.head); break; case NODE_TYPE_SPECIFIER: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_VARIANT: case NODE_STRUCT: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPE_DECLARATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_TYPEALIAS: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_specifier_list(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: bt_list_add_tail(&node->siblings, &parent->u.root.declaration_list); break; case NODE_EVENT: bt_list_add_tail(&node->siblings, &parent->u.event.declaration_list); break; case NODE_STREAM: bt_list_add_tail(&node->siblings, &parent->u.stream.declaration_list); break; case NODE_ENV: bt_list_add_tail(&node->siblings, &parent->u.env.declaration_list); break; case NODE_TRACE: bt_list_add_tail(&node->siblings, &parent->u.trace.declaration_list); break; case NODE_CLOCK: bt_list_add_tail(&node->siblings, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: bt_list_add_tail(&node->siblings, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: bt_list_add_tail(&node->siblings, &parent->u.variant.declaration_list); break; case NODE_STRUCT: bt_list_add_tail(&node->siblings, &parent->u._struct.declaration_list); break; case NODE_TYPEDEF: parent->u._typedef.type_specifier_list = node; break; case NODE_TYPEALIAS_TARGET: parent->u.typealias_target.type_specifier_list = node; break; case NODE_TYPEALIAS_ALIAS: parent->u.typealias_alias.type_specifier_list = node; break; case NODE_ENUM: parent->u._enum.container_type = node; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: parent->u.struct_or_variant_declaration.type_specifier_list = node; break; case NODE_TYPE_DECLARATOR: case NODE_TYPE_SPECIFIER: case NODE_TYPEALIAS: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_declarator(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_TYPE_DECLARATOR: parent->u.type_declarator.type = TYPEDEC_NESTED; parent->u.type_declarator.u.nested.type_declarator = node; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: _bt_list_splice_tail(&node->tmp_head, &parent->u.struct_or_variant_declaration.type_declarators); break; case NODE_TYPEDEF: _bt_list_splice_tail(&node->tmp_head, &parent->u._typedef.type_declarators); break; case NODE_TYPEALIAS_TARGET: _bt_list_splice_tail(&node->tmp_head, &parent->u.typealias_target.type_declarators); break; case NODE_TYPEALIAS_ALIAS: _bt_list_splice_tail(&node->tmp_head, &parent->u.typealias_alias.type_declarators); break; case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_VARIANT: case NODE_STRUCT: case NODE_TYPEALIAS: case NODE_ENUM: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } /* * set_parent_node * * Link node to parent. Returns 0 on success, -EPERM if it is not permitted to * create the link declared by the input, -ENOENT if node or parent is NULL, * -EINVAL if there is an internal structure problem. */ static int set_parent_node(struct ctf_node *node, struct ctf_node *parent) { if (!node || !parent) return -ENOENT; /* Note: Linking to parent will be done only by an external visitor */ switch (node->type) { case NODE_ROOT: printfn_fatal(node, "trying to reparent root node"); return -EINVAL; case NODE_EVENT: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.event); } else { return -EPERM; } break; case NODE_STREAM: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.stream); } else { return -EPERM; } break; case NODE_ENV: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.env); } else { return -EPERM; } break; case NODE_TRACE: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.trace); } else { return -EPERM; } break; case NODE_CLOCK: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.clock); } else { return -EPERM; } break; case NODE_CALLSITE: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.callsite); } else { return -EPERM; } break; case NODE_CTF_EXPRESSION: return reparent_ctf_expression(node, parent); case NODE_UNARY_EXPRESSION: if (parent->type == NODE_TYPE_DECLARATOR) parent->u.type_declarator.bitfield_len = node; else return -EPERM; break; case NODE_TYPEDEF: return reparent_typedef(node, parent); case NODE_TYPEALIAS_TARGET: if (parent->type == NODE_TYPEALIAS) parent->u.typealias.target = node; else return -EINVAL; case NODE_TYPEALIAS_ALIAS: if (parent->type == NODE_TYPEALIAS) parent->u.typealias.alias = node; else return -EINVAL; case NODE_TYPEALIAS: return reparent_typealias(node, parent); case NODE_POINTER: if (parent->type == NODE_TYPE_DECLARATOR) { _bt_list_splice_tail(&node->tmp_head, &parent->u.type_declarator.pointers); } else return -EPERM; break; case NODE_TYPE_DECLARATOR: return reparent_type_declarator(node, parent); case NODE_TYPE_SPECIFIER_LIST: return reparent_type_specifier_list(node, parent); case NODE_TYPE_SPECIFIER: return reparent_type_specifier(node, parent); case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUM: case NODE_VARIANT: case NODE_STRUCT: return -EINVAL; /* Dealt with internally within grammar */ case NODE_ENUMERATOR: if (parent->type == NODE_ENUM) { _bt_list_splice_tail(&node->tmp_head, &parent->u._enum.enumerator_list); } else { return -EPERM; } break; case NODE_STRUCT_OR_VARIANT_DECLARATION: switch (parent->type) { case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; default: return -EINVAL; } break; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } BT_HIDDEN void yyerror(struct ctf_scanner *scanner, yyscan_t yyscanner, const char *str) { printfl_error(yyget_lineno(scanner->scanner), "token \"%s\": %s\n", yyget_text(scanner->scanner), str); } BT_HIDDEN int yywrap(void) { return 1; } #define reparent_error(scanner, str) \ do { \ yyerror(scanner, scanner->scanner, YY_("reparent_error: " str)); \ YYERROR; \ } while (0) static struct ctf_ast *ctf_ast_alloc(struct ctf_scanner *scanner) { struct ctf_ast *ast; ast = objstack_alloc(scanner->objstack, sizeof(*ast)); if (!ast) return NULL; ast->root.type = NODE_ROOT; BT_INIT_LIST_HEAD(&ast->root.tmp_head); BT_INIT_LIST_HEAD(&ast->root.u.root.declaration_list); BT_INIT_LIST_HEAD(&ast->root.u.root.trace); BT_INIT_LIST_HEAD(&ast->root.u.root.env); BT_INIT_LIST_HEAD(&ast->root.u.root.stream); BT_INIT_LIST_HEAD(&ast->root.u.root.event); BT_INIT_LIST_HEAD(&ast->root.u.root.clock); BT_INIT_LIST_HEAD(&ast->root.u.root.callsite); return ast; } int ctf_scanner_append_ast(struct ctf_scanner *scanner, FILE *input) { /* Start processing new stream */ yyrestart(input, scanner->scanner); if (yydebug) fprintf(stdout, "Scanner input is a%s.\n", isatty(fileno(input)) ? "n interactive tty" : " noninteractive file"); return yyparse(scanner, scanner->scanner); } struct ctf_scanner *ctf_scanner_alloc(void) { struct ctf_scanner *scanner; int ret; yydebug = babeltrace_debug; scanner = malloc(sizeof(*scanner)); if (!scanner) return NULL; memset(scanner, 0, sizeof(*scanner)); ret = yylex_init_extra(scanner, &scanner->scanner); if (ret) { printf_fatal("yylex_init error"); goto cleanup_scanner; } scanner->objstack = objstack_create(); if (!scanner->objstack) goto cleanup_lexer; scanner->ast = ctf_ast_alloc(scanner); if (!scanner->ast) goto cleanup_objstack; init_scope(&scanner->root_scope, NULL); scanner->cs = &scanner->root_scope; return scanner; cleanup_objstack: objstack_destroy(scanner->objstack); cleanup_lexer: ret = yylex_destroy(scanner->scanner); if (!ret) printf_fatal("yylex_destroy error"); cleanup_scanner: free(scanner); return NULL; } void ctf_scanner_free(struct ctf_scanner *scanner) { int ret; if (!scanner) return; finalize_scope(&scanner->root_scope); objstack_destroy(scanner->objstack); ret = yylex_destroy(scanner->scanner); if (ret) printf_error("yylex_destroy error"); free(scanner); } %} %define api.pure /* %locations */ %error-verbose %parse-param {struct ctf_scanner *scanner} %parse-param {yyscan_t yyscanner} %lex-param {yyscan_t yyscanner} /* * Expect two shift-reduce conflicts. Caused by enum name-opt : type {} * vs struct { int :value; } (unnamed bit-field). The default is to * shift, so whenever we encounter an enumeration, we are doing the * proper thing (shift). It is illegal to declare an enumeration * "bit-field", so it is OK if this situation ends up in a parsing * error. */ %expect 2 %start file %token INTEGER_LITERAL STRING_LITERAL CHARACTER_LITERAL LSBRAC RSBRAC LPAREN RPAREN LBRAC RBRAC RARROW STAR PLUS MINUS LT GT TYPEASSIGN COLON SEMICOLON DOTDOTDOT DOT EQUAL COMMA CONST CHAR DOUBLE ENUM ENV EVENT FLOATING_POINT FLOAT INTEGER INT LONG SHORT SIGNED STREAM STRING STRUCT TRACE CALLSITE CLOCK TYPEALIAS TYPEDEF UNSIGNED VARIANT VOID _BOOL _COMPLEX _IMAGINARY TOK_ALIGN %token IDENTIFIER ID_TYPE %token ERROR %union { long long ll; unsigned long long ull; char c; char *s; struct ctf_node *n; } %type STRING_LITERAL CHARACTER_LITERAL %type keywords %type INTEGER_LITERAL %type postfix_expression unary_expression unary_expression_or_range %type declaration %type event_declaration %type stream_declaration %type env_declaration %type trace_declaration %type clock_declaration %type callsite_declaration %type integer_declaration_specifiers %type declaration_specifiers %type alias_declaration_specifiers %type type_declarator_list %type integer_type_specifier %type type_specifier %type struct_type_specifier %type variant_type_specifier %type enum_type_specifier %type struct_or_variant_declaration_list %type struct_or_variant_declaration %type struct_or_variant_declarator_list %type struct_or_variant_declarator %type enumerator_list %type enumerator %type abstract_declarator_list %type abstract_declarator %type direct_abstract_declarator %type alias_abstract_declarator_list %type alias_abstract_declarator %type direct_alias_abstract_declarator %type declarator %type direct_declarator %type type_declarator %type direct_type_declarator %type pointer %type ctf_assignment_expression_list %type ctf_assignment_expression %% file: declaration { if (set_parent_node($1, &ctf_scanner_get_ast(scanner)->root)) reparent_error(scanner, "error reparenting to root"); } | file declaration { if (set_parent_node($2, &ctf_scanner_get_ast(scanner)->root)) reparent_error(scanner, "error reparenting to root"); } ; keywords: VOID { $$ = yylval.s; } | CHAR { $$ = yylval.s; } | SHORT { $$ = yylval.s; } | INT { $$ = yylval.s; } | LONG { $$ = yylval.s; } | FLOAT { $$ = yylval.s; } | DOUBLE { $$ = yylval.s; } | SIGNED { $$ = yylval.s; } | UNSIGNED { $$ = yylval.s; } | _BOOL { $$ = yylval.s; } | _COMPLEX { $$ = yylval.s; } | _IMAGINARY { $$ = yylval.s; } | FLOATING_POINT { $$ = yylval.s; } | INTEGER { $$ = yylval.s; } | STRING { $$ = yylval.s; } | ENUM { $$ = yylval.s; } | VARIANT { $$ = yylval.s; } | STRUCT { $$ = yylval.s; } | CONST { $$ = yylval.s; } | TYPEDEF { $$ = yylval.s; } | EVENT { $$ = yylval.s; } | STREAM { $$ = yylval.s; } | ENV { $$ = yylval.s; } | TRACE { $$ = yylval.s; } | CLOCK { $$ = yylval.s; } | CALLSITE { $$ = yylval.s; } | TOK_ALIGN { $$ = yylval.s; } ; /* 2: Phrase structure grammar */ postfix_expression: IDENTIFIER { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; } | ID_TYPE { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; } | keywords { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; } | INTEGER_LITERAL { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_UNSIGNED_CONSTANT; $$->u.unary_expression.u.unsigned_constant = $1; } | STRING_LITERAL { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = $1; } | CHARACTER_LITERAL { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = $1; } | LPAREN unary_expression RPAREN { $$ = $2; } | postfix_expression LSBRAC unary_expression RSBRAC { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_SBRAC; $$->u.unary_expression.u.sbrac_exp = $3; bt_list_splice(&($1)->tmp_head, &($$)->tmp_head); bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } | postfix_expression DOT IDENTIFIER { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; $$->u.unary_expression.link = UNARY_DOTLINK; bt_list_splice(&($1)->tmp_head, &($$)->tmp_head); bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } | postfix_expression DOT ID_TYPE { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; $$->u.unary_expression.link = UNARY_DOTLINK; bt_list_splice(&($1)->tmp_head, &($$)->tmp_head); bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } | postfix_expression RARROW IDENTIFIER { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; $$->u.unary_expression.link = UNARY_ARROWLINK; bt_list_splice(&($1)->tmp_head, &($$)->tmp_head); bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } | postfix_expression RARROW ID_TYPE { $$ = make_node(scanner, NODE_UNARY_EXPRESSION); $$->u.unary_expression.type = UNARY_STRING; $$->u.unary_expression.u.string = yylval.s; $$->u.unary_expression.link = UNARY_ARROWLINK; bt_list_splice(&($1)->tmp_head, &($$)->tmp_head); bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } ; unary_expression: postfix_expression { $$ = $1; } | PLUS postfix_expression { $$ = $2; if ($$->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT && $$->u.unary_expression.type != UNARY_SIGNED_CONSTANT) { reparent_error(scanner, "expecting numeric constant"); } } | MINUS postfix_expression { $$ = $2; if ($$->u.unary_expression.type == UNARY_UNSIGNED_CONSTANT) { $$->u.unary_expression.type = UNARY_SIGNED_CONSTANT; $$->u.unary_expression.u.signed_constant = -($$->u.unary_expression.u.unsigned_constant); } else if ($$->u.unary_expression.type == UNARY_UNSIGNED_CONSTANT) { $$->u.unary_expression.u.signed_constant = -($$->u.unary_expression.u.signed_constant); } else { reparent_error(scanner, "expecting numeric constant"); } } ; unary_expression_or_range: unary_expression DOTDOTDOT unary_expression { $$ = $1; _bt_list_splice_tail(&($3)->tmp_head, &($$)->tmp_head); $3->u.unary_expression.link = UNARY_DOTDOTDOT; } | unary_expression { $$ = $1; } ; /* 2.2: Declarations */ declaration: declaration_specifiers SEMICOLON { $$ = $1; } | event_declaration { $$ = $1; } | stream_declaration { $$ = $1; } | env_declaration { $$ = $1; } | trace_declaration { $$ = $1; } | clock_declaration { $$ = $1; } | callsite_declaration { $$ = $1; } | declaration_specifiers TYPEDEF declaration_specifiers type_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($4)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEDEF declaration_specifiers type_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | declaration_specifiers TYPEDEF type_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEALIAS declaration_specifiers abstract_declarator_list TYPEASSIGN alias_declaration_specifiers alias_abstract_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEALIAS); $$->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); $$->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&($5)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($6)->tmp_head, &($$)->u.typealias.alias->u.typealias_alias.type_declarators); } ; event_declaration: event_declaration_begin event_declaration_end { $$ = make_node(scanner, NODE_EVENT); } | event_declaration_begin ctf_assignment_expression_list event_declaration_end { $$ = make_node(scanner, NODE_EVENT); if (set_parent_node($2, $$)) reparent_error(scanner, "event_declaration"); } ; event_declaration_begin: EVENT LBRAC { push_scope(scanner); } ; event_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; stream_declaration: stream_declaration_begin stream_declaration_end { $$ = make_node(scanner, NODE_STREAM); } | stream_declaration_begin ctf_assignment_expression_list stream_declaration_end { $$ = make_node(scanner, NODE_STREAM); if (set_parent_node($2, $$)) reparent_error(scanner, "stream_declaration"); } ; stream_declaration_begin: STREAM LBRAC { push_scope(scanner); } ; stream_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; env_declaration: env_declaration_begin env_declaration_end { $$ = make_node(scanner, NODE_ENV); } | env_declaration_begin ctf_assignment_expression_list env_declaration_end { $$ = make_node(scanner, NODE_ENV); if (set_parent_node($2, $$)) reparent_error(scanner, "env declaration"); } ; env_declaration_begin: ENV LBRAC { push_scope(scanner); } ; env_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; trace_declaration: trace_declaration_begin trace_declaration_end { $$ = make_node(scanner, NODE_TRACE); } | trace_declaration_begin ctf_assignment_expression_list trace_declaration_end { $$ = make_node(scanner, NODE_TRACE); if (set_parent_node($2, $$)) reparent_error(scanner, "trace_declaration"); } ; trace_declaration_begin: TRACE LBRAC { push_scope(scanner); } ; trace_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; clock_declaration: CLOCK clock_declaration_begin clock_declaration_end { $$ = make_node(scanner, NODE_CLOCK); } | CLOCK clock_declaration_begin ctf_assignment_expression_list clock_declaration_end { $$ = make_node(scanner, NODE_CLOCK); if (set_parent_node($3, $$)) reparent_error(scanner, "trace_declaration"); } ; clock_declaration_begin: LBRAC { push_scope(scanner); } ; clock_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; callsite_declaration: CALLSITE callsite_declaration_begin callsite_declaration_end { $$ = make_node(scanner, NODE_CALLSITE); } | CALLSITE callsite_declaration_begin ctf_assignment_expression_list callsite_declaration_end { $$ = make_node(scanner, NODE_CALLSITE); if (set_parent_node($3, $$)) reparent_error(scanner, "trace_declaration"); } ; callsite_declaration_begin: LBRAC { push_scope(scanner); } ; callsite_declaration_end: RBRAC SEMICOLON { pop_scope(scanner); } ; integer_declaration_specifiers: CONST { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | integer_type_specifier { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = $1; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | integer_declaration_specifiers CONST { struct ctf_node *node; $$ = $1; node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | integer_declaration_specifiers integer_type_specifier { $$ = $1; bt_list_add_tail(&($2)->siblings, &($$)->u.type_specifier_list.head); } ; declaration_specifiers: CONST { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | type_specifier { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = $1; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | declaration_specifiers CONST { struct ctf_node *node; $$ = $1; node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | declaration_specifiers type_specifier { $$ = $1; bt_list_add_tail(&($2)->siblings, &($$)->u.type_specifier_list.head); } ; type_declarator_list: type_declarator { $$ = $1; } | type_declarator_list COMMA type_declarator { $$ = $1; bt_list_add_tail(&($3)->siblings, &($$)->tmp_head); } ; integer_type_specifier: CHAR { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_CHAR; } | SHORT { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_SHORT; } | INT { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INT; } | LONG { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_LONG; } | SIGNED { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_SIGNED; } | UNSIGNED { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_UNSIGNED; } | _BOOL { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_BOOL; } | ID_TYPE { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_ID_TYPE; $$->u.type_specifier.id_type = yylval.s; } | INTEGER LBRAC RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INTEGER; $$->u.type_specifier.node = make_node(scanner, NODE_INTEGER); } | INTEGER LBRAC ctf_assignment_expression_list RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INTEGER; $$->u.type_specifier.node = make_node(scanner, NODE_INTEGER); if (set_parent_node($3, $$->u.type_specifier.node)) reparent_error(scanner, "integer reparent error"); } ; type_specifier: VOID { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_VOID; } | CHAR { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_CHAR; } | SHORT { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_SHORT; } | INT { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INT; } | LONG { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_LONG; } | FLOAT { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_FLOAT; } | DOUBLE { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_DOUBLE; } | SIGNED { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_SIGNED; } | UNSIGNED { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_UNSIGNED; } | _BOOL { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_BOOL; } | _COMPLEX { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_COMPLEX; } | _IMAGINARY { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_IMAGINARY; } | ID_TYPE { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_ID_TYPE; $$->u.type_specifier.id_type = yylval.s; } | FLOATING_POINT LBRAC RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_FLOATING_POINT; $$->u.type_specifier.node = make_node(scanner, NODE_FLOATING_POINT); } | FLOATING_POINT LBRAC ctf_assignment_expression_list RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_FLOATING_POINT; $$->u.type_specifier.node = make_node(scanner, NODE_FLOATING_POINT); if (set_parent_node($3, $$->u.type_specifier.node)) reparent_error(scanner, "floating point reparent error"); } | INTEGER LBRAC RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INTEGER; $$->u.type_specifier.node = make_node(scanner, NODE_INTEGER); } | INTEGER LBRAC ctf_assignment_expression_list RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_INTEGER; $$->u.type_specifier.node = make_node(scanner, NODE_INTEGER); if (set_parent_node($3, $$->u.type_specifier.node)) reparent_error(scanner, "integer reparent error"); } | STRING { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_STRING; $$->u.type_specifier.node = make_node(scanner, NODE_STRING); } | STRING LBRAC RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_STRING; $$->u.type_specifier.node = make_node(scanner, NODE_STRING); } | STRING LBRAC ctf_assignment_expression_list RBRAC { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_STRING; $$->u.type_specifier.node = make_node(scanner, NODE_STRING); if (set_parent_node($3, $$->u.type_specifier.node)) reparent_error(scanner, "string reparent error"); } | ENUM enum_type_specifier { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_ENUM; $$->u.type_specifier.node = $2; } | VARIANT variant_type_specifier { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_VARIANT; $$->u.type_specifier.node = $2; } | STRUCT struct_type_specifier { $$ = make_node(scanner, NODE_TYPE_SPECIFIER); $$->u.type_specifier.type = TYPESPEC_STRUCT; $$->u.type_specifier.node = $2; } ; struct_type_specifier: struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; if ($2 && set_parent_node($2, $$)) reparent_error(scanner, "struct reparent error"); } | IDENTIFIER struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; $$->u._struct.name = $1; if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "struct reparent error"); } | ID_TYPE struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; $$->u._struct.name = $1; if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "struct reparent error"); } | IDENTIFIER { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 0; $$->u._struct.name = $1; } | ID_TYPE { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 0; $$->u._struct.name = $1; } | struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end TOK_ALIGN LPAREN unary_expression RPAREN { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; bt_list_add_tail(&($6)->siblings, &$$->u._struct.min_align); if ($2 && set_parent_node($2, $$)) reparent_error(scanner, "struct reparent error"); } | IDENTIFIER struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end TOK_ALIGN LPAREN unary_expression RPAREN { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; $$->u._struct.name = $1; bt_list_add_tail(&($7)->siblings, &$$->u._struct.min_align); if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "struct reparent error"); } | ID_TYPE struct_declaration_begin struct_or_variant_declaration_list struct_declaration_end TOK_ALIGN LPAREN unary_expression RPAREN { $$ = make_node(scanner, NODE_STRUCT); $$->u._struct.has_body = 1; $$->u._struct.name = $1; bt_list_add_tail(&($7)->siblings, &$$->u._struct.min_align); if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "struct reparent error"); } ; struct_declaration_begin: LBRAC { push_scope(scanner); } ; struct_declaration_end: RBRAC { pop_scope(scanner); } ; variant_type_specifier: variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; if ($2 && set_parent_node($2, $$)) reparent_error(scanner, "variant reparent error"); } | LT IDENTIFIER GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.choice = $2; if ($5 && set_parent_node($5, $$)) reparent_error(scanner, "variant reparent error"); } | LT ID_TYPE GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.choice = $2; if ($5 && set_parent_node($5, $$)) reparent_error(scanner, "variant reparent error"); } | IDENTIFIER variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "variant reparent error"); } | IDENTIFIER LT IDENTIFIER GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; $$->u.variant.choice = $3; if ($6 && set_parent_node($6, $$)) reparent_error(scanner, "variant reparent error"); } | IDENTIFIER LT IDENTIFIER GT { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 0; $$->u.variant.name = $1; $$->u.variant.choice = $3; } | IDENTIFIER LT ID_TYPE GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; $$->u.variant.choice = $3; if ($6 && set_parent_node($6, $$)) reparent_error(scanner, "variant reparent error"); } | IDENTIFIER LT ID_TYPE GT { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 0; $$->u.variant.name = $1; $$->u.variant.choice = $3; } | ID_TYPE variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; if ($3 && set_parent_node($3, $$)) reparent_error(scanner, "variant reparent error"); } | ID_TYPE LT IDENTIFIER GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; $$->u.variant.choice = $3; if ($6 && set_parent_node($6, $$)) reparent_error(scanner, "variant reparent error"); } | ID_TYPE LT IDENTIFIER GT { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 0; $$->u.variant.name = $1; $$->u.variant.choice = $3; } | ID_TYPE LT ID_TYPE GT variant_declaration_begin struct_or_variant_declaration_list variant_declaration_end { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 1; $$->u.variant.name = $1; $$->u.variant.choice = $3; if ($6 && set_parent_node($6, $$)) reparent_error(scanner, "variant reparent error"); } | ID_TYPE LT ID_TYPE GT { $$ = make_node(scanner, NODE_VARIANT); $$->u.variant.has_body = 0; $$->u.variant.name = $1; $$->u.variant.choice = $3; } ; variant_declaration_begin: LBRAC { push_scope(scanner); } ; variant_declaration_end: RBRAC { pop_scope(scanner); } ; enum_type_specifier: LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; _bt_list_splice_tail(&($2)->tmp_head, &($$)->u._enum.enumerator_list); } | COLON integer_declaration_specifiers LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; ($$)->u._enum.container_type = $2; _bt_list_splice_tail(&($4)->tmp_head, &($$)->u._enum.enumerator_list); } | IDENTIFIER LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._enum.enumerator_list); } | IDENTIFIER COLON integer_declaration_specifiers LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; ($$)->u._enum.container_type = $3; _bt_list_splice_tail(&($5)->tmp_head, &($$)->u._enum.enumerator_list); } | ID_TYPE LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._enum.enumerator_list); } | ID_TYPE COLON integer_declaration_specifiers LBRAC enumerator_list RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; ($$)->u._enum.container_type = $3; _bt_list_splice_tail(&($5)->tmp_head, &($$)->u._enum.enumerator_list); } | LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; _bt_list_splice_tail(&($2)->tmp_head, &($$)->u._enum.enumerator_list); } | COLON integer_declaration_specifiers LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; ($$)->u._enum.container_type = $2; _bt_list_splice_tail(&($4)->tmp_head, &($$)->u._enum.enumerator_list); } | IDENTIFIER LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._enum.enumerator_list); } | IDENTIFIER COLON integer_declaration_specifiers LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; ($$)->u._enum.container_type = $3; _bt_list_splice_tail(&($5)->tmp_head, &($$)->u._enum.enumerator_list); } | IDENTIFIER { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 0; $$->u._enum.enum_id = $1; } | ID_TYPE LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._enum.enumerator_list); } | ID_TYPE COLON integer_declaration_specifiers LBRAC enumerator_list COMMA RBRAC { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 1; $$->u._enum.enum_id = $1; ($$)->u._enum.container_type = $3; _bt_list_splice_tail(&($5)->tmp_head, &($$)->u._enum.enumerator_list); } | ID_TYPE { $$ = make_node(scanner, NODE_ENUM); $$->u._enum.has_body = 0; $$->u._enum.enum_id = $1; } ; struct_or_variant_declaration_list: /* empty */ { $$ = NULL; } | struct_or_variant_declaration_list struct_or_variant_declaration { if ($1) { $$ = $1; bt_list_add_tail(&($2)->siblings, &($$)->tmp_head); } else { $$ = $2; bt_list_add_tail(&($$)->siblings, &($$)->tmp_head); } } ; struct_or_variant_declaration: declaration_specifiers struct_or_variant_declarator_list SEMICOLON { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); $$ = make_node(scanner, NODE_STRUCT_OR_VARIANT_DECLARATION); ($$)->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&($2)->tmp_head, &($$)->u.struct_or_variant_declaration.type_declarators); } | declaration_specifiers TYPEDEF declaration_specifiers type_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($4)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEDEF declaration_specifiers type_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | declaration_specifiers TYPEDEF type_declarator_list SEMICOLON { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); $$ = make_node(scanner, NODE_TYPEDEF); ($$)->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEALIAS declaration_specifiers abstract_declarator_list TYPEASSIGN alias_declaration_specifiers alias_abstract_declarator_list SEMICOLON { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEALIAS); $$->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); $$->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&($5)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($6)->tmp_head, &($$)->u.typealias.alias->u.typealias_alias.type_declarators); } ; alias_declaration_specifiers: CONST { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | type_specifier { struct ctf_node *node; $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = $1; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | IDENTIFIER { struct ctf_node *node; add_type(scanner, $1); $$ = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_ID_TYPE; node->u.type_specifier.id_type = yylval.s; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | alias_declaration_specifiers CONST { struct ctf_node *node; $$ = $1; node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } | alias_declaration_specifiers type_specifier { $$ = $1; bt_list_add_tail(&($2)->siblings, &($$)->u.type_specifier_list.head); } | alias_declaration_specifiers IDENTIFIER { struct ctf_node *node; add_type(scanner, $2); $$ = $1; node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_ID_TYPE; node->u.type_specifier.id_type = yylval.s; bt_list_add_tail(&node->siblings, &($$)->u.type_specifier_list.head); } ; struct_or_variant_declarator_list: struct_or_variant_declarator { $$ = $1; } | struct_or_variant_declarator_list COMMA struct_or_variant_declarator { $$ = $1; bt_list_add_tail(&($3)->siblings, &($$)->tmp_head); } ; struct_or_variant_declarator: declarator { $$ = $1; } | COLON unary_expression { $$ = $2; } | declarator COLON unary_expression { $$ = $1; if (set_parent_node($3, $1)) reparent_error(scanner, "struct_or_variant_declarator"); } ; enumerator_list: enumerator { $$ = $1; } | enumerator_list COMMA enumerator { $$ = $1; bt_list_add_tail(&($3)->siblings, &($$)->tmp_head); } ; enumerator: IDENTIFIER { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; } | ID_TYPE { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; } | keywords { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; } | STRING_LITERAL { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; } | IDENTIFIER EQUAL unary_expression_or_range { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; bt_list_splice(&($3)->tmp_head, &($$)->u.enumerator.values); } | ID_TYPE EQUAL unary_expression_or_range { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; bt_list_splice(&($3)->tmp_head, &($$)->u.enumerator.values); } | keywords EQUAL unary_expression_or_range { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; bt_list_splice(&($3)->tmp_head, &($$)->u.enumerator.values); } | STRING_LITERAL EQUAL unary_expression_or_range { $$ = make_node(scanner, NODE_ENUMERATOR); $$->u.enumerator.id = $1; bt_list_splice(&($3)->tmp_head, &($$)->u.enumerator.values); } ; abstract_declarator_list: abstract_declarator { $$ = $1; } | abstract_declarator_list COMMA abstract_declarator { $$ = $1; bt_list_add_tail(&($3)->siblings, &($$)->tmp_head); } ; abstract_declarator: direct_abstract_declarator { $$ = $1; } | pointer direct_abstract_declarator { $$ = $2; bt_list_splice(&($1)->tmp_head, &($$)->u.type_declarator.pointers); } ; direct_abstract_declarator: /* empty */ { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_ID; /* id is NULL */ } | IDENTIFIER { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_ID; $$->u.type_declarator.u.id = $1; } | LPAREN abstract_declarator RPAREN { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $2; } | direct_abstract_declarator LSBRAC unary_expression RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; BT_INIT_LIST_HEAD(&($$)->u.type_declarator.u.nested.length); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.type_declarator.u.nested.length); } | direct_abstract_declarator LSBRAC RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; $$->u.type_declarator.u.nested.abstract_array = 1; } ; alias_abstract_declarator_list: alias_abstract_declarator { $$ = $1; } | alias_abstract_declarator_list COMMA alias_abstract_declarator { $$ = $1; bt_list_add_tail(&($3)->siblings, &($$)->tmp_head); } ; alias_abstract_declarator: direct_alias_abstract_declarator { $$ = $1; } | pointer direct_alias_abstract_declarator { $$ = $2; bt_list_splice(&($1)->tmp_head, &($$)->u.type_declarator.pointers); } ; direct_alias_abstract_declarator: /* empty */ { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_ID; /* id is NULL */ } | LPAREN alias_abstract_declarator RPAREN { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $2; } | direct_alias_abstract_declarator LSBRAC unary_expression RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; BT_INIT_LIST_HEAD(&($$)->u.type_declarator.u.nested.length); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.type_declarator.u.nested.length); } | direct_alias_abstract_declarator LSBRAC RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; $$->u.type_declarator.u.nested.abstract_array = 1; } ; declarator: direct_declarator { $$ = $1; } | pointer direct_declarator { $$ = $2; bt_list_splice(&($1)->tmp_head, &($$)->u.type_declarator.pointers); } ; direct_declarator: IDENTIFIER { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_ID; $$->u.type_declarator.u.id = $1; } | LPAREN declarator RPAREN { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $2; } | direct_declarator LSBRAC unary_expression RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; BT_INIT_LIST_HEAD(&($$)->u.type_declarator.u.nested.length); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.type_declarator.u.nested.length); } ; type_declarator: direct_type_declarator { $$ = $1; } | pointer direct_type_declarator { $$ = $2; bt_list_splice(&($1)->tmp_head, &($$)->u.type_declarator.pointers); } ; direct_type_declarator: IDENTIFIER { add_type(scanner, $1); $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_ID; $$->u.type_declarator.u.id = $1; } | LPAREN type_declarator RPAREN { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $2; } | direct_type_declarator LSBRAC unary_expression RSBRAC { $$ = make_node(scanner, NODE_TYPE_DECLARATOR); $$->u.type_declarator.type = TYPEDEC_NESTED; $$->u.type_declarator.u.nested.type_declarator = $1; BT_INIT_LIST_HEAD(&($$)->u.type_declarator.u.nested.length); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.type_declarator.u.nested.length); } ; pointer: STAR { $$ = make_node(scanner, NODE_POINTER); } | STAR pointer { $$ = make_node(scanner, NODE_POINTER); bt_list_splice(&($2)->tmp_head, &($$)->tmp_head); } | STAR type_qualifier_list pointer { $$ = make_node(scanner, NODE_POINTER); $$->u.pointer.const_qualifier = 1; bt_list_splice(&($3)->tmp_head, &($$)->tmp_head); } ; type_qualifier_list: /* pointer assumes only const type qualifier */ CONST | type_qualifier_list CONST ; /* 2.3: CTF-specific declarations */ ctf_assignment_expression_list: ctf_assignment_expression SEMICOLON { $$ = $1; } | ctf_assignment_expression_list ctf_assignment_expression SEMICOLON { $$ = $1; bt_list_add_tail(&($2)->siblings, &($$)->tmp_head); } ; ctf_assignment_expression: unary_expression EQUAL unary_expression { /* * Because we have left and right, cannot use * set_parent_node. */ $$ = make_node(scanner, NODE_CTF_EXPRESSION); _bt_list_splice_tail(&($1)->tmp_head, &($$)->u.ctf_expression.left); if ($1->u.unary_expression.type != UNARY_STRING) reparent_error(scanner, "ctf_assignment_expression left expects string"); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.ctf_expression.right); } | unary_expression TYPEASSIGN declaration_specifiers /* Only allow struct */ { /* * Because we have left and right, cannot use * set_parent_node. */ $$ = make_node(scanner, NODE_CTF_EXPRESSION); _bt_list_splice_tail(&($1)->tmp_head, &($$)->u.ctf_expression.left); if ($1->u.unary_expression.type != UNARY_STRING) reparent_error(scanner, "ctf_assignment_expression left expects string"); bt_list_add_tail(&($3)->siblings, &($$)->u.ctf_expression.right); } | declaration_specifiers TYPEDEF declaration_specifiers type_declarator_list { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->u.type_specifier_list.head, &list->u.type_specifier_list.head); $$ = make_node(scanner, NODE_TYPEDEF); ($$)->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&($4)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEDEF declaration_specifiers type_declarator_list { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | declaration_specifiers TYPEDEF type_declarator_list { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&($1)->u.type_specifier_list.head, &list->u.type_specifier_list.head); $$ = make_node(scanner, NODE_TYPEDEF); ($$)->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&($3)->tmp_head, &($$)->u._typedef.type_declarators); } | TYPEALIAS declaration_specifiers abstract_declarator_list TYPEASSIGN alias_declaration_specifiers alias_abstract_declarator_list { struct ctf_node *list; $$ = make_node(scanner, NODE_TYPEALIAS); $$->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); $$->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&($2)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($3)->tmp_head, &($$)->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); $$->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&($5)->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&($6)->tmp_head, &($$)->u.typealias.alias->u.typealias_alias.type_declarators); } ; babeltrace-1.2.1/formats/ctf/metadata/ctf-scanner.h0000644000175000017500000000276412304150543017111 00000000000000#ifndef _CTF_SCANNER_H #define _CTF_SCANNER_H /* * ctf-scanner.h * * Copyright 2011-2012 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ #include #include "ctf-ast.h" #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif struct ctf_scanner_scope; struct ctf_scanner_scope { struct ctf_scanner_scope *parent; GHashTable *types; }; struct ctf_scanner { yyscan_t scanner; struct ctf_ast *ast; struct ctf_scanner_scope root_scope; struct ctf_scanner_scope *cs; struct objstack *objstack; }; struct ctf_scanner *ctf_scanner_alloc(void); void ctf_scanner_free(struct ctf_scanner *scanner); int ctf_scanner_append_ast(struct ctf_scanner *scanner, FILE *input); static inline struct ctf_ast *ctf_scanner_get_ast(struct ctf_scanner *scanner) { return scanner->ast; } BT_HIDDEN int is_type(struct ctf_scanner *scanner, const char *id); #endif /* _CTF_SCANNER_H */ babeltrace-1.2.1/formats/ctf/metadata/Makefile.in0000644000175000017500000006077212306621104016603 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ @BABELTRACE_BUILD_WITH_LIBUUID_TRUE@am__append_1 = -luuid @BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE@am__append_2 = -lc @BABELTRACE_BUILD_WITH_MINGW_TRUE@am__append_3 = -lrpcrt4 -lintl -liconv -lole32 -lpopt noinst_PROGRAMS = ctf-parser-test$(EXEEXT) subdir = formats/ctf/metadata DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ctf-lexer.c ctf-parser.c ctf-parser.h ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = libctf_ast_la_DEPENDENCIES = $(top_builddir)/lib/libbabeltrace.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) am_libctf_ast_la_OBJECTS = ctf-visitor-xml.lo \ ctf-visitor-parent-links.lo ctf-visitor-semantic-validator.lo \ ctf-visitor-generate-io-struct.lo libctf_ast_la_OBJECTS = $(am_libctf_ast_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libctf_parser_la_LIBADD = am_libctf_parser_la_OBJECTS = libctf_parser_la-ctf-lexer.lo \ libctf_parser_la-ctf-parser.lo libctf_parser_la-objstack.lo libctf_parser_la_OBJECTS = $(am_libctf_parser_la_OBJECTS) libctf_parser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(libctf_parser_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ PROGRAMS = $(noinst_PROGRAMS) am_ctf_parser_test_OBJECTS = ctf-parser-test.$(OBJEXT) ctf_parser_test_OBJECTS = $(am_ctf_parser_test_OBJECTS) ctf_parser_test_DEPENDENCIES = libctf-parser.la libctf-ast.la DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS) LTLEXCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(LEX) $(AM_LFLAGS) $(LFLAGS) AM_V_LEX = $(am__v_LEX_@AM_V@) am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@) am__v_LEX_0 = @echo " LEX " $@; YLWRAP = $(top_srcdir)/config/ylwrap YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS) LTYACCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(YACC) $(AM_YFLAGS) $(YFLAGS) AM_V_YACC = $(am__v_YACC_@AM_V@) am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@) am__v_YACC_0 = @echo " YACC " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libctf_ast_la_SOURCES) $(libctf_parser_la_SOURCES) \ $(ctf_parser_test_SOURCES) DIST_SOURCES = $(libctf_ast_la_SOURCES) $(libctf_parser_la_SOURCES) \ $(ctf_parser_test_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include BUILT_SOURCES = ctf-parser.h AM_YFLAGS = -t -d -v noinst_LTLIBRARIES = libctf-parser.la libctf-ast.la noinst_HEADERS = \ ctf-scanner.h \ ctf-ast.h \ ctf-scanner-symbols.h \ objstack.h libctf_parser_la_SOURCES = ctf-lexer.l ctf-parser.y objstack.c libctf_parser_la_CFLAGS = $(AM_CFLAGS) -include ctf-scanner-symbols.h libctf_ast_la_SOURCES = ctf-visitor-xml.c \ ctf-visitor-parent-links.c \ ctf-visitor-semantic-validator.c \ ctf-visitor-generate-io-struct.c libctf_ast_la_LIBADD = $(top_builddir)/lib/libbabeltrace.la \ $(am__append_1) $(am__append_2) $(am__append_3) ctf_parser_test_SOURCES = ctf-parser-test.c ctf_parser_test_LDADD = \ libctf-parser.la \ libctf-ast.la CLEANFILES = ctf-lexer.c ctf-parser.c ctf-parser.h ctf-parser.output all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .l .lo .o .obj .y $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf/metadata/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf/metadata/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libctf-ast.la: $(libctf_ast_la_OBJECTS) $(libctf_ast_la_DEPENDENCIES) $(EXTRA_libctf_ast_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libctf_ast_la_OBJECTS) $(libctf_ast_la_LIBADD) $(LIBS) ctf-parser.h: ctf-parser.c @if test ! -f $@; then rm -f ctf-parser.c; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) ctf-parser.c; else :; fi libctf-parser.la: $(libctf_parser_la_OBJECTS) $(libctf_parser_la_DEPENDENCIES) $(EXTRA_libctf_parser_la_DEPENDENCIES) $(AM_V_CCLD)$(libctf_parser_la_LINK) $(libctf_parser_la_OBJECTS) $(libctf_parser_la_LIBADD) $(LIBS) clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list ctf-parser-test$(EXEEXT): $(ctf_parser_test_OBJECTS) $(ctf_parser_test_DEPENDENCIES) $(EXTRA_ctf_parser_test_DEPENDENCIES) @rm -f ctf-parser-test$(EXEEXT) $(AM_V_CCLD)$(LINK) $(ctf_parser_test_OBJECTS) $(ctf_parser_test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-parser-test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-visitor-generate-io-struct.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-visitor-parent-links.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-visitor-semantic-validator.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-visitor-xml.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_parser_la-ctf-lexer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_parser_la-ctf-parser.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libctf_parser_la-objstack.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libctf_parser_la-ctf-lexer.lo: ctf-lexer.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -MT libctf_parser_la-ctf-lexer.lo -MD -MP -MF $(DEPDIR)/libctf_parser_la-ctf-lexer.Tpo -c -o libctf_parser_la-ctf-lexer.lo `test -f 'ctf-lexer.c' || echo '$(srcdir)/'`ctf-lexer.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_parser_la-ctf-lexer.Tpo $(DEPDIR)/libctf_parser_la-ctf-lexer.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-lexer.c' object='libctf_parser_la-ctf-lexer.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -c -o libctf_parser_la-ctf-lexer.lo `test -f 'ctf-lexer.c' || echo '$(srcdir)/'`ctf-lexer.c libctf_parser_la-ctf-parser.lo: ctf-parser.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -MT libctf_parser_la-ctf-parser.lo -MD -MP -MF $(DEPDIR)/libctf_parser_la-ctf-parser.Tpo -c -o libctf_parser_la-ctf-parser.lo `test -f 'ctf-parser.c' || echo '$(srcdir)/'`ctf-parser.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_parser_la-ctf-parser.Tpo $(DEPDIR)/libctf_parser_la-ctf-parser.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ctf-parser.c' object='libctf_parser_la-ctf-parser.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -c -o libctf_parser_la-ctf-parser.lo `test -f 'ctf-parser.c' || echo '$(srcdir)/'`ctf-parser.c libctf_parser_la-objstack.lo: objstack.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -MT libctf_parser_la-objstack.lo -MD -MP -MF $(DEPDIR)/libctf_parser_la-objstack.Tpo -c -o libctf_parser_la-objstack.lo `test -f 'objstack.c' || echo '$(srcdir)/'`objstack.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libctf_parser_la-objstack.Tpo $(DEPDIR)/libctf_parser_la-objstack.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='objstack.c' object='libctf_parser_la-objstack.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libctf_parser_la_CFLAGS) $(CFLAGS) -c -o libctf_parser_la-objstack.lo `test -f 'objstack.c' || echo '$(srcdir)/'`objstack.c .l.c: $(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE) .y.c: $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) installdirs: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -rm -f ctf-lexer.c -rm -f ctf-parser.c -rm -f ctf-parser.h -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \ ctags distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf/metadata/ctf-parser-test.c0000644000175000017500000000476712304150543017731 00000000000000/* * ctf-parser-test.c * * Common Trace Format Parser Test * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" int babeltrace_verbose, babeltrace_debug; int main(int argc, char **argv) { struct ctf_scanner *scanner; struct ctf_trace *trace; int ret = 0; babeltrace_debug = 1; babeltrace_verbose = 1; scanner = ctf_scanner_alloc(); if (!scanner) { fprintf(stderr, "Error allocating scanner\n"); return -ENOMEM; } ret = ctf_scanner_append_ast(scanner, stdin); if (ret) { fprintf(stderr, "Error creating AST\n"); goto end; } ret = ctf_visitor_print_xml(stderr, 0, &scanner->ast->root); if (ret) { fprintf(stderr, "Error visiting AST for XML output\n"); goto end; } ret = ctf_visitor_semantic_check(stderr, 0, &scanner->ast->root); if (ret) { fprintf(stderr, "Error in CTF semantic validation %d\n", ret); goto end; } trace = malloc(sizeof(*trace)); memset(trace, 0, sizeof(*trace)); ret = ctf_visitor_construct_metadata(stderr, 0, &scanner->ast->root, trace, BYTE_ORDER); if (ret) { fprintf(stderr, "Error in CTF metadata constructor %d\n", ret); goto free_trace; } free_trace: free(trace); end: ctf_scanner_free(scanner); return ret; } babeltrace-1.2.1/formats/ctf/metadata/ctf-parser.c0000644000175000017500000055752712306621157016771 00000000000000/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 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, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 1 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 1 "ctf-parser.y" /* * ctf-parser.y * * Common Trace Format Metadata Grammar. * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #include "objstack.h" BT_HIDDEN int yydebug; /* Join two lists, put "add" at the end of "head". */ static inline void _bt_list_splice_tail (struct bt_list_head *add, struct bt_list_head *head) { /* Do nothing if the list which gets added is empty. */ if (add != add->next) { add->next->prev = head->prev; add->prev->next = head; head->prev->next = add->next; head->prev = add->prev; } } BT_HIDDEN int yyparse(struct ctf_scanner *scanner, yyscan_t yyscanner); BT_HIDDEN int yylex(union YYSTYPE *yyval, yyscan_t yyscanner); BT_HIDDEN int yylex_init_extra(struct ctf_scanner *scanner, yyscan_t * ptr_yy_globals); BT_HIDDEN int yylex_destroy(yyscan_t yyscanner); BT_HIDDEN void yyrestart(FILE * in_str, yyscan_t yyscanner); BT_HIDDEN int yyget_lineno(yyscan_t yyscanner); BT_HIDDEN char *yyget_text(yyscan_t yyscanner); static const char *node_type_to_str[] = { #define ENTRY(S) [S] = #S, FOREACH_CTF_NODES(ENTRY) #undef ENTRY }; /* * Static node for out of memory errors. Only "type" is used. lineno is * always left at 0. The rest of the node content can be overwritten, * but is never used. */ static struct ctf_node error_node = { .type = NODE_ERROR, }; BT_HIDDEN const char *node_type(struct ctf_node *node) { if (node->type < NR_NODE_TYPES) return node_type_to_str[node->type]; else return NULL; } void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src) { lvalp->s = objstack_alloc(scanner->objstack, strlen(src) + 1); strcpy(lvalp->s, src); } static int str_check(size_t str_len, size_t offset, size_t len) { /* check overflow */ if (offset + len < offset) return -1; if (offset + len > str_len) return -1; return 0; } static int bt_isodigit(int c) { switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': return 1; default: return 0; } } static int parse_base_sequence(const char *src, size_t len, size_t pos, char *buffer, size_t *buf_len, int base) { const size_t max_char = 3; int nr_char = 0; while (!str_check(len, pos, 1) && nr_char < max_char) { char c = src[pos++]; if (base == 8) { if (bt_isodigit(c)) buffer[nr_char++] = c; else break; } else if (base == 16) { if (isxdigit(c)) buffer[nr_char++] = c; else break; } else { /* Unsupported base */ return -1; } } assert(nr_char > 0); buffer[nr_char] = '\0'; *buf_len = nr_char; return 0; } static int import_basic_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, size_t len, const char *src, char delim) { size_t pos = 0, dpos = 0; if (str_check(len, pos, 1)) return -1; if (src[pos++] != delim) return -1; while (src[pos] != delim) { char c; if (str_check(len, pos, 1)) return -1; c = src[pos++]; if (c == '\\') { if (str_check(len, pos, 1)) return -1; c = src[pos++]; switch (c) { case 'a': c = '\a'; break; case 'b': c = '\b'; break; case 'f': c = '\f'; break; case 'n': c = '\n'; break; case 'r': c = '\r'; break; case 't': c = '\t'; break; case 'v': c = '\v'; break; case '\\': c = '\\'; break; case '\'': c = '\''; break; case '\"': c = '\"'; break; case '?': c = '?'; break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': { char oct_buffer[4]; size_t oct_len; if (parse_base_sequence(src, len, pos - 1, oct_buffer, &oct_len, 8)) return -1; c = strtoul(&oct_buffer[0], NULL, 8); pos += oct_len - 1; break; } case 'x': { char hex_buffer[4]; size_t hex_len; if (parse_base_sequence(src, len, pos, hex_buffer, &hex_len, 16)) return -1; c = strtoul(&hex_buffer[0], NULL, 16); pos += hex_len; break; } default: return -1; } } if (str_check(len, dpos, 1)) return -1; lvalp->s[dpos++] = c; } if (str_check(len, dpos, 1)) return -1; lvalp->s[dpos++] = '\0'; if (str_check(len, pos, 1)) return -1; if (src[pos++] != delim) return -1; if (str_check(len, pos, 1)) return -1; if (src[pos] != '\0') return -1; return 0; } int import_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src, char delim) { size_t len; len = strlen(src) + 1; lvalp->s = objstack_alloc(scanner->objstack, len); if (src[0] == 'L') { // TODO: import wide string printfl_error(yyget_lineno(scanner), "Wide string not supported yet."); return -1; } else { return import_basic_string(scanner, lvalp, len, src, delim); } } static void init_scope(struct ctf_scanner_scope *scope, struct ctf_scanner_scope *parent) { scope->parent = parent; scope->types = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, NULL); } static void finalize_scope(struct ctf_scanner_scope *scope) { g_hash_table_destroy(scope->types); } static void push_scope(struct ctf_scanner *scanner) { struct ctf_scanner_scope *ns; printf_debug("push scope\n"); ns = malloc(sizeof(struct ctf_scanner_scope)); init_scope(ns, scanner->cs); scanner->cs = ns; } static void pop_scope(struct ctf_scanner *scanner) { struct ctf_scanner_scope *os; printf_debug("pop scope\n"); os = scanner->cs; scanner->cs = os->parent; finalize_scope(os); free(os); } static int lookup_type(struct ctf_scanner_scope *s, const char *id) { int ret; ret = (int) (long) g_hash_table_lookup(s->types, id); printf_debug("lookup %p %s %d\n", s, id, ret); return ret; } BT_HIDDEN int is_type(struct ctf_scanner *scanner, const char *id) { struct ctf_scanner_scope *it; int ret = 0; for (it = scanner->cs; it != NULL; it = it->parent) { if (lookup_type(it, id)) { ret = 1; break; } } printf_debug("is type %s %d\n", id, ret); return ret; } static void add_type(struct ctf_scanner *scanner, char *id) { printf_debug("add type %s\n", id); if (lookup_type(scanner->cs, id)) return; g_hash_table_insert(scanner->cs->types, id, id); } static struct ctf_node *make_node(struct ctf_scanner *scanner, enum node_type type) { struct ctf_node *node; node = objstack_alloc(scanner->objstack, sizeof(*node)); if (!node) { printfl_fatal(yyget_lineno(scanner->scanner), "out of memory"); return &error_node; } node->type = type; node->lineno = yyget_lineno(scanner->scanner); BT_INIT_LIST_HEAD(&node->tmp_head); bt_list_add(&node->siblings, &node->tmp_head); switch (type) { case NODE_ROOT: node->type = NODE_ERROR; printfn_fatal(node, "trying to create root node"); break; case NODE_EVENT: BT_INIT_LIST_HEAD(&node->u.event.declaration_list); break; case NODE_STREAM: BT_INIT_LIST_HEAD(&node->u.stream.declaration_list); break; case NODE_ENV: BT_INIT_LIST_HEAD(&node->u.env.declaration_list); break; case NODE_TRACE: BT_INIT_LIST_HEAD(&node->u.trace.declaration_list); break; case NODE_CLOCK: BT_INIT_LIST_HEAD(&node->u.clock.declaration_list); break; case NODE_CALLSITE: BT_INIT_LIST_HEAD(&node->u.callsite.declaration_list); break; case NODE_CTF_EXPRESSION: BT_INIT_LIST_HEAD(&node->u.ctf_expression.left); BT_INIT_LIST_HEAD(&node->u.ctf_expression.right); break; case NODE_UNARY_EXPRESSION: break; case NODE_TYPEDEF: BT_INIT_LIST_HEAD(&node->u._typedef.type_declarators); break; case NODE_TYPEALIAS_TARGET: BT_INIT_LIST_HEAD(&node->u.typealias_target.type_declarators); break; case NODE_TYPEALIAS_ALIAS: BT_INIT_LIST_HEAD(&node->u.typealias_alias.type_declarators); break; case NODE_TYPEALIAS: break; case NODE_TYPE_SPECIFIER: break; case NODE_TYPE_SPECIFIER_LIST: BT_INIT_LIST_HEAD(&node->u.type_specifier_list.head); break; case NODE_POINTER: break; case NODE_TYPE_DECLARATOR: BT_INIT_LIST_HEAD(&node->u.type_declarator.pointers); break; case NODE_FLOATING_POINT: BT_INIT_LIST_HEAD(&node->u.floating_point.expressions); break; case NODE_INTEGER: BT_INIT_LIST_HEAD(&node->u.integer.expressions); break; case NODE_STRING: BT_INIT_LIST_HEAD(&node->u.string.expressions); break; case NODE_ENUMERATOR: BT_INIT_LIST_HEAD(&node->u.enumerator.values); break; case NODE_ENUM: BT_INIT_LIST_HEAD(&node->u._enum.enumerator_list); break; case NODE_STRUCT_OR_VARIANT_DECLARATION: BT_INIT_LIST_HEAD(&node->u.struct_or_variant_declaration.type_declarators); break; case NODE_VARIANT: BT_INIT_LIST_HEAD(&node->u.variant.declaration_list); break; case NODE_STRUCT: BT_INIT_LIST_HEAD(&node->u._struct.declaration_list); BT_INIT_LIST_HEAD(&node->u._struct.min_align); break; case NODE_UNKNOWN: default: node->type = NODE_ERROR; printfn_fatal(node, "unknown node type '%d'", (int) type); break; } return node; } static int reparent_ctf_expression(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_FLOATING_POINT: _bt_list_splice_tail(&node->tmp_head, &parent->u.floating_point.expressions); break; case NODE_INTEGER: _bt_list_splice_tail(&node->tmp_head, &parent->u.integer.expressions); break; case NODE_STRING: _bt_list_splice_tail(&node->tmp_head, &parent->u.string.expressions); break; case NODE_ROOT: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_VARIANT: case NODE_STRUCT: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_typedef(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: _bt_list_splice_tail(&node->tmp_head, &parent->u.root.declaration_list); break; case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type %d", parent->type); return -EINVAL; } return 0; } static int reparent_typealias(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: _bt_list_splice_tail(&node->tmp_head, &parent->u.root.declaration_list); break; case NODE_EVENT: _bt_list_splice_tail(&node->tmp_head, &parent->u.event.declaration_list); break; case NODE_STREAM: _bt_list_splice_tail(&node->tmp_head, &parent->u.stream.declaration_list); break; case NODE_ENV: _bt_list_splice_tail(&node->tmp_head, &parent->u.env.declaration_list); break; case NODE_TRACE: _bt_list_splice_tail(&node->tmp_head, &parent->u.trace.declaration_list); break; case NODE_CLOCK: _bt_list_splice_tail(&node->tmp_head, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: _bt_list_splice_tail(&node->tmp_head, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPEALIAS: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_TYPE_DECLARATOR: case NODE_ENUMERATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_specifier(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_TYPE_SPECIFIER_LIST: _bt_list_splice_tail(&node->tmp_head, &parent->u.type_specifier_list.head); break; case NODE_TYPE_SPECIFIER: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_VARIANT: case NODE_STRUCT: case NODE_TYPEDEF: case NODE_TYPEALIAS_TARGET: case NODE_TYPEALIAS_ALIAS: case NODE_TYPE_DECLARATOR: case NODE_ENUM: case NODE_STRUCT_OR_VARIANT_DECLARATION: case NODE_TYPEALIAS: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_specifier_list(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_ROOT: bt_list_add_tail(&node->siblings, &parent->u.root.declaration_list); break; case NODE_EVENT: bt_list_add_tail(&node->siblings, &parent->u.event.declaration_list); break; case NODE_STREAM: bt_list_add_tail(&node->siblings, &parent->u.stream.declaration_list); break; case NODE_ENV: bt_list_add_tail(&node->siblings, &parent->u.env.declaration_list); break; case NODE_TRACE: bt_list_add_tail(&node->siblings, &parent->u.trace.declaration_list); break; case NODE_CLOCK: bt_list_add_tail(&node->siblings, &parent->u.clock.declaration_list); break; case NODE_CALLSITE: bt_list_add_tail(&node->siblings, &parent->u.callsite.declaration_list); break; case NODE_VARIANT: bt_list_add_tail(&node->siblings, &parent->u.variant.declaration_list); break; case NODE_STRUCT: bt_list_add_tail(&node->siblings, &parent->u._struct.declaration_list); break; case NODE_TYPEDEF: parent->u._typedef.type_specifier_list = node; break; case NODE_TYPEALIAS_TARGET: parent->u.typealias_target.type_specifier_list = node; break; case NODE_TYPEALIAS_ALIAS: parent->u.typealias_alias.type_specifier_list = node; break; case NODE_ENUM: parent->u._enum.container_type = node; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: parent->u.struct_or_variant_declaration.type_specifier_list = node; break; case NODE_TYPE_DECLARATOR: case NODE_TYPE_SPECIFIER: case NODE_TYPEALIAS: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } static int reparent_type_declarator(struct ctf_node *node, struct ctf_node *parent) { switch (parent->type) { case NODE_TYPE_DECLARATOR: parent->u.type_declarator.type = TYPEDEC_NESTED; parent->u.type_declarator.u.nested.type_declarator = node; break; case NODE_STRUCT_OR_VARIANT_DECLARATION: _bt_list_splice_tail(&node->tmp_head, &parent->u.struct_or_variant_declaration.type_declarators); break; case NODE_TYPEDEF: _bt_list_splice_tail(&node->tmp_head, &parent->u._typedef.type_declarators); break; case NODE_TYPEALIAS_TARGET: _bt_list_splice_tail(&node->tmp_head, &parent->u.typealias_target.type_declarators); break; case NODE_TYPEALIAS_ALIAS: _bt_list_splice_tail(&node->tmp_head, &parent->u.typealias_alias.type_declarators); break; case NODE_ROOT: case NODE_EVENT: case NODE_STREAM: case NODE_ENV: case NODE_TRACE: case NODE_CLOCK: case NODE_CALLSITE: case NODE_VARIANT: case NODE_STRUCT: case NODE_TYPEALIAS: case NODE_ENUM: case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_CTF_EXPRESSION: case NODE_TYPE_SPECIFIER: case NODE_TYPE_SPECIFIER_LIST: case NODE_POINTER: case NODE_ENUMERATOR: case NODE_UNARY_EXPRESSION: return -EPERM; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } /* * set_parent_node * * Link node to parent. Returns 0 on success, -EPERM if it is not permitted to * create the link declared by the input, -ENOENT if node or parent is NULL, * -EINVAL if there is an internal structure problem. */ static int set_parent_node(struct ctf_node *node, struct ctf_node *parent) { if (!node || !parent) return -ENOENT; /* Note: Linking to parent will be done only by an external visitor */ switch (node->type) { case NODE_ROOT: printfn_fatal(node, "trying to reparent root node"); return -EINVAL; case NODE_EVENT: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.event); } else { return -EPERM; } break; case NODE_STREAM: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.stream); } else { return -EPERM; } break; case NODE_ENV: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.env); } else { return -EPERM; } break; case NODE_TRACE: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.trace); } else { return -EPERM; } break; case NODE_CLOCK: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.clock); } else { return -EPERM; } break; case NODE_CALLSITE: if (parent->type == NODE_ROOT) { _bt_list_splice_tail(&node->tmp_head, &parent->u.root.callsite); } else { return -EPERM; } break; case NODE_CTF_EXPRESSION: return reparent_ctf_expression(node, parent); case NODE_UNARY_EXPRESSION: if (parent->type == NODE_TYPE_DECLARATOR) parent->u.type_declarator.bitfield_len = node; else return -EPERM; break; case NODE_TYPEDEF: return reparent_typedef(node, parent); case NODE_TYPEALIAS_TARGET: if (parent->type == NODE_TYPEALIAS) parent->u.typealias.target = node; else return -EINVAL; case NODE_TYPEALIAS_ALIAS: if (parent->type == NODE_TYPEALIAS) parent->u.typealias.alias = node; else return -EINVAL; case NODE_TYPEALIAS: return reparent_typealias(node, parent); case NODE_POINTER: if (parent->type == NODE_TYPE_DECLARATOR) { _bt_list_splice_tail(&node->tmp_head, &parent->u.type_declarator.pointers); } else return -EPERM; break; case NODE_TYPE_DECLARATOR: return reparent_type_declarator(node, parent); case NODE_TYPE_SPECIFIER_LIST: return reparent_type_specifier_list(node, parent); case NODE_TYPE_SPECIFIER: return reparent_type_specifier(node, parent); case NODE_FLOATING_POINT: case NODE_INTEGER: case NODE_STRING: case NODE_ENUM: case NODE_VARIANT: case NODE_STRUCT: return -EINVAL; /* Dealt with internally within grammar */ case NODE_ENUMERATOR: if (parent->type == NODE_ENUM) { _bt_list_splice_tail(&node->tmp_head, &parent->u._enum.enumerator_list); } else { return -EPERM; } break; case NODE_STRUCT_OR_VARIANT_DECLARATION: switch (parent->type) { case NODE_STRUCT: _bt_list_splice_tail(&node->tmp_head, &parent->u._struct.declaration_list); break; case NODE_VARIANT: _bt_list_splice_tail(&node->tmp_head, &parent->u.variant.declaration_list); break; default: return -EINVAL; } break; case NODE_UNKNOWN: default: printfn_fatal(node, "unknown node type '%d'", (int) parent->type); return -EINVAL; } return 0; } BT_HIDDEN void yyerror(struct ctf_scanner *scanner, yyscan_t yyscanner, const char *str) { printfl_error(yyget_lineno(scanner->scanner), "token \"%s\": %s\n", yyget_text(scanner->scanner), str); } BT_HIDDEN int yywrap(void) { return 1; } #define reparent_error(scanner, str) \ do { \ yyerror(scanner, scanner->scanner, YY_("reparent_error: " str)); \ YYERROR; \ } while (0) static struct ctf_ast *ctf_ast_alloc(struct ctf_scanner *scanner) { struct ctf_ast *ast; ast = objstack_alloc(scanner->objstack, sizeof(*ast)); if (!ast) return NULL; ast->root.type = NODE_ROOT; BT_INIT_LIST_HEAD(&ast->root.tmp_head); BT_INIT_LIST_HEAD(&ast->root.u.root.declaration_list); BT_INIT_LIST_HEAD(&ast->root.u.root.trace); BT_INIT_LIST_HEAD(&ast->root.u.root.env); BT_INIT_LIST_HEAD(&ast->root.u.root.stream); BT_INIT_LIST_HEAD(&ast->root.u.root.event); BT_INIT_LIST_HEAD(&ast->root.u.root.clock); BT_INIT_LIST_HEAD(&ast->root.u.root.callsite); return ast; } int ctf_scanner_append_ast(struct ctf_scanner *scanner, FILE *input) { /* Start processing new stream */ yyrestart(input, scanner->scanner); if (yydebug) fprintf(stdout, "Scanner input is a%s.\n", isatty(fileno(input)) ? "n interactive tty" : " noninteractive file"); return yyparse(scanner, scanner->scanner); } struct ctf_scanner *ctf_scanner_alloc(void) { struct ctf_scanner *scanner; int ret; yydebug = babeltrace_debug; scanner = malloc(sizeof(*scanner)); if (!scanner) return NULL; memset(scanner, 0, sizeof(*scanner)); ret = yylex_init_extra(scanner, &scanner->scanner); if (ret) { printf_fatal("yylex_init error"); goto cleanup_scanner; } scanner->objstack = objstack_create(); if (!scanner->objstack) goto cleanup_lexer; scanner->ast = ctf_ast_alloc(scanner); if (!scanner->ast) goto cleanup_objstack; init_scope(&scanner->root_scope, NULL); scanner->cs = &scanner->root_scope; return scanner; cleanup_objstack: objstack_destroy(scanner->objstack); cleanup_lexer: ret = yylex_destroy(scanner->scanner); if (!ret) printf_fatal("yylex_destroy error"); cleanup_scanner: free(scanner); return NULL; } void ctf_scanner_free(struct ctf_scanner *scanner) { int ret; if (!scanner) return; finalize_scope(&scanner->root_scope); objstack_destroy(scanner->objstack); ret = yylex_destroy(scanner->scanner); if (ret) printf_error("yylex_destroy error"); free(scanner); } /* Line 268 of yacc.c */ #line 1111 "ctf-parser.c" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 1 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { INTEGER_LITERAL = 258, STRING_LITERAL = 259, CHARACTER_LITERAL = 260, LSBRAC = 261, RSBRAC = 262, LPAREN = 263, RPAREN = 264, LBRAC = 265, RBRAC = 266, RARROW = 267, STAR = 268, PLUS = 269, MINUS = 270, LT = 271, GT = 272, TYPEASSIGN = 273, COLON = 274, SEMICOLON = 275, DOTDOTDOT = 276, DOT = 277, EQUAL = 278, COMMA = 279, CONST = 280, CHAR = 281, DOUBLE = 282, ENUM = 283, ENV = 284, EVENT = 285, FLOATING_POINT = 286, FLOAT = 287, INTEGER = 288, INT = 289, LONG = 290, SHORT = 291, SIGNED = 292, STREAM = 293, STRING = 294, STRUCT = 295, TRACE = 296, CALLSITE = 297, CLOCK = 298, TYPEALIAS = 299, TYPEDEF = 300, UNSIGNED = 301, VARIANT = 302, VOID = 303, _BOOL = 304, _COMPLEX = 305, _IMAGINARY = 306, TOK_ALIGN = 307, IDENTIFIER = 308, ID_TYPE = 309, ERROR = 310 }; #endif /* Tokens. */ #define INTEGER_LITERAL 258 #define STRING_LITERAL 259 #define CHARACTER_LITERAL 260 #define LSBRAC 261 #define RSBRAC 262 #define LPAREN 263 #define RPAREN 264 #define LBRAC 265 #define RBRAC 266 #define RARROW 267 #define STAR 268 #define PLUS 269 #define MINUS 270 #define LT 271 #define GT 272 #define TYPEASSIGN 273 #define COLON 274 #define SEMICOLON 275 #define DOTDOTDOT 276 #define DOT 277 #define EQUAL 278 #define COMMA 279 #define CONST 280 #define CHAR 281 #define DOUBLE 282 #define ENUM 283 #define ENV 284 #define EVENT 285 #define FLOATING_POINT 286 #define FLOAT 287 #define INTEGER 288 #define INT 289 #define LONG 290 #define SHORT 291 #define SIGNED 292 #define STREAM 293 #define STRING 294 #define STRUCT 295 #define TRACE 296 #define CALLSITE 297 #define CLOCK 298 #define TYPEALIAS 299 #define TYPEDEF 300 #define UNSIGNED 301 #define VARIANT 302 #define VOID 303 #define _BOOL 304 #define _COMPLEX 305 #define _IMAGINARY 306 #define TOK_ALIGN 307 #define IDENTIFIER 308 #define ID_TYPE 309 #define ERROR 310 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 1060 "ctf-parser.y" long long ll; unsigned long long ull; char c; char *s; struct ctf_node *n; /* Line 293 of yacc.c */ #line 1267 "ctf-parser.c" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 1279 "ctf-parser.c" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 72 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 2168 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 56 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 58 /* YYNRULES -- Number of rules. */ #define YYNRULES 232 /* YYNRULES -- Number of states. */ #define YYNSTATES 443 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 310 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 5, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 78, 83, 87, 91, 95, 99, 101, 104, 107, 111, 113, 116, 118, 120, 122, 124, 126, 128, 134, 139, 144, 152, 155, 159, 162, 165, 168, 172, 175, 178, 181, 185, 188, 191, 194, 198, 201, 204, 208, 213, 215, 218, 222, 227, 229, 232, 234, 236, 239, 242, 244, 246, 249, 252, 254, 258, 260, 262, 264, 266, 268, 270, 272, 274, 278, 283, 285, 287, 289, 291, 293, 295, 297, 299, 301, 303, 305, 307, 309, 313, 318, 322, 327, 329, 333, 338, 341, 344, 347, 351, 356, 361, 363, 365, 373, 382, 391, 393, 395, 399, 406, 413, 418, 426, 431, 439, 444, 449, 457, 462, 470, 475, 477, 479, 483, 489, 494, 501, 506, 513, 518, 525, 531, 539, 541, 547, 555, 557, 558, 561, 565, 571, 576, 581, 589, 591, 593, 595, 598, 601, 604, 606, 610, 612, 615, 619, 621, 625, 627, 629, 631, 633, 637, 641, 645, 649, 651, 655, 657, 660, 661, 663, 667, 672, 676, 678, 682, 684, 687, 688, 692, 697, 701, 703, 706, 708, 712, 717, 719, 722, 724, 728, 733, 735, 738, 742, 744, 747, 750, 754, 758, 762, 767, 771, 775 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int8 yyrhs[] = { 57, 0, -1, 62, -1, 57, 62, -1, 48, -1, 26, -1, 36, -1, 34, -1, 35, -1, 32, -1, 27, -1, 37, -1, 46, -1, 49, -1, 50, -1, 51, -1, 31, -1, 33, -1, 39, -1, 28, -1, 47, -1, 40, -1, 25, -1, 45, -1, 30, -1, 38, -1, 29, -1, 41, -1, 43, -1, 42, -1, 52, -1, 53, -1, 54, -1, 58, -1, 3, -1, 4, -1, 5, -1, 8, 60, 9, -1, 59, 6, 60, 7, -1, 59, 22, 53, -1, 59, 22, 54, -1, 59, 12, 53, -1, 59, 12, 54, -1, 59, -1, 14, 59, -1, 15, 59, -1, 60, 21, 60, -1, 60, -1, 82, 20, -1, 63, -1, 66, -1, 69, -1, 72, -1, 75, -1, 78, -1, 82, 45, 82, 83, 20, -1, 45, 82, 83, 20, -1, 82, 45, 83, 20, -1, 44, 82, 100, 18, 95, 103, 20, -1, 64, 65, -1, 64, 112, 65, -1, 30, 10, -1, 11, 20, -1, 67, 68, -1, 67, 112, 68, -1, 38, 10, -1, 11, 20, -1, 70, 71, -1, 70, 112, 71, -1, 29, 10, -1, 11, 20, -1, 73, 74, -1, 73, 112, 74, -1, 41, 10, -1, 11, 20, -1, 43, 76, 77, -1, 43, 76, 112, 77, -1, 10, -1, 11, 20, -1, 42, 79, 80, -1, 42, 79, 112, 80, -1, 10, -1, 11, 20, -1, 25, -1, 84, -1, 81, 25, -1, 81, 84, -1, 25, -1, 85, -1, 82, 25, -1, 82, 85, -1, 108, -1, 83, 24, 108, -1, 26, -1, 36, -1, 34, -1, 35, -1, 37, -1, 46, -1, 49, -1, 54, -1, 33, 10, 11, -1, 33, 10, 112, 11, -1, 48, -1, 26, -1, 36, -1, 34, -1, 35, -1, 32, -1, 27, -1, 37, -1, 46, -1, 49, -1, 50, -1, 51, -1, 54, -1, 31, 10, 11, -1, 31, 10, 112, 11, -1, 33, 10, 11, -1, 33, 10, 112, 11, -1, 39, -1, 39, 10, 11, -1, 39, 10, 112, 11, -1, 28, 92, -1, 47, 89, -1, 40, 86, -1, 87, 93, 88, -1, 53, 87, 93, 88, -1, 54, 87, 93, 88, -1, 53, -1, 54, -1, 87, 93, 88, 52, 8, 60, 9, -1, 53, 87, 93, 88, 52, 8, 60, 9, -1, 54, 87, 93, 88, 52, 8, 60, 9, -1, 10, -1, 11, -1, 90, 93, 91, -1, 16, 53, 17, 90, 93, 91, -1, 16, 54, 17, 90, 93, 91, -1, 53, 90, 93, 91, -1, 53, 16, 53, 17, 90, 93, 91, -1, 53, 16, 53, 17, -1, 53, 16, 54, 17, 90, 93, 91, -1, 53, 16, 54, 17, -1, 54, 90, 93, 91, -1, 54, 16, 53, 17, 90, 93, 91, -1, 54, 16, 53, 17, -1, 54, 16, 54, 17, 90, 93, 91, -1, 54, 16, 54, 17, -1, 10, -1, 11, -1, 10, 98, 11, -1, 19, 81, 10, 98, 11, -1, 53, 10, 98, 11, -1, 53, 19, 81, 10, 98, 11, -1, 54, 10, 98, 11, -1, 54, 19, 81, 10, 98, 11, -1, 10, 98, 24, 11, -1, 19, 81, 10, 98, 24, 11, -1, 53, 10, 98, 24, 11, -1, 53, 19, 81, 10, 98, 24, 11, -1, 53, -1, 54, 10, 98, 24, 11, -1, 54, 19, 81, 10, 98, 24, 11, -1, 54, -1, -1, 93, 94, -1, 82, 96, 20, -1, 82, 45, 82, 83, 20, -1, 45, 82, 83, 20, -1, 82, 45, 83, 20, -1, 44, 82, 100, 18, 95, 103, 20, -1, 25, -1, 85, -1, 53, -1, 95, 25, -1, 95, 85, -1, 95, 53, -1, 97, -1, 96, 24, 97, -1, 106, -1, 19, 60, -1, 106, 19, 60, -1, 99, -1, 98, 24, 99, -1, 53, -1, 54, -1, 58, -1, 4, -1, 53, 23, 61, -1, 54, 23, 61, -1, 58, 23, 61, -1, 4, 23, 61, -1, 101, -1, 100, 24, 101, -1, 102, -1, 110, 102, -1, -1, 53, -1, 8, 101, 9, -1, 102, 6, 60, 7, -1, 102, 6, 7, -1, 104, -1, 103, 24, 104, -1, 105, -1, 110, 105, -1, -1, 8, 104, 9, -1, 105, 6, 60, 7, -1, 105, 6, 7, -1, 107, -1, 110, 107, -1, 53, -1, 8, 106, 9, -1, 107, 6, 60, 7, -1, 109, -1, 110, 109, -1, 53, -1, 8, 108, 9, -1, 109, 6, 60, 7, -1, 13, -1, 13, 110, -1, 13, 111, 110, -1, 25, -1, 111, 25, -1, 113, 20, -1, 112, 113, 20, -1, 60, 23, 60, -1, 60, 18, 82, -1, 82, 45, 82, 83, -1, 45, 82, 83, -1, 82, 45, 83, -1, 44, 82, 100, 18, 95, 103, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 1115, 1115, 1120, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1188, 1194, 1200, 1206, 1212, 1218, 1224, 1228, 1236, 1245, 1254, 1263, 1275, 1277, 1285, 1302, 1308, 1315, 1317, 1319, 1321, 1323, 1325, 1327, 1329, 1340, 1350, 1360, 1381, 1385, 1394, 1399, 1405, 1409, 1418, 1423, 1428, 1432, 1441, 1446, 1451, 1455, 1464, 1469, 1474, 1478, 1487, 1492, 1497, 1501, 1510, 1515, 1520, 1529, 1537, 1546, 1554, 1563, 1571, 1580, 1588, 1590, 1598, 1603, 1608, 1613, 1618, 1623, 1628, 1633, 1639, 1645, 1656, 1661, 1666, 1671, 1676, 1681, 1686, 1691, 1696, 1701, 1706, 1711, 1716, 1722, 1728, 1736, 1742, 1750, 1756, 1762, 1770, 1776, 1782, 1791, 1798, 1806, 1814, 1820, 1826, 1834, 1843, 1855, 1860, 1865, 1872, 1880, 1888, 1896, 1905, 1912, 1921, 1928, 1936, 1945, 1952, 1961, 1971, 1976, 1981, 1987, 1994, 2001, 2009, 2016, 2024, 2030, 2037, 2044, 2052, 2058, 2065, 2073, 2083, 2084, 2097, 2107, 2118, 2128, 2138, 2159, 2168, 2176, 2187, 2196, 2201, 2215, 2217, 2225, 2227, 2229, 2238, 2240, 2248, 2253, 2258, 2263, 2268, 2274, 2280, 2286, 2295, 2297, 2305, 2307, 2316, 2321, 2327, 2333, 2341, 2351, 2353, 2361, 2363, 2372, 2377, 2383, 2391, 2401, 2403, 2411, 2417, 2423, 2434, 2436, 2444, 2451, 2457, 2468, 2472, 2477, 2487, 2488, 2494, 2496, 2504, 2516, 2528, 2539, 2549, 2559 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "INTEGER_LITERAL", "STRING_LITERAL", "CHARACTER_LITERAL", "LSBRAC", "RSBRAC", "LPAREN", "RPAREN", "LBRAC", "RBRAC", "RARROW", "STAR", "PLUS", "MINUS", "LT", "GT", "TYPEASSIGN", "COLON", "SEMICOLON", "DOTDOTDOT", "DOT", "EQUAL", "COMMA", "CONST", "CHAR", "DOUBLE", "ENUM", "ENV", "EVENT", "FLOATING_POINT", "FLOAT", "INTEGER", "INT", "LONG", "SHORT", "SIGNED", "STREAM", "STRING", "STRUCT", "TRACE", "CALLSITE", "CLOCK", "TYPEALIAS", "TYPEDEF", "UNSIGNED", "VARIANT", "VOID", "_BOOL", "_COMPLEX", "_IMAGINARY", "TOK_ALIGN", "IDENTIFIER", "ID_TYPE", "ERROR", "$accept", "file", "keywords", "postfix_expression", "unary_expression", "unary_expression_or_range", "declaration", "event_declaration", "event_declaration_begin", "event_declaration_end", "stream_declaration", "stream_declaration_begin", "stream_declaration_end", "env_declaration", "env_declaration_begin", "env_declaration_end", "trace_declaration", "trace_declaration_begin", "trace_declaration_end", "clock_declaration", "clock_declaration_begin", "clock_declaration_end", "callsite_declaration", "callsite_declaration_begin", "callsite_declaration_end", "integer_declaration_specifiers", "declaration_specifiers", "type_declarator_list", "integer_type_specifier", "type_specifier", "struct_type_specifier", "struct_declaration_begin", "struct_declaration_end", "variant_type_specifier", "variant_declaration_begin", "variant_declaration_end", "enum_type_specifier", "struct_or_variant_declaration_list", "struct_or_variant_declaration", "alias_declaration_specifiers", "struct_or_variant_declarator_list", "struct_or_variant_declarator", "enumerator_list", "enumerator", "abstract_declarator_list", "abstract_declarator", "direct_abstract_declarator", "alias_abstract_declarator_list", "alias_abstract_declarator", "direct_alias_abstract_declarator", "declarator", "direct_declarator", "type_declarator", "direct_type_declarator", "pointer", "type_qualifier_list", "ctf_assignment_expression_list", "ctf_assignment_expression", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 56, 57, 57, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 60, 60, 60, 61, 61, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 63, 63, 64, 65, 66, 66, 67, 68, 69, 69, 70, 71, 72, 72, 73, 74, 75, 75, 76, 77, 78, 78, 79, 80, 81, 81, 81, 81, 82, 82, 82, 82, 83, 83, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, 86, 86, 86, 86, 86, 86, 86, 86, 87, 88, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, 90, 91, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 93, 93, 94, 94, 94, 94, 94, 95, 95, 95, 95, 95, 95, 96, 96, 97, 97, 97, 98, 98, 99, 99, 99, 99, 99, 99, 99, 99, 100, 100, 101, 101, 102, 102, 102, 102, 102, 103, 103, 104, 104, 105, 105, 105, 105, 106, 106, 107, 107, 107, 108, 108, 109, 109, 109, 110, 110, 110, 111, 111, 112, 112, 113, 113, 113, 113, 113, 113 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 3, 3, 3, 3, 1, 2, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 5, 4, 4, 7, 2, 3, 2, 2, 2, 3, 2, 2, 2, 3, 2, 2, 2, 3, 2, 2, 3, 4, 1, 2, 3, 4, 1, 2, 1, 1, 2, 2, 1, 1, 2, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 3, 4, 1, 3, 4, 2, 2, 2, 3, 4, 4, 1, 1, 7, 8, 8, 1, 1, 3, 6, 6, 4, 7, 4, 7, 4, 4, 7, 4, 7, 4, 1, 1, 3, 5, 4, 6, 4, 6, 4, 6, 5, 7, 1, 5, 7, 1, 0, 2, 3, 5, 4, 4, 7, 1, 1, 1, 2, 2, 2, 1, 3, 1, 2, 3, 1, 3, 1, 1, 1, 1, 3, 3, 3, 3, 1, 3, 1, 2, 0, 1, 3, 4, 3, 1, 3, 1, 2, 0, 3, 4, 3, 1, 2, 1, 3, 4, 1, 2, 1, 3, 4, 1, 2, 3, 1, 2, 2, 3, 3, 3, 4, 3, 3, 6 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 0, 87, 104, 109, 0, 0, 0, 0, 108, 0, 106, 107, 105, 110, 0, 120, 0, 0, 0, 0, 0, 0, 111, 0, 103, 112, 113, 114, 115, 0, 2, 49, 0, 50, 0, 51, 0, 52, 0, 53, 54, 0, 88, 0, 0, 161, 164, 123, 69, 61, 0, 0, 65, 0, 134, 129, 130, 125, 165, 73, 81, 0, 77, 0, 197, 0, 149, 0, 0, 0, 124, 165, 1, 3, 34, 35, 36, 0, 0, 0, 0, 87, 104, 109, 19, 26, 24, 16, 108, 17, 106, 107, 105, 110, 25, 120, 21, 27, 29, 28, 0, 23, 111, 20, 103, 112, 113, 114, 30, 31, 115, 33, 43, 0, 59, 0, 0, 0, 0, 63, 0, 0, 67, 0, 0, 71, 0, 48, 89, 0, 90, 188, 22, 5, 10, 19, 16, 9, 17, 7, 8, 6, 11, 18, 21, 23, 12, 20, 4, 13, 14, 15, 185, 186, 187, 0, 183, 83, 93, 0, 95, 96, 94, 97, 98, 99, 100, 0, 84, 0, 0, 0, 0, 116, 0, 118, 0, 121, 0, 165, 165, 0, 0, 79, 0, 0, 75, 0, 197, 220, 198, 0, 193, 195, 197, 0, 217, 0, 91, 215, 0, 0, 0, 0, 165, 0, 165, 0, 32, 0, 62, 44, 45, 197, 0, 0, 0, 0, 0, 0, 0, 60, 0, 225, 66, 64, 70, 68, 74, 72, 0, 0, 0, 0, 0, 0, 151, 0, 0, 0, 85, 86, 0, 0, 0, 0, 117, 119, 122, 0, 0, 135, 0, 0, 0, 126, 166, 82, 80, 78, 76, 0, 223, 221, 0, 0, 197, 0, 196, 0, 56, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 150, 136, 37, 0, 230, 0, 41, 42, 39, 40, 228, 227, 0, 231, 226, 0, 57, 47, 192, 189, 190, 191, 157, 184, 101, 0, 0, 153, 0, 0, 155, 0, 0, 127, 128, 197, 0, 0, 0, 0, 212, 0, 178, 180, 210, 0, 0, 199, 224, 222, 172, 174, 173, 206, 194, 201, 0, 218, 92, 0, 165, 165, 141, 143, 139, 146, 148, 144, 0, 38, 229, 55, 0, 102, 152, 0, 159, 0, 162, 0, 0, 0, 0, 0, 0, 181, 0, 0, 167, 0, 0, 0, 211, 0, 206, 175, 177, 176, 0, 202, 204, 206, 200, 219, 0, 0, 165, 165, 165, 165, 206, 46, 158, 154, 0, 156, 0, 0, 0, 0, 169, 213, 0, 170, 179, 182, 0, 0, 0, 58, 206, 0, 205, 137, 138, 0, 0, 0, 0, 232, 160, 163, 0, 0, 206, 168, 214, 131, 207, 203, 209, 0, 140, 142, 145, 147, 132, 133, 0, 208, 171 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 29, 111, 112, 113, 300, 30, 31, 32, 114, 33, 34, 119, 35, 36, 122, 37, 38, 125, 39, 63, 186, 40, 61, 183, 167, 115, 197, 168, 42, 57, 58, 255, 70, 71, 283, 47, 181, 256, 335, 323, 324, 155, 156, 191, 192, 193, 380, 381, 382, 325, 326, 198, 199, 200, 264, 116, 117 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -359 static const yytype_int16 yypact[] = { 1967, -359, -359, -359, 41, 56, 63, 80, -359, 100, -359, -359, -359, -359, 114, 122, 44, 154, 159, 185, 2057, 2057, -359, 65, -359, -359, -359, -359, -359, 396, -359, -359, 448, -359, 500, -359, 552, -359, 604, -359, -359, 1937, -359, 1678, 2114, 167, 170, -359, -359, -359, 656, 708, -359, 760, -359, 193, 193, -359, -359, -359, -359, 812, -359, 864, 1755, 1785, -359, -13, 124, 172, -359, -359, -359, -359, -359, -359, -359, 1280, 38, 1332, 1332, 115, 136, 156, 41, -359, -359, 80, 224, 100, 239, 253, 271, 297, -359, 93, 44, -359, -359, -359, 2057, 2057, 330, 65, 392, 442, 449, 501, -359, -359, 553, -359, 119, 138, -359, 1997, 448, 186, 192, -359, 500, 199, -359, 552, 214, -359, 604, -359, -359, 1815, -359, 216, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, -359, 218, 221, 225, 28, -359, -359, -359, 245, -359, -359, -359, -359, -359, -359, -359, 189, -359, 1678, 2114, 1678, 2114, -359, 916, -359, 968, -359, 1020, -359, -359, 1875, 240, -359, 812, 248, -359, 864, 11, 24, -359, 173, -359, 268, 9, 25, -359, 45, -359, 289, 10, 273, 290, 131, -359, 252, -359, 1905, -359, 305, -359, 119, 119, 1755, 1785, 1280, 274, 287, 2057, 1280, 1815, -359, 302, -359, -359, -359, -359, -359, -359, -359, 1785, 69, 1280, 1280, 1280, 1280, -359, 1383, 1072, 1678, -359, -359, 48, 335, 50, 357, -359, -359, -359, 1875, 1875, -359, 2057, 2057, 1725, 265, -359, -359, -359, -359, -359, 320, -359, -359, 126, 2027, 11, 1176, 268, 326, -359, 25, 1280, 289, 346, 346, 341, 345, 1905, 347, 348, 1905, -359, -359, -359, 176, 342, 367, -359, -359, -359, -359, 2087, -359, 1785, 342, -359, 163, -359, 354, -359, -359, -359, -359, -359, -359, -359, 1124, 72, -359, 1434, 1678, -359, 1485, 1678, 324, 325, 1755, 1785, 35, 1280, 1815, -359, 197, -359, 359, 373, 17, 372, -359, -359, -359, -359, -359, -359, 1845, -359, -359, 378, -359, -359, 388, -359, -359, 346, 346, -359, 346, 346, -359, 2027, -359, 342, -359, 1280, -359, -359, 1536, -359, 96, -359, 139, 389, 391, 184, 243, 393, -359, 1785, 264, -359, 23, 1280, 1280, 373, 1280, 196, -359, -359, -359, 267, -359, 394, 397, -359, -359, 1905, 1905, -359, -359, -359, -359, 1845, -359, -359, -359, 1587, -359, 1638, 1280, 1280, 2027, -359, -359, 276, -359, -359, -359, 400, 399, 403, -359, 196, 1228, 394, -359, -359, 1905, 1905, 1905, 1905, 377, -359, -359, 404, 407, 1845, -359, -359, -359, -359, -359, -359, 402, -359, -359, -359, -359, -359, -359, 284, -359, -359 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -359, -359, -41, 270, -62, 91, 420, -359, -359, 350, -359, -359, 337, -359, -359, 383, -359, -359, 332, -359, -359, 281, -359, -359, 285, 61, 0, -128, -158, -38, -359, 288, 97, -359, -46, -274, -359, -57, -359, -334, -359, 99, -159, -231, -208, -175, 315, -358, -341, 127, 198, 191, -187, 312, -53, -359, -6, -70 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -33 static const yytype_int16 yytable[] = { 41, 231, 154, 130, 346, 285, 305, 349, 269, 241, 242, 194, 244, 261, 207, 209, 392, 188, 195, 188, 64, 65, 204, 206, 189, 319, 130, 130, 120, 41, 123, 319, 126, 195, 421, 410, 189, 189, 189, 236, 201, 202, 320, 319, 174, 176, 222, 178, 189, 262, 222, 43, 237, 222, 54, 184, 222, 187, 210, 309, 44, 312, 190, 196, 190, 270, 48, 426, 440, 271, 322, 431, 310, 49, 313, 66, 322, 130, 196, 305, 308, 67, 305, 356, 340, 241, 286, 241, 322, 298, 50, 336, 295, 271, 45, 46, 357, 55, 56, -18, 213, 214, 297, 53, 222, -18, 222, 395, 222, 364, 51, -18, 415, 416, 222, -18, -18, 222, 68, 69, 396, -22, 249, 250, 52, 215, 305, -22, 154, 230, 154, 216, 53, -22, 66, 194, 263, -22, -22, 189, 203, 217, -5, 434, 435, 436, 437, 278, -5, 281, 397, 330, 359, 287, -5, 361, 218, 293, -5, -5, 194, 219, -10, 398, 59, 305, 352, 305, -10, 60, 299, 299, 299, 299, -10, 130, 130, 169, -10, -10, 171, 254, 66, 353, 276, 277, 170, 271, 205, 172, 365, 265, 130, 369, 350, 62, 154, 266, 154, 239, 266, 327, 401, 54, 376, 338, 223, 254, 266, 189, 341, 331, 224, 194, 240, 158, 130, 370, 292, 226, 294, 371, 159, 160, 161, 162, 163, 334, 342, 343, -9, 243, 307, 245, 228, 164, -9, 222, 165, 232, 404, 233, -9, 166, 234, -7, -9, -9, 235, 254, 254, -7, 317, 318, 130, 238, 130, -7, 367, -8, 257, -7, -7, 402, 194, -8, 327, 271, 259, 154, 154, -8, 154, 154, 267, -8, -8, -6, 254, 130, 130, 254, 383, -6, 405, 386, 387, 411, 271, -6, 274, 412, 393, -6, -6, 272, 427, 379, 388, 389, 271, 390, 391, -11, 442, 279, 280, 275, 412, -11, 407, 408, 334, 409, 284, -11, 154, 328, 327, -11, -11, 368, 296, 383, 301, 302, 303, 288, 289, 329, 130, 417, 418, 419, 420, 339, -12, 424, 425, 383, 290, 291, -12, 179, 180, 311, 315, 316, -12, 211, 212, 433, -12, -12, 379, 154, 66, 154, 344, 383, 240, 158, 345, 334, 347, 348, 271, 314, 159, 160, 161, 162, 163, 383, 351, 354, 362, 363, 372, 373, 375, 164, 240, 158, 165, 384, 254, 254, 379, 166, 159, 160, 161, 162, 163, 385, 72, 399, -4, 400, 413, 412, 403, 164, -4, 376, 165, 428, 429, 441, -4, 166, 430, 438, -4, -4, 439, 254, 254, 254, 254, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -13, 73, 28, 74, 75, 76, -13, -14, 77, 225, 229, 78, -13, -14, 79, 80, -13, -13, 221, -14, 260, 258, 406, -14, -14, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 227, -15, 77, 268, 414, 118, 273, -15, 79, 80, 0, 366, 374, -15, 0, 0, 0, -15, -15, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, -32, 77, 0, 0, 121, 0, -32, 79, 80, 0, 0, 0, -32, 0, 0, 0, -32, -32, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 124, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 173, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 175, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 177, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 182, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 185, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 246, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 247, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 248, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 306, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 0, 77, 0, 0, 355, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 74, 75, 76, 0, 337, 77, 0, 0, 0, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 109, 208, 74, 75, 76, 0, 432, 77, 0, 0, 0, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 109, 208, 74, 75, 76, 0, 0, 77, 0, 0, 0, 0, 0, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 109, 208, 74, 75, 76, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 109, 208, 131, 0, 0, 0, 0, 0, 0, 304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 131, 0, 0, 0, 0, 0, 0, 358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 131, 0, 0, 0, 0, 0, 0, 360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 131, 0, 0, 0, 0, 0, 0, 394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 131, 0, 0, 0, 0, 0, 0, 422, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 131, 0, 0, 0, 0, 0, 0, 423, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 131, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 134, 135, 85, 86, 136, 137, 138, 139, 140, 141, 142, 94, 143, 144, 97, 98, 99, 0, 145, 146, 147, 148, 149, 150, 151, 108, 152, 153, 319, 0, 0, 0, 0, 189, 0, 0, 0, 0, 0, 320, 0, 0, 0, 0, 0, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 188, 15, 16, 0, 0, 189, 0, 321, 22, 23, 24, 25, 26, 27, 0, 322, 28, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 195, 15, 16, 0, 0, 189, 0, 0, 22, 23, 24, 25, 26, 27, 0, 190, 28, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 195, 15, 16, 0, 0, 189, 0, 0, 22, 23, 24, 25, 26, 27, 0, 196, 28, 1, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 376, 15, 16, 0, 0, 189, 0, 0, 22, 23, 24, 25, 26, 27, 0, 196, 28, 377, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 251, 0, 0, 0, 0, 22, 23, 24, 25, 26, 27, 0, 378, 28, 1, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 282, 0, 0, 252, 253, 22, 23, 24, 25, 26, 27, 0, 0, 28, 1, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 252, 253, 22, 23, 24, 25, 26, 27, 127, 0, 28, 0, 0, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 0, 129, 22, 23, 24, 25, 26, 27, 0, 0, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 0, 220, 22, 23, 24, 25, 26, 27, 0, 0, 28, 332, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 0, 0, 22, 23, 24, 25, 26, 27, 0, 333, 28, 1, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 0, 0, 22, 23, 24, 25, 26, 27, 0, 0, 28, 128, 2, 3, 4, 0, 0, 7, 8, 9, 10, 11, 12, 13, 0, 15, 16, 0, 0, 0, 0, 0, 22, 23, 24, 25, 26, 27, 157, 158, 28, 0, 0, 0, 0, 0, 159, 160, 161, 162, 163, 0, 0, 0, 0, 0, 0, 0, 0, 164, 0, 0, 165, 0, 0, 0, 0, 166 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-359)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 129, 43, 41, 278, 213, 237, 281, 195, 167, 169, 64, 171, 188, 71, 77, 350, 8, 8, 8, 20, 21, 68, 69, 13, 8, 64, 65, 34, 29, 36, 8, 38, 8, 392, 376, 13, 13, 13, 11, 53, 54, 19, 8, 50, 51, 116, 53, 13, 25, 120, 10, 24, 123, 10, 61, 126, 63, 20, 11, 19, 11, 53, 53, 53, 20, 10, 401, 426, 24, 53, 412, 24, 10, 24, 10, 53, 115, 53, 310, 239, 16, 313, 11, 271, 243, 214, 245, 53, 20, 10, 266, 220, 24, 53, 54, 24, 53, 54, 6, 100, 101, 230, 10, 174, 12, 176, 11, 178, 317, 10, 18, 386, 387, 184, 22, 23, 187, 53, 54, 24, 6, 179, 180, 10, 6, 357, 12, 169, 129, 171, 12, 10, 18, 10, 188, 189, 22, 23, 13, 16, 22, 6, 417, 418, 419, 420, 204, 12, 206, 11, 25, 311, 215, 18, 314, 18, 219, 22, 23, 213, 23, 6, 24, 10, 396, 294, 398, 12, 10, 232, 233, 234, 235, 18, 213, 214, 10, 22, 23, 10, 181, 10, 20, 53, 54, 19, 24, 16, 19, 318, 18, 230, 321, 18, 10, 237, 24, 239, 10, 24, 254, 18, 10, 8, 267, 20, 207, 24, 13, 272, 264, 20, 266, 25, 26, 254, 20, 218, 20, 220, 24, 33, 34, 35, 36, 37, 265, 274, 275, 6, 170, 238, 172, 20, 46, 12, 307, 49, 23, 368, 23, 18, 54, 23, 6, 22, 23, 23, 249, 250, 12, 252, 253, 292, 10, 294, 18, 320, 6, 20, 22, 23, 20, 317, 12, 319, 24, 20, 310, 311, 18, 313, 314, 6, 22, 23, 6, 278, 317, 318, 281, 335, 12, 20, 342, 343, 20, 24, 18, 17, 24, 354, 22, 23, 6, 20, 335, 344, 345, 24, 347, 348, 6, 20, 53, 54, 17, 24, 12, 372, 373, 350, 375, 9, 18, 357, 52, 371, 22, 23, 321, 20, 376, 233, 234, 235, 53, 54, 9, 368, 388, 389, 390, 391, 9, 6, 399, 400, 392, 53, 54, 12, 55, 56, 10, 249, 250, 18, 79, 80, 413, 22, 23, 392, 396, 10, 398, 17, 412, 25, 26, 17, 401, 17, 17, 24, 10, 33, 34, 35, 36, 37, 426, 7, 21, 52, 52, 19, 6, 8, 46, 25, 26, 49, 7, 386, 387, 426, 54, 33, 34, 35, 36, 37, 7, 0, 8, 6, 8, 6, 24, 9, 46, 12, 8, 49, 7, 9, 7, 18, 54, 9, 9, 22, 23, 9, 417, 418, 419, 420, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 6, 29, 54, 3, 4, 5, 12, 6, 8, 120, 126, 11, 18, 12, 14, 15, 22, 23, 116, 18, 187, 184, 371, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, 123, 6, 8, 194, 383, 11, 200, 12, 14, 15, -1, 319, 327, 18, -1, -1, -1, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, 6, 8, -1, -1, 11, -1, 12, 14, 15, -1, -1, -1, 18, -1, -1, -1, 22, 23, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, 11, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, 7, 8, -1, -1, -1, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, 7, 8, -1, -1, -1, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, -1, -1, -1, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 3, 4, 5, -1, -1, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 4, -1, -1, -1, -1, -1, -1, 11, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 4, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 8, -1, -1, -1, -1, 13, -1, -1, -1, -1, -1, 19, -1, -1, -1, -1, -1, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, 8, 39, 40, -1, -1, 13, -1, 45, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, 8, 39, 40, -1, -1, 13, -1, -1, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, 8, 39, 40, -1, -1, 13, -1, -1, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, 8, 39, 40, -1, -1, 13, -1, -1, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, 11, -1, -1, -1, -1, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, 11, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, 20, -1, 54, -1, -1, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, -1, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, -1, 45, 46, 47, 48, 49, 50, 51, -1, -1, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, -1, -1, 46, 47, 48, 49, 50, 51, -1, 53, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, -1, -1, 46, 47, 48, 49, 50, 51, -1, -1, 54, 25, 26, 27, 28, -1, -1, 31, 32, 33, 34, 35, 36, 37, -1, 39, 40, -1, -1, -1, -1, -1, 46, 47, 48, 49, 50, 51, 25, 26, 54, -1, -1, -1, -1, -1, 33, 34, 35, 36, 37, -1, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, 49, -1, -1, -1, -1, 54 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 54, 57, 62, 63, 64, 66, 67, 69, 70, 72, 73, 75, 78, 82, 85, 10, 19, 53, 54, 92, 10, 10, 10, 10, 10, 10, 10, 53, 54, 86, 87, 10, 10, 79, 10, 76, 82, 82, 10, 16, 53, 54, 89, 90, 0, 62, 3, 4, 5, 8, 11, 14, 15, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 58, 59, 60, 65, 82, 112, 113, 11, 68, 112, 11, 71, 112, 11, 74, 112, 20, 25, 45, 85, 4, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 39, 40, 45, 46, 47, 48, 49, 50, 51, 53, 54, 58, 98, 99, 25, 26, 33, 34, 35, 36, 37, 46, 49, 54, 81, 84, 10, 19, 10, 19, 11, 112, 11, 112, 11, 112, 87, 87, 93, 11, 80, 112, 11, 77, 112, 8, 13, 53, 100, 101, 102, 110, 8, 53, 83, 108, 109, 110, 53, 54, 16, 90, 16, 90, 93, 54, 60, 20, 59, 59, 82, 82, 6, 12, 22, 18, 23, 45, 65, 113, 20, 20, 68, 20, 71, 20, 74, 82, 83, 23, 23, 23, 23, 11, 24, 10, 10, 25, 84, 98, 81, 98, 81, 11, 11, 11, 93, 93, 11, 44, 45, 82, 88, 94, 20, 80, 20, 77, 101, 25, 110, 111, 18, 24, 6, 102, 108, 20, 24, 6, 109, 17, 17, 53, 54, 93, 53, 54, 93, 11, 91, 9, 100, 83, 60, 53, 54, 53, 54, 82, 60, 82, 83, 20, 83, 20, 60, 61, 61, 61, 61, 11, 99, 11, 112, 98, 11, 24, 10, 11, 24, 10, 88, 88, 82, 82, 8, 19, 45, 53, 96, 97, 106, 107, 110, 52, 9, 25, 110, 25, 53, 85, 95, 101, 7, 60, 9, 108, 60, 90, 90, 17, 17, 91, 17, 17, 91, 18, 7, 83, 20, 21, 11, 11, 24, 11, 98, 11, 98, 52, 52, 100, 83, 106, 60, 82, 83, 20, 24, 19, 6, 107, 8, 8, 25, 53, 85, 103, 104, 105, 110, 7, 7, 93, 93, 90, 90, 90, 90, 95, 60, 11, 11, 24, 11, 24, 8, 8, 18, 20, 9, 83, 20, 97, 60, 60, 60, 104, 20, 24, 6, 105, 91, 91, 93, 93, 93, 93, 103, 11, 11, 60, 60, 95, 20, 7, 9, 9, 104, 7, 60, 91, 91, 91, 91, 9, 9, 103, 7, 20 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (scanner, yyscanner, YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, YYLEX_PARAM) #else # define YYLEX yylex (&yylval, yyscanner) #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value, scanner, yyscanner); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct ctf_scanner *scanner, yyscan_t yyscanner) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep, scanner, yyscanner) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; struct ctf_scanner *scanner; yyscan_t yyscanner; #endif { if (!yyvaluep) return; YYUSE (scanner); YYUSE (yyscanner); # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct ctf_scanner *scanner, yyscan_t yyscanner) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep, scanner, yyscanner) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; struct ctf_scanner *scanner; yyscan_t yyscanner; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep, scanner, yyscanner); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule, struct ctf_scanner *scanner, yyscan_t yyscanner) #else static void yy_reduce_print (yyvsp, yyrule, scanner, yyscanner) YYSTYPE *yyvsp; int yyrule; struct ctf_scanner *scanner; yyscan_t yyscanner; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) , scanner, yyscanner); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule, scanner, yyscanner); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, struct ctf_scanner *scanner, yyscan_t yyscanner) #else static void yydestruct (yymsg, yytype, yyvaluep, scanner, yyscanner) const char *yymsg; int yytype; YYSTYPE *yyvaluep; struct ctf_scanner *scanner; yyscan_t yyscanner; #endif { YYUSE (yyvaluep); YYUSE (scanner); YYUSE (yyscanner); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (struct ctf_scanner *scanner, yyscan_t yyscanner); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (struct ctf_scanner *scanner, yyscan_t yyscanner) #else int yyparse (scanner, yyscanner) struct ctf_scanner *scanner; yyscan_t yyscanner; #endif #endif { /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 1116 "ctf-parser.y" { if (set_parent_node((yyvsp[(1) - (1)].n), &ctf_scanner_get_ast(scanner)->root)) reparent_error(scanner, "error reparenting to root"); } break; case 3: /* Line 1806 of yacc.c */ #line 1121 "ctf-parser.y" { if (set_parent_node((yyvsp[(2) - (2)].n), &ctf_scanner_get_ast(scanner)->root)) reparent_error(scanner, "error reparenting to root"); } break; case 4: /* Line 1806 of yacc.c */ #line 1129 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 5: /* Line 1806 of yacc.c */ #line 1131 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 6: /* Line 1806 of yacc.c */ #line 1133 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 7: /* Line 1806 of yacc.c */ #line 1135 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 8: /* Line 1806 of yacc.c */ #line 1137 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 9: /* Line 1806 of yacc.c */ #line 1139 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 10: /* Line 1806 of yacc.c */ #line 1141 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 11: /* Line 1806 of yacc.c */ #line 1143 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 12: /* Line 1806 of yacc.c */ #line 1145 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 13: /* Line 1806 of yacc.c */ #line 1147 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 14: /* Line 1806 of yacc.c */ #line 1149 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 15: /* Line 1806 of yacc.c */ #line 1151 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 16: /* Line 1806 of yacc.c */ #line 1153 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 17: /* Line 1806 of yacc.c */ #line 1155 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 18: /* Line 1806 of yacc.c */ #line 1157 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 19: /* Line 1806 of yacc.c */ #line 1159 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 20: /* Line 1806 of yacc.c */ #line 1161 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 21: /* Line 1806 of yacc.c */ #line 1163 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 22: /* Line 1806 of yacc.c */ #line 1165 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 23: /* Line 1806 of yacc.c */ #line 1167 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 24: /* Line 1806 of yacc.c */ #line 1169 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 25: /* Line 1806 of yacc.c */ #line 1171 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 26: /* Line 1806 of yacc.c */ #line 1173 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 27: /* Line 1806 of yacc.c */ #line 1175 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 28: /* Line 1806 of yacc.c */ #line 1177 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 29: /* Line 1806 of yacc.c */ #line 1179 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 30: /* Line 1806 of yacc.c */ #line 1181 "ctf-parser.y" { (yyval.s) = yylval.s; } break; case 31: /* Line 1806 of yacc.c */ #line 1189 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; } break; case 32: /* Line 1806 of yacc.c */ #line 1195 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; } break; case 33: /* Line 1806 of yacc.c */ #line 1201 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; } break; case 34: /* Line 1806 of yacc.c */ #line 1207 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_UNSIGNED_CONSTANT; (yyval.n)->u.unary_expression.u.unsigned_constant = (yyvsp[(1) - (1)].ull); } break; case 35: /* Line 1806 of yacc.c */ #line 1213 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = (yyvsp[(1) - (1)].s); } break; case 36: /* Line 1806 of yacc.c */ #line 1219 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = (yyvsp[(1) - (1)].s); } break; case 37: /* Line 1806 of yacc.c */ #line 1225 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (3)].n); } break; case 38: /* Line 1806 of yacc.c */ #line 1229 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_SBRAC; (yyval.n)->u.unary_expression.u.sbrac_exp = (yyvsp[(3) - (4)].n); bt_list_splice(&((yyvsp[(1) - (4)].n))->tmp_head, &((yyval.n))->tmp_head); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } break; case 39: /* Line 1806 of yacc.c */ #line 1237 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; (yyval.n)->u.unary_expression.link = UNARY_DOTLINK; bt_list_splice(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } break; case 40: /* Line 1806 of yacc.c */ #line 1246 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; (yyval.n)->u.unary_expression.link = UNARY_DOTLINK; bt_list_splice(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } break; case 41: /* Line 1806 of yacc.c */ #line 1255 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; (yyval.n)->u.unary_expression.link = UNARY_ARROWLINK; bt_list_splice(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } break; case 42: /* Line 1806 of yacc.c */ #line 1264 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_UNARY_EXPRESSION); (yyval.n)->u.unary_expression.type = UNARY_STRING; (yyval.n)->u.unary_expression.u.string = yylval.s; (yyval.n)->u.unary_expression.link = UNARY_ARROWLINK; bt_list_splice(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } break; case 43: /* Line 1806 of yacc.c */ #line 1276 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 44: /* Line 1806 of yacc.c */ #line 1278 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); if ((yyval.n)->u.unary_expression.type != UNARY_UNSIGNED_CONSTANT && (yyval.n)->u.unary_expression.type != UNARY_SIGNED_CONSTANT) { reparent_error(scanner, "expecting numeric constant"); } } break; case 45: /* Line 1806 of yacc.c */ #line 1286 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); if ((yyval.n)->u.unary_expression.type == UNARY_UNSIGNED_CONSTANT) { (yyval.n)->u.unary_expression.type = UNARY_SIGNED_CONSTANT; (yyval.n)->u.unary_expression.u.signed_constant = -((yyval.n)->u.unary_expression.u.unsigned_constant); } else if ((yyval.n)->u.unary_expression.type == UNARY_UNSIGNED_CONSTANT) { (yyval.n)->u.unary_expression.u.signed_constant = -((yyval.n)->u.unary_expression.u.signed_constant); } else { reparent_error(scanner, "expecting numeric constant"); } } break; case 46: /* Line 1806 of yacc.c */ #line 1303 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); _bt_list_splice_tail(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); (yyvsp[(3) - (3)].n)->u.unary_expression.link = UNARY_DOTDOTDOT; } break; case 47: /* Line 1806 of yacc.c */ #line 1309 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 48: /* Line 1806 of yacc.c */ #line 1316 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (2)].n); } break; case 49: /* Line 1806 of yacc.c */ #line 1318 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 50: /* Line 1806 of yacc.c */ #line 1320 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 51: /* Line 1806 of yacc.c */ #line 1322 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 52: /* Line 1806 of yacc.c */ #line 1324 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 53: /* Line 1806 of yacc.c */ #line 1326 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 54: /* Line 1806 of yacc.c */ #line 1328 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 55: /* Line 1806 of yacc.c */ #line 1330 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(1) - (5)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (5)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(4) - (5)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 56: /* Line 1806 of yacc.c */ #line 1341 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 57: /* Line 1806 of yacc.c */ #line 1351 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(1) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 58: /* Line 1806 of yacc.c */ #line 1361 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEALIAS); (yyval.n)->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); (yyval.n)->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (7)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (7)].n))->tmp_head, &((yyval.n))->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(5) - (7)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(6) - (7)].n))->tmp_head, &((yyval.n))->u.typealias.alias->u.typealias_alias.type_declarators); } break; case 59: /* Line 1806 of yacc.c */ #line 1382 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_EVENT); } break; case 60: /* Line 1806 of yacc.c */ #line 1386 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_EVENT); if (set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "event_declaration"); } break; case 61: /* Line 1806 of yacc.c */ #line 1395 "ctf-parser.y" { push_scope(scanner); } break; case 62: /* Line 1806 of yacc.c */ #line 1400 "ctf-parser.y" { pop_scope(scanner); } break; case 63: /* Line 1806 of yacc.c */ #line 1406 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STREAM); } break; case 64: /* Line 1806 of yacc.c */ #line 1410 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STREAM); if (set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "stream_declaration"); } break; case 65: /* Line 1806 of yacc.c */ #line 1419 "ctf-parser.y" { push_scope(scanner); } break; case 66: /* Line 1806 of yacc.c */ #line 1424 "ctf-parser.y" { pop_scope(scanner); } break; case 67: /* Line 1806 of yacc.c */ #line 1429 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENV); } break; case 68: /* Line 1806 of yacc.c */ #line 1433 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENV); if (set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "env declaration"); } break; case 69: /* Line 1806 of yacc.c */ #line 1442 "ctf-parser.y" { push_scope(scanner); } break; case 70: /* Line 1806 of yacc.c */ #line 1447 "ctf-parser.y" { pop_scope(scanner); } break; case 71: /* Line 1806 of yacc.c */ #line 1452 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TRACE); } break; case 72: /* Line 1806 of yacc.c */ #line 1456 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TRACE); if (set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "trace_declaration"); } break; case 73: /* Line 1806 of yacc.c */ #line 1465 "ctf-parser.y" { push_scope(scanner); } break; case 74: /* Line 1806 of yacc.c */ #line 1470 "ctf-parser.y" { pop_scope(scanner); } break; case 75: /* Line 1806 of yacc.c */ #line 1475 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_CLOCK); } break; case 76: /* Line 1806 of yacc.c */ #line 1479 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_CLOCK); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "trace_declaration"); } break; case 77: /* Line 1806 of yacc.c */ #line 1488 "ctf-parser.y" { push_scope(scanner); } break; case 78: /* Line 1806 of yacc.c */ #line 1493 "ctf-parser.y" { pop_scope(scanner); } break; case 79: /* Line 1806 of yacc.c */ #line 1498 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_CALLSITE); } break; case 80: /* Line 1806 of yacc.c */ #line 1502 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_CALLSITE); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "trace_declaration"); } break; case 81: /* Line 1806 of yacc.c */ #line 1511 "ctf-parser.y" { push_scope(scanner); } break; case 82: /* Line 1806 of yacc.c */ #line 1516 "ctf-parser.y" { pop_scope(scanner); } break; case 83: /* Line 1806 of yacc.c */ #line 1521 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 84: /* Line 1806 of yacc.c */ #line 1530 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = (yyvsp[(1) - (1)].n); bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 85: /* Line 1806 of yacc.c */ #line 1538 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = (yyvsp[(1) - (2)].n); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 86: /* Line 1806 of yacc.c */ #line 1547 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (2)].n); bt_list_add_tail(&((yyvsp[(2) - (2)].n))->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 87: /* Line 1806 of yacc.c */ #line 1555 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 88: /* Line 1806 of yacc.c */ #line 1564 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = (yyvsp[(1) - (1)].n); bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 89: /* Line 1806 of yacc.c */ #line 1572 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = (yyvsp[(1) - (2)].n); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 90: /* Line 1806 of yacc.c */ #line 1581 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (2)].n); bt_list_add_tail(&((yyvsp[(2) - (2)].n))->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 91: /* Line 1806 of yacc.c */ #line 1589 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 92: /* Line 1806 of yacc.c */ #line 1591 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 93: /* Line 1806 of yacc.c */ #line 1599 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_CHAR; } break; case 94: /* Line 1806 of yacc.c */ #line 1604 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_SHORT; } break; case 95: /* Line 1806 of yacc.c */ #line 1609 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INT; } break; case 96: /* Line 1806 of yacc.c */ #line 1614 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_LONG; } break; case 97: /* Line 1806 of yacc.c */ #line 1619 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_SIGNED; } break; case 98: /* Line 1806 of yacc.c */ #line 1624 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_UNSIGNED; } break; case 99: /* Line 1806 of yacc.c */ #line 1629 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_BOOL; } break; case 100: /* Line 1806 of yacc.c */ #line 1634 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_ID_TYPE; (yyval.n)->u.type_specifier.id_type = yylval.s; } break; case 101: /* Line 1806 of yacc.c */ #line 1640 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INTEGER; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_INTEGER); } break; case 102: /* Line 1806 of yacc.c */ #line 1646 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INTEGER; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_INTEGER); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n)->u.type_specifier.node)) reparent_error(scanner, "integer reparent error"); } break; case 103: /* Line 1806 of yacc.c */ #line 1657 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_VOID; } break; case 104: /* Line 1806 of yacc.c */ #line 1662 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_CHAR; } break; case 105: /* Line 1806 of yacc.c */ #line 1667 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_SHORT; } break; case 106: /* Line 1806 of yacc.c */ #line 1672 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INT; } break; case 107: /* Line 1806 of yacc.c */ #line 1677 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_LONG; } break; case 108: /* Line 1806 of yacc.c */ #line 1682 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_FLOAT; } break; case 109: /* Line 1806 of yacc.c */ #line 1687 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_DOUBLE; } break; case 110: /* Line 1806 of yacc.c */ #line 1692 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_SIGNED; } break; case 111: /* Line 1806 of yacc.c */ #line 1697 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_UNSIGNED; } break; case 112: /* Line 1806 of yacc.c */ #line 1702 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_BOOL; } break; case 113: /* Line 1806 of yacc.c */ #line 1707 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_COMPLEX; } break; case 114: /* Line 1806 of yacc.c */ #line 1712 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_IMAGINARY; } break; case 115: /* Line 1806 of yacc.c */ #line 1717 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_ID_TYPE; (yyval.n)->u.type_specifier.id_type = yylval.s; } break; case 116: /* Line 1806 of yacc.c */ #line 1723 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_FLOATING_POINT; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_FLOATING_POINT); } break; case 117: /* Line 1806 of yacc.c */ #line 1729 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_FLOATING_POINT; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_FLOATING_POINT); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n)->u.type_specifier.node)) reparent_error(scanner, "floating point reparent error"); } break; case 118: /* Line 1806 of yacc.c */ #line 1737 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INTEGER; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_INTEGER); } break; case 119: /* Line 1806 of yacc.c */ #line 1743 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_INTEGER; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_INTEGER); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n)->u.type_specifier.node)) reparent_error(scanner, "integer reparent error"); } break; case 120: /* Line 1806 of yacc.c */ #line 1751 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_STRING; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_STRING); } break; case 121: /* Line 1806 of yacc.c */ #line 1757 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_STRING; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_STRING); } break; case 122: /* Line 1806 of yacc.c */ #line 1763 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_STRING; (yyval.n)->u.type_specifier.node = make_node(scanner, NODE_STRING); if (set_parent_node((yyvsp[(3) - (4)].n), (yyval.n)->u.type_specifier.node)) reparent_error(scanner, "string reparent error"); } break; case 123: /* Line 1806 of yacc.c */ #line 1771 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_ENUM; (yyval.n)->u.type_specifier.node = (yyvsp[(2) - (2)].n); } break; case 124: /* Line 1806 of yacc.c */ #line 1777 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_VARIANT; (yyval.n)->u.type_specifier.node = (yyvsp[(2) - (2)].n); } break; case 125: /* Line 1806 of yacc.c */ #line 1783 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER); (yyval.n)->u.type_specifier.type = TYPESPEC_STRUCT; (yyval.n)->u.type_specifier.node = (yyvsp[(2) - (2)].n); } break; case 126: /* Line 1806 of yacc.c */ #line 1792 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; if ((yyvsp[(2) - (3)].n) && set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 127: /* Line 1806 of yacc.c */ #line 1799 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; (yyval.n)->u._struct.name = (yyvsp[(1) - (4)].s); if ((yyvsp[(3) - (4)].n) && set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 128: /* Line 1806 of yacc.c */ #line 1807 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; (yyval.n)->u._struct.name = (yyvsp[(1) - (4)].s); if ((yyvsp[(3) - (4)].n) && set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 129: /* Line 1806 of yacc.c */ #line 1815 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 0; (yyval.n)->u._struct.name = (yyvsp[(1) - (1)].s); } break; case 130: /* Line 1806 of yacc.c */ #line 1821 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 0; (yyval.n)->u._struct.name = (yyvsp[(1) - (1)].s); } break; case 131: /* Line 1806 of yacc.c */ #line 1827 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; bt_list_add_tail(&((yyvsp[(6) - (7)].n))->siblings, &(yyval.n)->u._struct.min_align); if ((yyvsp[(2) - (7)].n) && set_parent_node((yyvsp[(2) - (7)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 132: /* Line 1806 of yacc.c */ #line 1835 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; (yyval.n)->u._struct.name = (yyvsp[(1) - (8)].s); bt_list_add_tail(&((yyvsp[(7) - (8)].n))->siblings, &(yyval.n)->u._struct.min_align); if ((yyvsp[(3) - (8)].n) && set_parent_node((yyvsp[(3) - (8)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 133: /* Line 1806 of yacc.c */ #line 1844 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_STRUCT); (yyval.n)->u._struct.has_body = 1; (yyval.n)->u._struct.name = (yyvsp[(1) - (8)].s); bt_list_add_tail(&((yyvsp[(7) - (8)].n))->siblings, &(yyval.n)->u._struct.min_align); if ((yyvsp[(3) - (8)].n) && set_parent_node((yyvsp[(3) - (8)].n), (yyval.n))) reparent_error(scanner, "struct reparent error"); } break; case 134: /* Line 1806 of yacc.c */ #line 1856 "ctf-parser.y" { push_scope(scanner); } break; case 135: /* Line 1806 of yacc.c */ #line 1861 "ctf-parser.y" { pop_scope(scanner); } break; case 136: /* Line 1806 of yacc.c */ #line 1866 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; if ((yyvsp[(2) - (3)].n) && set_parent_node((yyvsp[(2) - (3)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 137: /* Line 1806 of yacc.c */ #line 1873 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.choice = (yyvsp[(2) - (6)].s); if ((yyvsp[(5) - (6)].n) && set_parent_node((yyvsp[(5) - (6)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 138: /* Line 1806 of yacc.c */ #line 1881 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.choice = (yyvsp[(2) - (6)].s); if ((yyvsp[(5) - (6)].n) && set_parent_node((yyvsp[(5) - (6)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 139: /* Line 1806 of yacc.c */ #line 1889 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); if ((yyvsp[(3) - (4)].n) && set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 140: /* Line 1806 of yacc.c */ #line 1897 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (7)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (7)].s); if ((yyvsp[(6) - (7)].n) && set_parent_node((yyvsp[(6) - (7)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 141: /* Line 1806 of yacc.c */ #line 1906 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 0; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (4)].s); } break; case 142: /* Line 1806 of yacc.c */ #line 1913 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (7)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (7)].s); if ((yyvsp[(6) - (7)].n) && set_parent_node((yyvsp[(6) - (7)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 143: /* Line 1806 of yacc.c */ #line 1922 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 0; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (4)].s); } break; case 144: /* Line 1806 of yacc.c */ #line 1929 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); if ((yyvsp[(3) - (4)].n) && set_parent_node((yyvsp[(3) - (4)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 145: /* Line 1806 of yacc.c */ #line 1937 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (7)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (7)].s); if ((yyvsp[(6) - (7)].n) && set_parent_node((yyvsp[(6) - (7)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 146: /* Line 1806 of yacc.c */ #line 1946 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 0; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (4)].s); } break; case 147: /* Line 1806 of yacc.c */ #line 1953 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 1; (yyval.n)->u.variant.name = (yyvsp[(1) - (7)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (7)].s); if ((yyvsp[(6) - (7)].n) && set_parent_node((yyvsp[(6) - (7)].n), (yyval.n))) reparent_error(scanner, "variant reparent error"); } break; case 148: /* Line 1806 of yacc.c */ #line 1962 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_VARIANT); (yyval.n)->u.variant.has_body = 0; (yyval.n)->u.variant.name = (yyvsp[(1) - (4)].s); (yyval.n)->u.variant.choice = (yyvsp[(3) - (4)].s); } break; case 149: /* Line 1806 of yacc.c */ #line 1972 "ctf-parser.y" { push_scope(scanner); } break; case 150: /* Line 1806 of yacc.c */ #line 1977 "ctf-parser.y" { pop_scope(scanner); } break; case 151: /* Line 1806 of yacc.c */ #line 1982 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; _bt_list_splice_tail(&((yyvsp[(2) - (3)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 152: /* Line 1806 of yacc.c */ #line 1988 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; ((yyval.n))->u._enum.container_type = (yyvsp[(2) - (5)].n); _bt_list_splice_tail(&((yyvsp[(4) - (5)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 153: /* Line 1806 of yacc.c */ #line 1995 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (4)].s); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 154: /* Line 1806 of yacc.c */ #line 2002 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (6)].s); ((yyval.n))->u._enum.container_type = (yyvsp[(3) - (6)].n); _bt_list_splice_tail(&((yyvsp[(5) - (6)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 155: /* Line 1806 of yacc.c */ #line 2010 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (4)].s); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 156: /* Line 1806 of yacc.c */ #line 2017 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (6)].s); ((yyval.n))->u._enum.container_type = (yyvsp[(3) - (6)].n); _bt_list_splice_tail(&((yyvsp[(5) - (6)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 157: /* Line 1806 of yacc.c */ #line 2025 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; _bt_list_splice_tail(&((yyvsp[(2) - (4)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 158: /* Line 1806 of yacc.c */ #line 2031 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; ((yyval.n))->u._enum.container_type = (yyvsp[(2) - (6)].n); _bt_list_splice_tail(&((yyvsp[(4) - (6)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 159: /* Line 1806 of yacc.c */ #line 2038 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (5)].s); _bt_list_splice_tail(&((yyvsp[(3) - (5)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 160: /* Line 1806 of yacc.c */ #line 2045 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (7)].s); ((yyval.n))->u._enum.container_type = (yyvsp[(3) - (7)].n); _bt_list_splice_tail(&((yyvsp[(5) - (7)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 161: /* Line 1806 of yacc.c */ #line 2053 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 0; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (1)].s); } break; case 162: /* Line 1806 of yacc.c */ #line 2059 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (5)].s); _bt_list_splice_tail(&((yyvsp[(3) - (5)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 163: /* Line 1806 of yacc.c */ #line 2066 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 1; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (7)].s); ((yyval.n))->u._enum.container_type = (yyvsp[(3) - (7)].n); _bt_list_splice_tail(&((yyvsp[(5) - (7)].n))->tmp_head, &((yyval.n))->u._enum.enumerator_list); } break; case 164: /* Line 1806 of yacc.c */ #line 2074 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUM); (yyval.n)->u._enum.has_body = 0; (yyval.n)->u._enum.enum_id = (yyvsp[(1) - (1)].s); } break; case 165: /* Line 1806 of yacc.c */ #line 2083 "ctf-parser.y" { (yyval.n) = NULL; } break; case 166: /* Line 1806 of yacc.c */ #line 2085 "ctf-parser.y" { if ((yyvsp[(1) - (2)].n)) { (yyval.n) = (yyvsp[(1) - (2)].n); bt_list_add_tail(&((yyvsp[(2) - (2)].n))->siblings, &((yyval.n))->tmp_head); } else { (yyval.n) = (yyvsp[(2) - (2)].n); bt_list_add_tail(&((yyval.n))->siblings, &((yyval.n))->tmp_head); } } break; case 167: /* Line 1806 of yacc.c */ #line 2098 "ctf-parser.y" { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&((yyvsp[(1) - (3)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); (yyval.n) = make_node(scanner, NODE_STRUCT_OR_VARIANT_DECLARATION); ((yyval.n))->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (3)].n))->tmp_head, &((yyval.n))->u.struct_or_variant_declaration.type_declarators); } break; case 168: /* Line 1806 of yacc.c */ #line 2108 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(1) - (5)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (5)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(4) - (5)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 169: /* Line 1806 of yacc.c */ #line 2119 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 170: /* Line 1806 of yacc.c */ #line 2129 "ctf-parser.y" { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&((yyvsp[(1) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); (yyval.n) = make_node(scanner, NODE_TYPEDEF); ((yyval.n))->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 171: /* Line 1806 of yacc.c */ #line 2139 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEALIAS); (yyval.n)->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); (yyval.n)->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (7)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (7)].n))->tmp_head, &((yyval.n))->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(5) - (7)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(6) - (7)].n))->tmp_head, &((yyval.n))->u.typealias.alias->u.typealias_alias.type_declarators); } break; case 172: /* Line 1806 of yacc.c */ #line 2160 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 173: /* Line 1806 of yacc.c */ #line 2169 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = (yyvsp[(1) - (1)].n); bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 174: /* Line 1806 of yacc.c */ #line 2177 "ctf-parser.y" { struct ctf_node *node; add_type(scanner, (yyvsp[(1) - (1)].s)); (yyval.n) = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_ID_TYPE; node->u.type_specifier.id_type = yylval.s; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 175: /* Line 1806 of yacc.c */ #line 2188 "ctf-parser.y" { struct ctf_node *node; (yyval.n) = (yyvsp[(1) - (2)].n); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_CONST; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 176: /* Line 1806 of yacc.c */ #line 2197 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (2)].n); bt_list_add_tail(&((yyvsp[(2) - (2)].n))->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 177: /* Line 1806 of yacc.c */ #line 2202 "ctf-parser.y" { struct ctf_node *node; add_type(scanner, (yyvsp[(2) - (2)].s)); (yyval.n) = (yyvsp[(1) - (2)].n); node = make_node(scanner, NODE_TYPE_SPECIFIER); node->u.type_specifier.type = TYPESPEC_ID_TYPE; node->u.type_specifier.id_type = yylval.s; bt_list_add_tail(&node->siblings, &((yyval.n))->u.type_specifier_list.head); } break; case 178: /* Line 1806 of yacc.c */ #line 2216 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 179: /* Line 1806 of yacc.c */ #line 2218 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 180: /* Line 1806 of yacc.c */ #line 2226 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 181: /* Line 1806 of yacc.c */ #line 2228 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); } break; case 182: /* Line 1806 of yacc.c */ #line 2230 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); if (set_parent_node((yyvsp[(3) - (3)].n), (yyvsp[(1) - (3)].n))) reparent_error(scanner, "struct_or_variant_declarator"); } break; case 183: /* Line 1806 of yacc.c */ #line 2239 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 184: /* Line 1806 of yacc.c */ #line 2241 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 185: /* Line 1806 of yacc.c */ #line 2249 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (1)].s); } break; case 186: /* Line 1806 of yacc.c */ #line 2254 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (1)].s); } break; case 187: /* Line 1806 of yacc.c */ #line 2259 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (1)].s); } break; case 188: /* Line 1806 of yacc.c */ #line 2264 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (1)].s); } break; case 189: /* Line 1806 of yacc.c */ #line 2269 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (3)].s); bt_list_splice(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u.enumerator.values); } break; case 190: /* Line 1806 of yacc.c */ #line 2275 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (3)].s); bt_list_splice(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u.enumerator.values); } break; case 191: /* Line 1806 of yacc.c */ #line 2281 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (3)].s); bt_list_splice(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u.enumerator.values); } break; case 192: /* Line 1806 of yacc.c */ #line 2287 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_ENUMERATOR); (yyval.n)->u.enumerator.id = (yyvsp[(1) - (3)].s); bt_list_splice(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u.enumerator.values); } break; case 193: /* Line 1806 of yacc.c */ #line 2296 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 194: /* Line 1806 of yacc.c */ #line 2298 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 195: /* Line 1806 of yacc.c */ #line 2306 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 196: /* Line 1806 of yacc.c */ #line 2308 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); bt_list_splice(&((yyvsp[(1) - (2)].n))->tmp_head, &((yyval.n))->u.type_declarator.pointers); } break; case 197: /* Line 1806 of yacc.c */ #line 2316 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_ID; /* id is NULL */ } break; case 198: /* Line 1806 of yacc.c */ #line 2322 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_ID; (yyval.n)->u.type_declarator.u.id = (yyvsp[(1) - (1)].s); } break; case 199: /* Line 1806 of yacc.c */ #line 2328 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(2) - (3)].n); } break; case 200: /* Line 1806 of yacc.c */ #line 2334 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (4)].n); BT_INIT_LIST_HEAD(&((yyval.n))->u.type_declarator.u.nested.length); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u.type_declarator.u.nested.length); } break; case 201: /* Line 1806 of yacc.c */ #line 2342 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (3)].n); (yyval.n)->u.type_declarator.u.nested.abstract_array = 1; } break; case 202: /* Line 1806 of yacc.c */ #line 2352 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 203: /* Line 1806 of yacc.c */ #line 2354 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 204: /* Line 1806 of yacc.c */ #line 2362 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 205: /* Line 1806 of yacc.c */ #line 2364 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); bt_list_splice(&((yyvsp[(1) - (2)].n))->tmp_head, &((yyval.n))->u.type_declarator.pointers); } break; case 206: /* Line 1806 of yacc.c */ #line 2372 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_ID; /* id is NULL */ } break; case 207: /* Line 1806 of yacc.c */ #line 2378 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(2) - (3)].n); } break; case 208: /* Line 1806 of yacc.c */ #line 2384 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (4)].n); BT_INIT_LIST_HEAD(&((yyval.n))->u.type_declarator.u.nested.length); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u.type_declarator.u.nested.length); } break; case 209: /* Line 1806 of yacc.c */ #line 2392 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (3)].n); (yyval.n)->u.type_declarator.u.nested.abstract_array = 1; } break; case 210: /* Line 1806 of yacc.c */ #line 2402 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 211: /* Line 1806 of yacc.c */ #line 2404 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); bt_list_splice(&((yyvsp[(1) - (2)].n))->tmp_head, &((yyval.n))->u.type_declarator.pointers); } break; case 212: /* Line 1806 of yacc.c */ #line 2412 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_ID; (yyval.n)->u.type_declarator.u.id = (yyvsp[(1) - (1)].s); } break; case 213: /* Line 1806 of yacc.c */ #line 2418 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(2) - (3)].n); } break; case 214: /* Line 1806 of yacc.c */ #line 2424 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (4)].n); BT_INIT_LIST_HEAD(&((yyval.n))->u.type_declarator.u.nested.length); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u.type_declarator.u.nested.length); } break; case 215: /* Line 1806 of yacc.c */ #line 2435 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (1)].n); } break; case 216: /* Line 1806 of yacc.c */ #line 2437 "ctf-parser.y" { (yyval.n) = (yyvsp[(2) - (2)].n); bt_list_splice(&((yyvsp[(1) - (2)].n))->tmp_head, &((yyval.n))->u.type_declarator.pointers); } break; case 217: /* Line 1806 of yacc.c */ #line 2445 "ctf-parser.y" { add_type(scanner, (yyvsp[(1) - (1)].s)); (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_ID; (yyval.n)->u.type_declarator.u.id = (yyvsp[(1) - (1)].s); } break; case 218: /* Line 1806 of yacc.c */ #line 2452 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(2) - (3)].n); } break; case 219: /* Line 1806 of yacc.c */ #line 2458 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_TYPE_DECLARATOR); (yyval.n)->u.type_declarator.type = TYPEDEC_NESTED; (yyval.n)->u.type_declarator.u.nested.type_declarator = (yyvsp[(1) - (4)].n); BT_INIT_LIST_HEAD(&((yyval.n))->u.type_declarator.u.nested.length); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->tmp_head, &((yyval.n))->u.type_declarator.u.nested.length); } break; case 220: /* Line 1806 of yacc.c */ #line 2469 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_POINTER); } break; case 221: /* Line 1806 of yacc.c */ #line 2473 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_POINTER); bt_list_splice(&((yyvsp[(2) - (2)].n))->tmp_head, &((yyval.n))->tmp_head); } break; case 222: /* Line 1806 of yacc.c */ #line 2478 "ctf-parser.y" { (yyval.n) = make_node(scanner, NODE_POINTER); (yyval.n)->u.pointer.const_qualifier = 1; bt_list_splice(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->tmp_head); } break; case 225: /* Line 1806 of yacc.c */ #line 2495 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (2)].n); } break; case 226: /* Line 1806 of yacc.c */ #line 2497 "ctf-parser.y" { (yyval.n) = (yyvsp[(1) - (3)].n); bt_list_add_tail(&((yyvsp[(2) - (3)].n))->siblings, &((yyval.n))->tmp_head); } break; case 227: /* Line 1806 of yacc.c */ #line 2505 "ctf-parser.y" { /* * Because we have left and right, cannot use * set_parent_node. */ (yyval.n) = make_node(scanner, NODE_CTF_EXPRESSION); _bt_list_splice_tail(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->u.ctf_expression.left); if ((yyvsp[(1) - (3)].n)->u.unary_expression.type != UNARY_STRING) reparent_error(scanner, "ctf_assignment_expression left expects string"); _bt_list_splice_tail(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u.ctf_expression.right); } break; case 228: /* Line 1806 of yacc.c */ #line 2517 "ctf-parser.y" { /* * Because we have left and right, cannot use * set_parent_node. */ (yyval.n) = make_node(scanner, NODE_CTF_EXPRESSION); _bt_list_splice_tail(&((yyvsp[(1) - (3)].n))->tmp_head, &((yyval.n))->u.ctf_expression.left); if ((yyvsp[(1) - (3)].n)->u.unary_expression.type != UNARY_STRING) reparent_error(scanner, "ctf_assignment_expression left expects string"); bt_list_add_tail(&((yyvsp[(3) - (3)].n))->siblings, &((yyval.n))->u.ctf_expression.right); } break; case 229: /* Line 1806 of yacc.c */ #line 2529 "ctf-parser.y" { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&((yyvsp[(1) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (4)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); (yyval.n) = make_node(scanner, NODE_TYPEDEF); ((yyval.n))->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(4) - (4)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 230: /* Line 1806 of yacc.c */ #line 2540 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEDEF); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u._typedef.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (3)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 231: /* Line 1806 of yacc.c */ #line 2550 "ctf-parser.y" { struct ctf_node *list; list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); _bt_list_splice_tail(&((yyvsp[(1) - (3)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); (yyval.n) = make_node(scanner, NODE_TYPEDEF); ((yyval.n))->u.struct_or_variant_declaration.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(3) - (3)].n))->tmp_head, &((yyval.n))->u._typedef.type_declarators); } break; case 232: /* Line 1806 of yacc.c */ #line 2560 "ctf-parser.y" { struct ctf_node *list; (yyval.n) = make_node(scanner, NODE_TYPEALIAS); (yyval.n)->u.typealias.target = make_node(scanner, NODE_TYPEALIAS_TARGET); (yyval.n)->u.typealias.alias = make_node(scanner, NODE_TYPEALIAS_ALIAS); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.target->u.typealias_target.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(2) - (6)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(3) - (6)].n))->tmp_head, &((yyval.n))->u.typealias.target->u.typealias_target.type_declarators); list = make_node(scanner, NODE_TYPE_SPECIFIER_LIST); (yyval.n)->u.typealias.alias->u.typealias_alias.type_specifier_list = list; _bt_list_splice_tail(&((yyvsp[(5) - (6)].n))->u.type_specifier_list.head, &list->u.type_specifier_list.head); _bt_list_splice_tail(&((yyvsp[(6) - (6)].n))->tmp_head, &((yyval.n))->u.typealias.alias->u.typealias_alias.type_declarators); } break; /* Line 1806 of yacc.c */ #line 5713 "ctf-parser.c" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (scanner, yyscanner, YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (scanner, yyscanner, yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval, scanner, yyscanner); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp, scanner, yyscanner); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (scanner, yyscanner, YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval, scanner, yyscanner); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp, scanner, yyscanner); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } babeltrace-1.2.1/formats/ctf/metadata/objstack.h0000644000175000017500000000301612272477052016510 00000000000000#ifndef _OBJSTACK_H #define _OBJSTACK_H /* * objstack.h * * Common Trace Format Object Stack. * * Copyright 2013 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ struct objstack; BT_HIDDEN struct objstack *objstack_create(void); BT_HIDDEN void objstack_destroy(struct objstack *objstack); /* * Allocate len bytes of zeroed memory. * Return NULL on error. */ BT_HIDDEN void *objstack_alloc(struct objstack *objstack, size_t len); #endif /* _OBJSTACK_H */ babeltrace-1.2.1/formats/ctf/metadata/ctf-lexer.c0000644000175000017500000022475312306621157016604 00000000000000 #line 3 "ctf-lexer.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif /* For convenience, these vars (plus the bison vars far below) are macros in the reentrant scanner. */ #define yyin yyg->yyin_r #define yyout yyg->yyout_r #define yyextra yyg->yyextra_r #define yyleng yyg->yyleng_r #define yytext yyg->yytext_r #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) #define yy_flex_debug yyg->yy_flex_debug_r /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN yyg->yy_start = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START ((yyg->yy_start - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ,yyscanner ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires * access to the local variable yy_act. Since yyless() is a macro, it would break * existing scanners that call yyless() from OUTSIDE yylex. * One obvious solution it to make yy_act a global. I tried that, and saw * a 5% performance hit in a non-yylineno scanner, because yy_act is * normally declared as a register variable-- so it is not worth it. */ #define YY_LESS_LINENO(n) \ do { \ int yyl;\ for ( yyl = n; yyl < yyleng; ++yyl )\ if ( yytext[yyl] == '\n' )\ --yylineno;\ }while(0) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = yyg->yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] void yyrestart (FILE *input_file ,yyscan_t yyscanner ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); void yypop_buffer_state (yyscan_t yyscanner ); static void yyensure_buffer_stack (yyscan_t yyscanner ); static void yy_load_buffer_state (yyscan_t yyscanner ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ,yyscanner) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner ); void *yyalloc (yy_size_t ,yyscan_t yyscanner ); void *yyrealloc (void *,yy_size_t ,yyscan_t yyscanner ); void yyfree (void * ,yyscan_t yyscanner ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap(n) 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; typedef int yy_state_type; #define yytext_ptr yytext_r static yy_state_type yy_get_previous_state (yyscan_t yyscanner ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner); static int yy_get_next_buffer (yyscan_t yyscanner ); static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yyg->yytext_ptr = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ yyg->yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yyg->yy_c_buf_p = yy_cp; #define YY_NUM_RULES 62 #define YY_END_OF_BUFFER 63 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[268] = { 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 63, 61, 60, 60, 61, 61, 11, 12, 16, 17, 27, 18, 25, 61, 57, 56, 22, 23, 19, 26, 20, 59, 59, 9, 61, 10, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 13, 14, 2, 4, 3, 62, 0, 7, 0, 0, 8, 0, 15, 0, 1, 0, 57, 0, 57, 0, 0, 57, 56, 0, 56, 0, 56, 21, 59, 0, 0, 0, 0, 0, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 2, 3, 3, 5, 24, 0, 6, 0, 57, 57, 57, 58, 0, 57, 57, 0, 56, 56, 56, 0, 56, 56, 0, 0, 0, 0, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 34, 59, 59, 39, 59, 59, 59, 59, 59, 59, 59, 59, 59, 0, 58, 0, 58, 0, 0, 0, 0, 59, 59, 59, 59, 59, 30, 59, 59, 59, 33, 59, 59, 59, 40, 59, 59, 59, 59, 59, 59, 59, 59, 59, 52, 0, 58, 58, 58, 0, 58, 58, 0, 0, 0, 0, 53, 59, 59, 28, 59, 31, 29, 59, 35, 37, 59, 41, 59, 59, 59, 59, 46, 59, 59, 59, 59, 0, 0, 0, 59, 59, 59, 59, 32, 59, 59, 42, 43, 44, 45, 59, 59, 59, 59, 0, 0, 59, 59, 59, 59, 38, 59, 49, 59, 51, 0, 0, 54, 59, 47, 59, 59, 50, 0, 0, 59, 59, 48, 0, 55, 59, 59, 59, 59, 36, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 1, 1, 1, 1, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 15, 15, 15, 15, 15, 15, 16, 16, 17, 18, 19, 20, 21, 1, 1, 22, 23, 24, 22, 22, 22, 25, 25, 26, 25, 25, 27, 25, 25, 25, 25, 25, 25, 25, 25, 28, 25, 25, 29, 25, 25, 30, 31, 32, 1, 33, 1, 34, 35, 36, 37, 38, 39, 40, 41, 42, 25, 43, 44, 45, 46, 47, 48, 25, 49, 50, 51, 52, 53, 25, 54, 55, 25, 56, 1, 57, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int32_t yy_meta[58] = { 0, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 4, 4, 4, 1, 1, 1, 1, 1, 4, 4, 4, 5, 5, 5, 5, 5, 1, 5, 1, 5, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 1, 1 } ; static yyconst flex_int16_t yy_base[299] = { 0, 0, 0, 55, 56, 0, 0, 0, 0, 0, 0, 511, 512, 512, 512, 56, 57, 512, 512, 512, 512, 512, 489, 497, 53, 53, 56, 488, 512, 512, 512, 512, 476, 70, 512, 37, 512, 67, 42, 65, 38, 64, 48, 72, 47, 73, 71, 82, 85, 512, 512, 0, 512, 114, 512, 107, 512, 503, 116, 512, 502, 512, 492, 512, 500, 115, 106, 96, 0, 97, 104, 136, 108, 110, 117, 112, 512, 471, 116, 142, 148, 0, 0, 124, 131, 139, 134, 141, 143, 135, 144, 150, 152, 155, 156, 158, 160, 161, 167, 163, 165, 166, 169, 164, 179, 0, 203, 207, 512, 512, 498, 512, 173, 512, 473, 455, 190, 194, 471, 453, 195, 512, 469, 451, 196, 467, 449, 0, 0, 0, 0, 196, 195, 197, 198, 201, 202, 199, 205, 206, 208, 461, 213, 218, 219, 223, 225, 227, 229, 230, 231, 233, 234, 241, 252, 241, 242, 255, 0, 0, 0, 0, 246, 252, 253, 256, 257, 460, 258, 260, 261, 459, 264, 265, 266, 458, 267, 272, 278, 277, 283, 282, 290, 286, 291, 457, 300, 512, 460, 442, 301, 458, 440, 0, 0, 0, 0, 452, 299, 300, 451, 302, 450, 449, 301, 448, 303, 309, 447, 304, 305, 306, 307, 446, 317, 318, 320, 323, 0, 0, 0, 445, 324, 326, 328, 444, 329, 332, 443, 442, 441, 440, 334, 339, 333, 336, 0, 0, 337, 343, 342, 352, 439, 351, 438, 353, 437, 0, 0, 436, 355, 435, 362, 357, 434, 0, 0, 358, 363, 433, 0, 432, 365, 366, 368, 367, 431, 512, 418, 423, 428, 433, 435, 440, 445, 450, 457, 456, 455, 454, 453, 452, 443, 439, 438, 413, 412, 411, 406, 405, 402, 401, 399, 398, 397, 396, 153, 73, 72 } ; static yyconst flex_int16_t yy_def[299] = { 0, 267, 1, 268, 268, 269, 269, 269, 269, 269, 269, 267, 267, 267, 267, 270, 271, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 272, 272, 267, 267, 267, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 267, 267, 273, 267, 274, 267, 270, 267, 270, 271, 267, 271, 267, 267, 267, 275, 267, 267, 267, 276, 267, 267, 267, 267, 267, 267, 267, 267, 272, 267, 270, 271, 277, 278, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 273, 274, 274, 267, 267, 275, 267, 267, 267, 267, 267, 276, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 279, 280, 281, 282, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 267, 267, 267, 267, 283, 284, 285, 286, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 267, 267, 267, 267, 267, 267, 267, 287, 288, 289, 290, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 291, 292, 293, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 294, 295, 272, 272, 272, 272, 272, 272, 272, 272, 272, 296, 297, 272, 272, 272, 272, 272, 272, 298, 290, 272, 272, 272, 292, 272, 272, 272, 272, 272, 272, 0, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267 } ; static yyconst flex_int16_t yy_nxt[570] = { 0, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 26, 27, 28, 29, 30, 31, 32, 32, 32, 32, 32, 33, 32, 32, 34, 35, 36, 37, 38, 32, 39, 40, 41, 42, 32, 32, 43, 32, 44, 32, 32, 32, 32, 32, 45, 46, 47, 48, 32, 32, 49, 50, 52, 52, 56, 63, 59, 53, 53, 81, 64, 65, 65, 78, 71, 71, 71, 78, 79, 80, 260, 256, 78, 78, 66, 67, 68, 72, 73, 91, 86, 57, 60, 82, 83, 84, 94, 85, 96, 78, 78, 69, 78, 87, 74, 78, 78, 78, 78, 70, 88, 68, 75, 89, 92, 56, 90, 78, 97, 98, 78, 93, 95, 103, 100, 59, 107, 114, 99, 113, 101, 108, 102, 65, 65, 118, 104, 112, 113, 120, 121, 122, 57, 125, 115, 117, 66, 67, 127, 121, 56, 60, 119, 113, 71, 71, 71, 59, 123, 78, 126, 255, 113, 69, 121, 124, 78, 72, 73, 78, 78, 70, 128, 121, 78, 131, 78, 57, 78, 78, 134, 136, 132, 60, 74, 78, 137, 78, 133, 135, 78, 78, 75, 78, 138, 78, 78, 142, 78, 78, 78, 78, 78, 149, 78, 113, 139, 143, 140, 141, 145, 147, 146, 144, 78, 267, 148, 152, 150, 107, 267, 154, 155, 151, 108, 153, 113, 121, 121, 113, 78, 78, 78, 78, 78, 164, 78, 78, 156, 168, 78, 78, 165, 78, 163, 170, 157, 162, 78, 166, 113, 121, 121, 78, 78, 167, 173, 171, 78, 169, 78, 174, 78, 172, 78, 78, 78, 175, 78, 78, 181, 178, 188, 182, 187, 179, 78, 177, 176, 183, 184, 78, 185, 186, 187, 180, 191, 78, 78, 189, 190, 78, 78, 78, 197, 78, 78, 199, 187, 78, 78, 78, 78, 192, 198, 202, 200, 78, 187, 204, 207, 201, 78, 78, 209, 203, 210, 78, 78, 205, 206, 78, 208, 212, 213, 78, 78, 211, 214, 217, 216, 215, 187, 187, 78, 78, 78, 78, 78, 78, 78, 78, 78, 225, 78, 228, 223, 222, 224, 226, 230, 227, 78, 78, 229, 78, 187, 187, 78, 78, 233, 78, 231, 78, 78, 232, 238, 78, 78, 78, 234, 78, 78, 235, 78, 245, 239, 78, 78, 241, 243, 250, 244, 240, 251, 242, 78, 78, 78, 253, 78, 246, 78, 78, 254, 249, 252, 78, 78, 258, 78, 78, 78, 78, 248, 247, 237, 77, 257, 236, 221, 259, 264, 220, 219, 262, 263, 261, 265, 218, 196, 195, 266, 51, 51, 51, 51, 51, 54, 54, 54, 54, 54, 55, 55, 55, 55, 55, 58, 58, 58, 58, 58, 77, 77, 105, 194, 193, 105, 105, 106, 161, 106, 106, 106, 110, 110, 110, 110, 110, 160, 159, 158, 130, 129, 116, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 187, 187, 187, 187, 78, 78, 78, 78, 78, 121, 121, 121, 121, 113, 113, 113, 113, 111, 78, 111, 109, 267, 267, 78, 76, 62, 61, 267, 11, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267 } ; static yyconst flex_int16_t yy_chk[570] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 4, 15, 24, 16, 3, 4, 35, 24, 25, 25, 40, 26, 26, 26, 38, 33, 33, 298, 297, 44, 42, 25, 25, 25, 26, 26, 40, 38, 15, 16, 35, 37, 37, 42, 37, 44, 41, 39, 25, 37, 39, 26, 33, 46, 43, 45, 25, 39, 25, 26, 39, 41, 55, 39, 47, 45, 45, 48, 41, 43, 48, 46, 58, 53, 67, 45, 69, 46, 53, 47, 65, 65, 70, 48, 66, 66, 72, 72, 73, 55, 75, 67, 69, 65, 65, 78, 74, 79, 58, 70, 69, 71, 71, 71, 80, 73, 83, 75, 296, 66, 65, 72, 74, 84, 71, 71, 86, 89, 65, 78, 74, 85, 83, 87, 79, 88, 90, 86, 88, 84, 80, 71, 91, 89, 92, 85, 87, 93, 94, 71, 95, 90, 96, 97, 93, 99, 103, 100, 101, 98, 100, 102, 112, 91, 94, 92, 92, 96, 98, 97, 95, 104, 106, 99, 103, 101, 107, 106, 116, 116, 102, 107, 104, 117, 120, 124, 112, 132, 131, 133, 134, 137, 133, 135, 136, 116, 137, 138, 139, 134, 140, 132, 139, 116, 131, 142, 135, 117, 120, 124, 143, 144, 136, 143, 140, 145, 138, 146, 144, 147, 142, 148, 149, 150, 145, 151, 152, 149, 148, 155, 150, 156, 148, 153, 147, 146, 151, 152, 162, 153, 154, 154, 148, 157, 163, 164, 155, 156, 165, 166, 168, 162, 169, 170, 164, 156, 172, 173, 174, 176, 157, 163, 168, 165, 177, 154, 170, 174, 166, 179, 178, 177, 169, 178, 181, 180, 172, 173, 183, 176, 180, 181, 182, 184, 179, 182, 184, 183, 182, 186, 190, 198, 199, 204, 201, 206, 209, 210, 211, 212, 204, 207, 209, 199, 198, 201, 206, 211, 207, 214, 215, 210, 216, 186, 190, 217, 222, 215, 223, 212, 224, 226, 214, 222, 227, 234, 232, 216, 235, 238, 217, 233, 234, 223, 240, 239, 226, 232, 239, 233, 224, 240, 227, 243, 241, 245, 243, 250, 235, 253, 257, 245, 238, 241, 252, 258, 252, 262, 263, 265, 264, 295, 294, 293, 292, 250, 291, 290, 253, 263, 289, 288, 258, 262, 257, 264, 287, 286, 285, 265, 268, 268, 268, 268, 268, 269, 269, 269, 269, 269, 270, 270, 270, 270, 270, 271, 271, 271, 271, 271, 272, 272, 273, 284, 283, 273, 273, 274, 282, 274, 274, 274, 275, 275, 275, 275, 275, 281, 280, 279, 278, 277, 276, 266, 261, 259, 254, 251, 249, 246, 244, 242, 231, 230, 229, 228, 225, 221, 213, 208, 205, 203, 202, 200, 197, 192, 191, 189, 188, 185, 175, 171, 167, 141, 126, 125, 123, 122, 119, 118, 115, 114, 110, 77, 64, 62, 60, 57, 32, 27, 23, 22, 11, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267 } ; /* Table of booleans, true if rule could match eol. */ static yyconst flex_int32_t yy_rule_can_match_eol[63] = { 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, }; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET #line 1 "ctf-lexer.l" #line 2 "ctf-lexer.l" /* * ctf-lexer.l * * Common Trace Formal Lexer * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define PARSE_INTEGER_LITERAL(base) \ do { \ errno = 0; \ yylval->ull = strtoull(yytext, NULL, base); \ if (errno) { \ printfl_perror(yylineno, "Integer literal"); \ return ERROR; \ } \ } while (0) BT_HIDDEN void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src); static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner) __attribute__((unused)); static int input (yyscan_t yyscanner) __attribute__((unused)); BT_HIDDEN int import_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src, char delim); /* bison-locations */ #line 736 "ctf-lexer.c" #define INITIAL 0 #define comment_ml 1 #define comment_sl 2 #define string_lit 3 #define char_const 4 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #define YY_EXTRA_TYPE struct ctf_scanner * /* Holds the entire state of the reentrant scanner. */ struct yyguts_t { /* User-defined. Not touched by flex. */ YY_EXTRA_TYPE yyextra_r; /* The rest are the same as the globals declared in the non-reentrant scanner. */ FILE *yyin_r, *yyout_r; size_t yy_buffer_stack_top; /**< index of top of stack. */ size_t yy_buffer_stack_max; /**< capacity of stack. */ YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ char yy_hold_char; int yy_n_chars; int yyleng_r; char *yy_c_buf_p; int yy_init; int yy_start; int yy_did_buffer_switch_on_eof; int yy_start_stack_ptr; int yy_start_stack_depth; int *yy_start_stack; yy_state_type yy_last_accepting_state; char* yy_last_accepting_cpos; int yylineno_r; int yy_flex_debug_r; char *yytext_r; int yy_more_flag; int yy_more_len; YYSTYPE * yylval_r; }; /* end struct yyguts_t */ static int yy_init_globals (yyscan_t yyscanner ); /* This must go here because YYSTYPE and YYLTYPE are included * from bison output in section 1.*/ # define yylval yyg->yylval_r int yylex_init (yyscan_t* scanner); int yylex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (yyscan_t yyscanner ); int yyget_debug (yyscan_t yyscanner ); void yyset_debug (int debug_flag ,yyscan_t yyscanner ); YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner ); void yyset_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); FILE *yyget_in (yyscan_t yyscanner ); void yyset_in (FILE * in_str ,yyscan_t yyscanner ); FILE *yyget_out (yyscan_t yyscanner ); void yyset_out (FILE * out_str ,yyscan_t yyscanner ); int yyget_leng (yyscan_t yyscanner ); char *yyget_text (yyscan_t yyscanner ); int yyget_lineno (yyscan_t yyscanner ); void yyset_lineno (int line_number ,yyscan_t yyscanner ); int yyget_column (yyscan_t yyscanner ); void yyset_column (int column_no ,yyscan_t yyscanner ); YYSTYPE * yyget_lval (yyscan_t yyscanner ); void yyset_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (yyscan_t yyscanner ); #else extern int yywrap (yyscan_t yyscanner ); #endif #endif static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner); #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (yyscan_t yyscanner ); #else static int input (yyscan_t yyscanner ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex \ (YYSTYPE * yylval_param ,yyscan_t yyscanner); #define YY_DECL int yylex \ (YYSTYPE * yylval_param , yyscan_t yyscanner) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; #line 70 "ctf-lexer.l" /* * Using start conditions to deal with comments * and strings. */ #line 988 "ctf-lexer.c" yylval = yylval_param; if ( !yyg->yy_init ) { yyg->yy_init = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yyg->yy_start ) yyg->yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } yy_load_buffer_state(yyscanner ); } while ( 1 ) /* loops until end-of-file is reached */ { yy_cp = yyg->yy_c_buf_p; /* Support of yytext. */ *yy_cp = yyg->yy_hold_char; /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = yyg->yy_start; yy_match: do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 268 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 512 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] ) { int yyl; for ( yyl = 0; yyl < yyleng; ++yyl ) if ( yytext[yyl] == '\n' ) do{ yylineno++; yycolumn=0; }while(0) ; } do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = yyg->yy_hold_char; yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; goto yy_find_action; case 1: YY_RULE_SETUP #line 77 "ctf-lexer.l" BEGIN(comment_ml); YY_BREAK case 2: YY_RULE_SETUP #line 78 "ctf-lexer.l" /* eat anything that's not a '*' */ YY_BREAK case 3: YY_RULE_SETUP #line 79 "ctf-lexer.l" /* eat up '*'s not followed by '/'s */ YY_BREAK case 4: /* rule 4 can match eol */ YY_RULE_SETUP #line 80 "ctf-lexer.l" YY_BREAK case 5: YY_RULE_SETUP #line 81 "ctf-lexer.l" BEGIN(INITIAL); YY_BREAK case 6: /* rule 6 can match eol */ YY_RULE_SETUP #line 83 "ctf-lexer.l" /* skip comment */ YY_BREAK case 7: /* rule 7 can match eol */ YY_RULE_SETUP #line 85 "ctf-lexer.l" { if (import_string(yyextra, yylval, yytext, '\"') < 0) return ERROR; else return STRING_LITERAL; } YY_BREAK case 8: /* rule 8 can match eol */ YY_RULE_SETUP #line 86 "ctf-lexer.l" { if (import_string(yyextra, yylval, yytext, '\'') < 0) return ERROR; else return CHARACTER_LITERAL; } YY_BREAK case 9: YY_RULE_SETUP #line 88 "ctf-lexer.l" return LSBRAC; YY_BREAK case 10: YY_RULE_SETUP #line 89 "ctf-lexer.l" return RSBRAC; YY_BREAK case 11: YY_RULE_SETUP #line 90 "ctf-lexer.l" return LPAREN; YY_BREAK case 12: YY_RULE_SETUP #line 91 "ctf-lexer.l" return RPAREN; YY_BREAK case 13: YY_RULE_SETUP #line 92 "ctf-lexer.l" return LBRAC; YY_BREAK case 14: YY_RULE_SETUP #line 93 "ctf-lexer.l" return RBRAC; YY_BREAK case 15: YY_RULE_SETUP #line 94 "ctf-lexer.l" return RARROW; YY_BREAK case 16: YY_RULE_SETUP #line 95 "ctf-lexer.l" return STAR; YY_BREAK case 17: YY_RULE_SETUP #line 96 "ctf-lexer.l" return PLUS; YY_BREAK case 18: YY_RULE_SETUP #line 97 "ctf-lexer.l" return MINUS; YY_BREAK case 19: YY_RULE_SETUP #line 98 "ctf-lexer.l" return LT; YY_BREAK case 20: YY_RULE_SETUP #line 99 "ctf-lexer.l" return GT; YY_BREAK case 21: YY_RULE_SETUP #line 100 "ctf-lexer.l" return TYPEASSIGN; YY_BREAK case 22: YY_RULE_SETUP #line 101 "ctf-lexer.l" return COLON; YY_BREAK case 23: YY_RULE_SETUP #line 102 "ctf-lexer.l" return SEMICOLON; YY_BREAK case 24: YY_RULE_SETUP #line 103 "ctf-lexer.l" return DOTDOTDOT; YY_BREAK case 25: YY_RULE_SETUP #line 104 "ctf-lexer.l" return DOT; YY_BREAK case 26: YY_RULE_SETUP #line 105 "ctf-lexer.l" return EQUAL; YY_BREAK case 27: YY_RULE_SETUP #line 106 "ctf-lexer.l" return COMMA; YY_BREAK case 28: YY_RULE_SETUP #line 107 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return TOK_ALIGN; YY_BREAK case 29: YY_RULE_SETUP #line 108 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return CONST; YY_BREAK case 30: YY_RULE_SETUP #line 109 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return CHAR; YY_BREAK case 31: YY_RULE_SETUP #line 110 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return CLOCK; YY_BREAK case 32: YY_RULE_SETUP #line 111 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return DOUBLE; YY_BREAK case 33: YY_RULE_SETUP #line 112 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return ENUM; YY_BREAK case 34: YY_RULE_SETUP #line 113 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return ENV; YY_BREAK case 35: YY_RULE_SETUP #line 114 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return EVENT; YY_BREAK case 36: YY_RULE_SETUP #line 115 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return FLOATING_POINT; YY_BREAK case 37: YY_RULE_SETUP #line 116 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return FLOAT; YY_BREAK case 38: YY_RULE_SETUP #line 117 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return INTEGER; YY_BREAK case 39: YY_RULE_SETUP #line 118 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return INT; YY_BREAK case 40: YY_RULE_SETUP #line 119 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return LONG; YY_BREAK case 41: YY_RULE_SETUP #line 120 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return SHORT; YY_BREAK case 42: YY_RULE_SETUP #line 121 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return SIGNED; YY_BREAK case 43: YY_RULE_SETUP #line 122 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return STREAM; YY_BREAK case 44: YY_RULE_SETUP #line 123 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return STRING; YY_BREAK case 45: YY_RULE_SETUP #line 124 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return STRUCT; YY_BREAK case 46: YY_RULE_SETUP #line 125 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return TRACE; YY_BREAK case 47: YY_RULE_SETUP #line 126 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return CALLSITE; YY_BREAK case 48: YY_RULE_SETUP #line 127 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return TYPEALIAS; YY_BREAK case 49: YY_RULE_SETUP #line 128 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return TYPEDEF; YY_BREAK case 50: YY_RULE_SETUP #line 129 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return UNSIGNED; YY_BREAK case 51: YY_RULE_SETUP #line 130 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return VARIANT; YY_BREAK case 52: YY_RULE_SETUP #line 131 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return VOID; YY_BREAK case 53: YY_RULE_SETUP #line 132 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return _BOOL; YY_BREAK case 54: YY_RULE_SETUP #line 133 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return _COMPLEX; YY_BREAK case 55: YY_RULE_SETUP #line 134 "ctf-lexer.l" setstring(yyextra, yylval, yytext); return _IMAGINARY; YY_BREAK case 56: YY_RULE_SETUP #line 135 "ctf-lexer.l" PARSE_INTEGER_LITERAL(10); return INTEGER_LITERAL; YY_BREAK case 57: YY_RULE_SETUP #line 136 "ctf-lexer.l" PARSE_INTEGER_LITERAL(8); return INTEGER_LITERAL; YY_BREAK case 58: YY_RULE_SETUP #line 137 "ctf-lexer.l" PARSE_INTEGER_LITERAL(16); return INTEGER_LITERAL; YY_BREAK case 59: YY_RULE_SETUP #line 139 "ctf-lexer.l" printf_debug("\n", yytext); setstring(yyextra, yylval, yytext); if (is_type(yyextra, yytext)) return ID_TYPE; else return IDENTIFIER; YY_BREAK case 60: /* rule 60 can match eol */ YY_RULE_SETUP #line 140 "ctf-lexer.l" ; /* ignore */ YY_BREAK case 61: YY_RULE_SETUP #line 141 "ctf-lexer.l" printfl_error(yylineno, "invalid character '0x%02X'", yytext[0]); return ERROR; YY_BREAK case 62: YY_RULE_SETUP #line 142 "ctf-lexer.l" ECHO; YY_BREAK #line 1400 "ctf-lexer.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(comment_ml): case YY_STATE_EOF(comment_sl): case YY_STATE_EOF(string_lit): case YY_STATE_EOF(char_const): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yyg->yy_hold_char; YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yyg->yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yyg->yy_c_buf_p; goto yy_find_action; } } else switch ( yy_get_next_buffer( yyscanner ) ) { case EOB_ACT_END_OF_FILE: { yyg->yy_did_buffer_switch_on_eof = 0; if ( yywrap(yyscanner ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yyg->yy_c_buf_p = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = yyg->yytext_ptr; register int number_to_move, i; int ret_val; if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) (yyg->yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), yyg->yy_n_chars, (size_t) num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } if ( yyg->yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ,yyscanner); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) (yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } yyg->yy_n_chars += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (yyscan_t yyscanner) { register yy_state_type yy_current_state; register char *yy_cp; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_current_state = yyg->yy_start; for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 268 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) { register int yy_is_jam; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ register char *yy_cp = yyg->yy_c_buf_p; register YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->yy_last_accepting_cpos = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 268 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 267); return yy_is_jam ? 0 : yy_current_state; } static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner) { register char *yy_cp; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_cp = yyg->yy_c_buf_p; /* undo effects of setting up yytext */ *yy_cp = yyg->yy_hold_char; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ register int number_to_move = yyg->yy_n_chars + 2; register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; if ( c == '\n' ){ --yylineno; } yyg->yytext_ptr = yy_bp; yyg->yy_hold_char = *yy_cp; yyg->yy_c_buf_p = yy_cp; } #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (yyscan_t yyscanner) #else static int input (yyscan_t yyscanner) #endif { int c; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; *yyg->yy_c_buf_p = yyg->yy_hold_char; if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) /* This was really a NUL. */ *yyg->yy_c_buf_p = '\0'; else { /* need more input */ int offset = yyg->yy_c_buf_p - yyg->yytext_ptr; ++yyg->yy_c_buf_p; switch ( yy_get_next_buffer( yyscanner ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ,yyscanner); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap(yyscanner ) ) return EOF; if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(yyscanner); #else return input(yyscanner); #endif } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + offset; break; } } } c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ yyg->yy_hold_char = *++yyg->yy_c_buf_p; if ( c == '\n' ) do{ yylineno++; yycolumn=0; }while(0) ; return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner); yy_load_buffer_state(yyscanner ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (yyscanner); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state(yyscanner ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ yyg->yy_did_buffer_switch_on_eof = 1; } static void yy_load_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; yyg->yy_hold_char = *yyg->yy_c_buf_p; } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * @param yyscanner The scanner object. * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ,yyscanner ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ,yyscanner); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * @param yyscanner The scanner object. */ void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ,yyscanner ); yyfree((void *) b ,yyscanner ); } #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) { int oerrno = errno; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_flush_buffer(b ,yyscanner); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * @param yyscanner The scanner object. */ void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state(yyscanner ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * @param yyscanner The scanner object. */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (new_buffer == NULL) return; yyensure_buffer_stack(yyscanner); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) yyg->yy_buffer_stack_top++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * @param yyscanner The scanner object. */ void yypop_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner); YY_CURRENT_BUFFER_LVALUE = NULL; if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; if (YY_CURRENT_BUFFER) { yy_load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (yyscan_t yyscanner) { int num_to_alloc; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!yyg->yy_buffer_stack) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); yyg->yy_buffer_stack_max = num_to_alloc; yyg->yy_buffer_stack_top = 0; return; } if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ /* Increase the buffer to prepare for a possible push. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = yyg->yy_buffer_stack_max + grow_size; yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc (yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); yyg->yy_buffer_stack_max = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ,yyscanner ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * @param yyscanner The scanner object. * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr , yyscan_t yyscanner) { return yy_scan_bytes(yystr,strlen(yystr) ,yyscanner); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len , yyscan_t yyscanner) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ,yyscanner ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ,yyscanner); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) { (void) fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = yyg->yy_hold_char; \ yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ yyg->yy_hold_char = *yyg->yy_c_buf_p; \ *yyg->yy_c_buf_p = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyextra; } /** Get the current line number. * @param yyscanner The scanner object. */ int yyget_lineno (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yylineno; } /** Get the current column number. * @param yyscanner The scanner object. */ int yyget_column (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yycolumn; } /** Get the input stream. * @param yyscanner The scanner object. */ FILE *yyget_in (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyin; } /** Get the output stream. * @param yyscanner The scanner object. */ FILE *yyget_out (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyout; } /** Get the length of the current token. * @param yyscanner The scanner object. */ int yyget_leng (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyleng; } /** Get the current token. * @param yyscanner The scanner object. */ char *yyget_text (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yytext; } /** Set the user-defined data. This data is never touched by the scanner. * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyextra = user_defined ; } /** Set the current line number. * @param line_number * @param yyscanner The scanner object. */ void yyset_lineno (int line_number , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* lineno is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) yy_fatal_error( "yyset_lineno called with no buffer" , yyscanner); yylineno = line_number; } /** Set the current column. * @param line_number * @param yyscanner The scanner object. */ void yyset_column (int column_no , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* column is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) yy_fatal_error( "yyset_column called with no buffer" , yyscanner); yycolumn = column_no; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * @param yyscanner The scanner object. * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyin = in_str ; } void yyset_out (FILE * out_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyout = out_str ; } int yyget_debug (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yy_flex_debug; } void yyset_debug (int bdebug , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_flex_debug = bdebug ; } /* Accessor methods for yylval and yylloc */ YYSTYPE * yyget_lval (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yylval; } void yyset_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yylval = yylval_param; } /* User-visible API */ /* yylex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ int yylex_init(yyscan_t* ptr_yy_globals) { if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); return yy_init_globals ( *ptr_yy_globals ); } /* yylex_init_extra has the same functionality as yylex_init, but follows the * convention of taking the scanner as the last argument. Note however, that * this is a *pointer* to a scanner, as it will be allocated by this call (and * is the reason, too, why this function also must handle its own declaration). * The user defined value in the first argument will be available to yyalloc in * the yyextra field. */ int yylex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals ) { struct yyguts_t dummy_yyguts; yyset_extra (yy_user_defined, &dummy_yyguts); if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); yyset_extra (yy_user_defined, *ptr_yy_globals); return yy_init_globals ( *ptr_yy_globals ); } static int yy_init_globals (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ yyg->yy_buffer_stack = 0; yyg->yy_buffer_stack_top = 0; yyg->yy_buffer_stack_max = 0; yyg->yy_c_buf_p = (char *) 0; yyg->yy_init = 0; yyg->yy_start = 0; yyg->yy_start_stack_ptr = 0; yyg->yy_start_stack_depth = 0; yyg->yy_start_stack = NULL; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ,yyscanner ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(yyscanner); } /* Destroy the stack itself. */ yyfree(yyg->yy_buffer_stack ,yyscanner); yyg->yy_buffer_stack = NULL; /* Destroy the start condition stack. */ yyfree(yyg->yy_start_stack ,yyscanner ); yyg->yy_start_stack = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( yyscanner); /* Destroy the main struct (reentrant only). */ yyfree ( yyscanner , yyscanner ); yyscanner = NULL; return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size , yyscan_t yyscanner) { return (void *) malloc( size ); } void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr , yyscan_t yyscanner) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 142 "ctf-lexer.l" babeltrace-1.2.1/formats/ctf/metadata/ctf-ast.h0000644000175000017500000001721312304150543016242 00000000000000#ifndef _CTF_AST_H #define _CTF_AST_H /* * ctf-ast.h * * Copyright 2011-2012 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. */ #include #include #include #include // the parameter name (of the reentrant 'yyparse' function) // data is a pointer to a 'SParserParam' structure //#define YYPARSE_PARAM scanner struct ctf_node; struct ctf_parser; #define FOREACH_CTF_NODES(F) \ F(NODE_UNKNOWN) \ F(NODE_ROOT) \ F(NODE_ERROR) \ F(NODE_EVENT) \ F(NODE_STREAM) \ F(NODE_ENV) \ F(NODE_TRACE) \ F(NODE_CLOCK) \ F(NODE_CALLSITE) \ F(NODE_CTF_EXPRESSION) \ F(NODE_UNARY_EXPRESSION) \ F(NODE_TYPEDEF) \ F(NODE_TYPEALIAS_TARGET) \ F(NODE_TYPEALIAS_ALIAS) \ F(NODE_TYPEALIAS) \ F(NODE_TYPE_SPECIFIER) \ F(NODE_TYPE_SPECIFIER_LIST) \ F(NODE_POINTER) \ F(NODE_TYPE_DECLARATOR) \ F(NODE_FLOATING_POINT) \ F(NODE_INTEGER) \ F(NODE_STRING) \ F(NODE_ENUMERATOR) \ F(NODE_ENUM) \ F(NODE_STRUCT_OR_VARIANT_DECLARATION) \ F(NODE_VARIANT) \ F(NODE_STRUCT) enum node_type { #define ENTRY(S) S, FOREACH_CTF_NODES(ENTRY) #undef ENTRY NR_NODE_TYPES, }; struct ctf_node { /* * Parent node is only set on demand by specific visitor. */ struct ctf_node *parent; struct bt_list_head siblings; struct bt_list_head tmp_head; unsigned int lineno; /* * We mark nodes visited in the generate-io-struct phase (last * phase). We only mark the 1-depth level nodes as visited * (never the root node, and not their sub-nodes). This allows * skipping already visited nodes when doing incremental * metadata append. */ int visited; enum node_type type; union { struct { } unknown; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; struct bt_list_head trace; struct bt_list_head env; struct bt_list_head stream; struct bt_list_head event; struct bt_list_head clock; struct bt_list_head callsite; } root; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } event; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } stream; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } env; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } trace; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } clock; struct { /* * Children nodes are ctf_expression, typedef, * typealias and type_specifier_list. */ struct bt_list_head declaration_list; } callsite; struct { struct bt_list_head left; /* Should be string */ struct bt_list_head right; /* Unary exp. or type */ } ctf_expression; struct { enum { UNARY_UNKNOWN = 0, UNARY_STRING, UNARY_SIGNED_CONSTANT, UNARY_UNSIGNED_CONSTANT, UNARY_SBRAC, } type; union { /* * string for identifier, id_type, keywords, * string literals and character constants. */ char *string; int64_t signed_constant; uint64_t unsigned_constant; struct ctf_node *sbrac_exp; } u; enum { UNARY_LINK_UNKNOWN = 0, UNARY_DOTLINK, UNARY_ARROWLINK, UNARY_DOTDOTDOT, } link; } unary_expression; struct { struct ctf_node *type_specifier_list; struct bt_list_head type_declarators; } _typedef; /* new type is "alias", existing type "target" */ struct { struct ctf_node *type_specifier_list; struct bt_list_head type_declarators; } typealias_target; struct { struct ctf_node *type_specifier_list; struct bt_list_head type_declarators; } typealias_alias; struct { struct ctf_node *target; struct ctf_node *alias; } typealias; struct { enum { TYPESPEC_UNKNOWN = 0, TYPESPEC_VOID, TYPESPEC_CHAR, TYPESPEC_SHORT, TYPESPEC_INT, TYPESPEC_LONG, TYPESPEC_FLOAT, TYPESPEC_DOUBLE, TYPESPEC_SIGNED, TYPESPEC_UNSIGNED, TYPESPEC_BOOL, TYPESPEC_COMPLEX, TYPESPEC_IMAGINARY, TYPESPEC_CONST, TYPESPEC_ID_TYPE, TYPESPEC_FLOATING_POINT, TYPESPEC_INTEGER, TYPESPEC_STRING, TYPESPEC_STRUCT, TYPESPEC_VARIANT, TYPESPEC_ENUM, } type; /* For struct, variant and enum */ struct ctf_node *node; const char *id_type; } type_specifier; struct { /* list of type_specifier */ struct bt_list_head head; } type_specifier_list; struct { unsigned int const_qualifier; } pointer; struct { struct bt_list_head pointers; enum { TYPEDEC_UNKNOWN = 0, TYPEDEC_ID, /* identifier */ TYPEDEC_NESTED, /* (), array or sequence */ } type; union { char *id; struct { /* typedec has no pointer list */ struct ctf_node *type_declarator; /* * unary expression (value) or * type_specifier_list. */ struct bt_list_head length; /* for abstract type declarator */ unsigned int abstract_array; } nested; } u; struct ctf_node *bitfield_len; } type_declarator; struct { /* Children nodes are ctf_expression. */ struct bt_list_head expressions; } floating_point; struct { /* Children nodes are ctf_expression. */ struct bt_list_head expressions; } integer; struct { /* Children nodes are ctf_expression. */ struct bt_list_head expressions; } string; struct { char *id; /* * Range list or single value node. Contains unary * expressions. */ struct bt_list_head values; } enumerator; struct { char *enum_id; /* * Either NULL, or points to unary expression or * type_specifier_list. */ struct ctf_node *container_type; struct bt_list_head enumerator_list; int has_body; } _enum; struct { struct ctf_node *type_specifier_list; struct bt_list_head type_declarators; } struct_or_variant_declaration; struct { char *name; char *choice; /* list of typedef, typealias and declarations */ struct bt_list_head declaration_list; int has_body; } variant; struct { char *name; /* list of typedef, typealias and declarations */ struct bt_list_head declaration_list; int has_body; struct bt_list_head min_align; /* align() attribute */ } _struct; } u; }; struct ctf_ast { struct ctf_node root; }; const char *node_type(struct ctf_node *node); struct ctf_trace; BT_HIDDEN int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node); BT_HIDDEN int ctf_visitor_semantic_check(FILE *fd, int depth, struct ctf_node *node); BT_HIDDEN int ctf_visitor_parent_links(FILE *fd, int depth, struct ctf_node *node); BT_HIDDEN int ctf_visitor_construct_metadata(FILE *fd, int depth, struct ctf_node *node, struct ctf_trace *trace, int byte_order); BT_HIDDEN int ctf_destroy_metadata(struct ctf_trace *trace); #endif /* _CTF_AST_H */ babeltrace-1.2.1/formats/ctf/metadata/ctf-lexer.l0000644000175000017500000001306012272477052016605 00000000000000%{ /* * ctf-lexer.l * * Common Trace Formal Lexer * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define PARSE_INTEGER_LITERAL(base) \ do { \ errno = 0; \ yylval->ull = strtoull(yytext, NULL, base); \ if (errno) { \ printfl_perror(yylineno, "Integer literal"); \ return ERROR; \ } \ } while (0) BT_HIDDEN void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src); static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner) __attribute__((unused)); static int input (yyscan_t yyscanner) __attribute__((unused)); BT_HIDDEN int import_string(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src, char delim); %} %x comment_ml comment_sl string_lit char_const %option reentrant yylineno noyywrap bison-bridge %option extra-type="struct ctf_scanner *" /* bison-locations */ INTEGER_SUFFIX (U|UL|ULL|LU|LLU|Ul|Ull|lU|llU|u|uL|uLL|Lu|LLu|ul|ull|lu|llu) DIGIT [0-9] NONDIGIT [a-zA-Z_] HEXDIGIT [0-9A-Fa-f] OCTALDIGIT [0-7] UCHARLOWERCASE \\u{HEXDIGIT}{4} UCHARUPPERCASE \\U{HEXDIGIT}{8} ID_NONDIGIT {NONDIGIT}|{UCHARLOWERCASE}|{UCHARUPPERCASE} IDENTIFIER {ID_NONDIGIT}({ID_NONDIGIT}|{DIGIT})* %% /* * Using start conditions to deal with comments * and strings. */ "/*" BEGIN(comment_ml); [^*\n]* /* eat anything that's not a '*' */ "*"+[^*/\n]* /* eat up '*'s not followed by '/'s */ \n "*"+"/" BEGIN(INITIAL); "//"[^\n]*\n /* skip comment */ L?\"(\\.|[^\\"])*\" { if (import_string(yyextra, yylval, yytext, '\"') < 0) return ERROR; else return STRING_LITERAL; } L?\'(\\.|[^\\'])*\' { if (import_string(yyextra, yylval, yytext, '\'') < 0) return ERROR; else return CHARACTER_LITERAL; } "[" return LSBRAC; "]" return RSBRAC; "(" return LPAREN; ")" return RPAREN; "{" return LBRAC; "}" return RBRAC; "->" return RARROW; "*" return STAR; "+" return PLUS; "-" return MINUS; "<" return LT; ">" return GT; := return TYPEASSIGN; : return COLON; ; return SEMICOLON; "..." return DOTDOTDOT; "." return DOT; = return EQUAL; "," return COMMA; align setstring(yyextra, yylval, yytext); return TOK_ALIGN; const setstring(yyextra, yylval, yytext); return CONST; char setstring(yyextra, yylval, yytext); return CHAR; clock setstring(yyextra, yylval, yytext); return CLOCK; double setstring(yyextra, yylval, yytext); return DOUBLE; enum setstring(yyextra, yylval, yytext); return ENUM; env setstring(yyextra, yylval, yytext); return ENV; event setstring(yyextra, yylval, yytext); return EVENT; floating_point setstring(yyextra, yylval, yytext); return FLOATING_POINT; float setstring(yyextra, yylval, yytext); return FLOAT; integer setstring(yyextra, yylval, yytext); return INTEGER; int setstring(yyextra, yylval, yytext); return INT; long setstring(yyextra, yylval, yytext); return LONG; short setstring(yyextra, yylval, yytext); return SHORT; signed setstring(yyextra, yylval, yytext); return SIGNED; stream setstring(yyextra, yylval, yytext); return STREAM; string setstring(yyextra, yylval, yytext); return STRING; struct setstring(yyextra, yylval, yytext); return STRUCT; trace setstring(yyextra, yylval, yytext); return TRACE; callsite setstring(yyextra, yylval, yytext); return CALLSITE; typealias setstring(yyextra, yylval, yytext); return TYPEALIAS; typedef setstring(yyextra, yylval, yytext); return TYPEDEF; unsigned setstring(yyextra, yylval, yytext); return UNSIGNED; variant setstring(yyextra, yylval, yytext); return VARIANT; void setstring(yyextra, yylval, yytext); return VOID; _Bool setstring(yyextra, yylval, yytext); return _BOOL; _Complex setstring(yyextra, yylval, yytext); return _COMPLEX; _Imaginary setstring(yyextra, yylval, yytext); return _IMAGINARY; [1-9]{DIGIT}*{INTEGER_SUFFIX}? PARSE_INTEGER_LITERAL(10); return INTEGER_LITERAL; 0{OCTALDIGIT}*{INTEGER_SUFFIX}? PARSE_INTEGER_LITERAL(8); return INTEGER_LITERAL; 0[xX]{HEXDIGIT}+{INTEGER_SUFFIX}? PARSE_INTEGER_LITERAL(16); return INTEGER_LITERAL; {IDENTIFIER} printf_debug("\n", yytext); setstring(yyextra, yylval, yytext); if (is_type(yyextra, yytext)) return ID_TYPE; else return IDENTIFIER; [ \t\r\n] ; /* ignore */ . printfl_error(yylineno, "invalid character '0x%02X'", yytext[0]); return ERROR; %% babeltrace-1.2.1/formats/ctf/metadata/ctf-visitor-xml.c0000644000175000017500000004545512304150543017754 00000000000000/* * ctf-visitor-xml.c * * Common Trace Format Metadata Visitor (XML dump). * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include "ctf-scanner.h" #include "ctf-parser.h" #include "ctf-ast.h" #define fprintf_dbg(fd, fmt, args...) fprintf(fd, "%s: " fmt, __func__, ## args) static void print_tabs(FILE *fd, int depth) { int i; for (i = 0; i < depth; i++) fprintf(fd, "\t"); } static int ctf_visitor_print_unary_expression(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; switch (node->u.unary_expression.link) { case UNARY_LINK_UNKNOWN: break; case UNARY_DOTLINK: print_tabs(fd, depth); fprintf(fd, "\n"); break; case UNARY_ARROWLINK: print_tabs(fd, depth); fprintf(fd, "\n"); break; case UNARY_DOTDOTDOT: print_tabs(fd, depth); fprintf(fd, "\n"); break; default: fprintf(stderr, "[error] %s: unknown expression link type %d\n", __func__, (int) node->u.unary_expression.link); return -EINVAL; } switch (node->u.unary_expression.type) { case UNARY_STRING: print_tabs(fd, depth); fprintf(fd, "u.unary_expression.u.string); fprintf(fd, " />\n"); break; case UNARY_SIGNED_CONSTANT: print_tabs(fd, depth); fprintf(fd, "u.unary_expression.u.signed_constant); fprintf(fd, "\" />\n"); break; case UNARY_UNSIGNED_CONSTANT: print_tabs(fd, depth); fprintf(fd, "u.unary_expression.u.signed_constant); fprintf(fd, "\" />\n"); break; case UNARY_SBRAC: print_tabs(fd, depth); fprintf(fd, "\n"); ret = ctf_visitor_print_unary_expression(fd, depth + 1, node->u.unary_expression.u.sbrac_exp); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); break; case UNARY_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown expression type %d\n", __func__, (int) node->u.unary_expression.type); return -EINVAL; } return 0; } static int ctf_visitor_print_type_specifier_list(FILE *fd, int depth, struct ctf_node *node) { struct ctf_node *iter; int ret; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.type_specifier_list.head, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); return 0; } static int ctf_visitor_print_type_specifier(FILE *fd, int depth, struct ctf_node *node) { int ret; print_tabs(fd, depth); switch (node->u.type_specifier.type) { case TYPESPEC_VOID: case TYPESPEC_CHAR: case TYPESPEC_SHORT: case TYPESPEC_INT: case TYPESPEC_LONG: case TYPESPEC_FLOAT: case TYPESPEC_DOUBLE: case TYPESPEC_SIGNED: case TYPESPEC_UNSIGNED: case TYPESPEC_BOOL: case TYPESPEC_COMPLEX: case TYPESPEC_IMAGINARY: case TYPESPEC_CONST: case TYPESPEC_ID_TYPE: fprintf(fd, "\n"); depth++; break; case TYPESPEC_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown type specifier %d\n", __func__, (int) node->u.type_specifier.type); return -EINVAL; } switch (node->u.type_specifier.type) { case TYPESPEC_VOID: fprintf(fd, "void"); break; case TYPESPEC_CHAR: fprintf(fd, "char"); break; case TYPESPEC_SHORT: fprintf(fd, "short"); break; case TYPESPEC_INT: fprintf(fd, "int"); break; case TYPESPEC_LONG: fprintf(fd, "long"); break; case TYPESPEC_FLOAT: fprintf(fd, "float"); break; case TYPESPEC_DOUBLE: fprintf(fd, "double"); break; case TYPESPEC_SIGNED: fprintf(fd, "signed"); break; case TYPESPEC_UNSIGNED: fprintf(fd, "unsigned"); break; case TYPESPEC_BOOL: fprintf(fd, "bool"); break; case TYPESPEC_COMPLEX: fprintf(fd, "_Complex"); break; case TYPESPEC_IMAGINARY: fprintf(fd, "_Imaginary"); break; case TYPESPEC_CONST: fprintf(fd, "const"); break; case TYPESPEC_ID_TYPE: fprintf(fd, "%s", node->u.type_specifier.id_type); break; case TYPESPEC_FLOATING_POINT: case TYPESPEC_INTEGER: case TYPESPEC_STRING: case TYPESPEC_STRUCT: case TYPESPEC_VARIANT: case TYPESPEC_ENUM: ret = ctf_visitor_print_xml(fd, depth, node->u.type_specifier.node); if (ret) return ret; break; case TYPESPEC_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown type specifier %d\n", __func__, (int) node->u.type_specifier.type); return -EINVAL; } switch (node->u.type_specifier.type) { case TYPESPEC_VOID: case TYPESPEC_CHAR: case TYPESPEC_SHORT: case TYPESPEC_INT: case TYPESPEC_LONG: case TYPESPEC_FLOAT: case TYPESPEC_DOUBLE: case TYPESPEC_SIGNED: case TYPESPEC_UNSIGNED: case TYPESPEC_BOOL: case TYPESPEC_COMPLEX: case TYPESPEC_IMAGINARY: case TYPESPEC_CONST: case TYPESPEC_ID_TYPE: fprintf(fd, "\"/>\n"); break; case TYPESPEC_FLOATING_POINT: case TYPESPEC_INTEGER: case TYPESPEC_STRING: case TYPESPEC_STRUCT: case TYPESPEC_VARIANT: case TYPESPEC_ENUM: depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case TYPESPEC_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown type specifier %d\n", __func__, (int) node->u.type_specifier.type); return -EINVAL; } return 0; } static int ctf_visitor_print_type_declarator(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; print_tabs(fd, depth); fprintf(fd, "\n"); depth++; if (!bt_list_empty(&node->u.type_declarator.pointers)) { print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.type_declarator.pointers, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); } switch (node->u.type_declarator.type) { case TYPEDEC_ID: if (node->u.type_declarator.u.id) { print_tabs(fd, depth); fprintf(fd, "u.type_declarator.u.id); fprintf(fd, "\" />\n"); } break; case TYPEDEC_NESTED: if (node->u.type_declarator.u.nested.type_declarator) { print_tabs(fd, depth); fprintf(fd, "\n"); ret = ctf_visitor_print_xml(fd, depth + 1, node->u.type_declarator.u.nested.type_declarator); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); } if (node->u.type_declarator.u.nested.abstract_array) { print_tabs(fd, depth); fprintf(fd, "\n"); print_tabs(fd, depth); fprintf(fd, "\n"); } else if (!bt_list_empty(&node->u.type_declarator.u.nested.length)) { print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.type_declarator.u.nested.length, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); } if (node->u.type_declarator.bitfield_len) { print_tabs(fd, depth); fprintf(fd, "\n"); ret = ctf_visitor_print_xml(fd, depth + 1, node->u.type_declarator.bitfield_len); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); } break; case TYPEDEC_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown type declarator %d\n", __func__, (int) node->u.type_declarator.type); return -EINVAL; } depth--; print_tabs(fd, depth); fprintf(fd, "\n"); return 0; } int ctf_visitor_print_xml(FILE *fd, int depth, struct ctf_node *node) { int ret = 0; struct ctf_node *iter; if (node->visited) return 0; switch (node->type) { case NODE_ROOT: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.root.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.trace, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.stream, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } bt_list_for_each_entry(iter, &node->u.root.event, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_EVENT: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.event.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_STREAM: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.stream.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_ENV: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.env.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_TRACE: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.trace.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_CLOCK: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.clock.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_CALLSITE: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.callsite.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_CTF_EXPRESSION: print_tabs(fd, depth); fprintf(fd, "\n"); depth++; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.ctf_expression.left, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.ctf_expression.right, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_UNARY_EXPRESSION: return ctf_visitor_print_unary_expression(fd, depth, node); case NODE_TYPEDEF: print_tabs(fd, depth); fprintf(fd, "\n"); depth++; ret = ctf_visitor_print_xml(fd, depth + 1, node->u._typedef.type_specifier_list); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u._typedef.type_declarators, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_TYPEALIAS_TARGET: print_tabs(fd, depth); fprintf(fd, "\n"); depth++; ret = ctf_visitor_print_xml(fd, depth, node->u.typealias_target.type_specifier_list); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.typealias_target.type_declarators, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_TYPEALIAS_ALIAS: print_tabs(fd, depth); fprintf(fd, "\n"); depth++; ret = ctf_visitor_print_xml(fd, depth, node->u.typealias_alias.type_specifier_list); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.typealias_alias.type_declarators, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_TYPEALIAS: print_tabs(fd, depth); fprintf(fd, "\n"); ret = ctf_visitor_print_xml(fd, depth + 1, node->u.typealias.target); if (ret) return ret; ret = ctf_visitor_print_xml(fd, depth + 1, node->u.typealias.alias); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_TYPE_SPECIFIER_LIST: ret = ctf_visitor_print_type_specifier_list(fd, depth, node); if (ret) return ret; break; case NODE_TYPE_SPECIFIER: ret = ctf_visitor_print_type_specifier(fd, depth, node); if (ret) return ret; break; case NODE_POINTER: print_tabs(fd, depth); if (node->u.pointer.const_qualifier) fprintf(fd, "\n"); else fprintf(fd, "\n"); break; case NODE_TYPE_DECLARATOR: ret = ctf_visitor_print_type_declarator(fd, depth, node); if (ret) return ret; break; case NODE_FLOATING_POINT: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.floating_point.expressions, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_INTEGER: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.integer.expressions, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_STRING: print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.string.expressions, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_ENUMERATOR: print_tabs(fd, depth); fprintf(fd, "u.enumerator.id) fprintf(fd, " id=\"%s\"", node->u.enumerator.id); fprintf(fd, ">\n"); bt_list_for_each_entry(iter, &node->u.enumerator.values, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_ENUM: print_tabs(fd, depth); if (node->u._struct.name) fprintf(fd, "\n", node->u._enum.enum_id); else fprintf(fd, "\n"); depth++; if (node->u._enum.container_type) { print_tabs(fd, depth); fprintf(fd, "\n"); ret = ctf_visitor_print_xml(fd, depth + 1, node->u._enum.container_type); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); } print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u._enum.enumerator_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); depth--; print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_STRUCT_OR_VARIANT_DECLARATION: ret = ctf_visitor_print_xml(fd, depth, node->u.struct_or_variant_declaration.type_specifier_list); if (ret) return ret; print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u.struct_or_variant_declaration.type_declarators, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_VARIANT: print_tabs(fd, depth); fprintf(fd, "u.variant.name) fprintf(fd, " name=\"%s\"", node->u.variant.name); if (node->u.variant.choice) fprintf(fd, " choice=\"%s\"", node->u.variant.choice); fprintf(fd, ">\n"); bt_list_for_each_entry(iter, &node->u.variant.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); break; case NODE_STRUCT: print_tabs(fd, depth); if (node->u._struct.name) fprintf(fd, "\n", node->u._struct.name); else fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u._struct.declaration_list, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); if (!bt_list_empty(&node->u._struct.min_align)) { print_tabs(fd, depth); fprintf(fd, "\n"); bt_list_for_each_entry(iter, &node->u._struct.min_align, siblings) { ret = ctf_visitor_print_xml(fd, depth + 1, iter); if (ret) return ret; } print_tabs(fd, depth); fprintf(fd, "\n"); } break; case NODE_UNKNOWN: default: fprintf(stderr, "[error] %s: unknown node type %d\n", __func__, (int) node->type); return -EINVAL; } return ret; } babeltrace-1.2.1/formats/ctf-metadata/0000755000175000017500000000000012306621157014610 500000000000000babeltrace-1.2.1/formats/ctf-metadata/Makefile.am0000644000175000017500000000063312304150543016560 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace-ctf-metadata.la libbabeltrace_ctf_metadata_la_SOURCES = \ ctf-metadata.c # Request that the linker keeps all static libraries objects. libbabeltrace_ctf_metadata_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_ctf_metadata_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la babeltrace-1.2.1/formats/ctf-metadata/Makefile.in0000644000175000017500000004740112306621104016573 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/ctf-metadata DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_ctf_metadata_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la am_libbabeltrace_ctf_metadata_la_OBJECTS = ctf-metadata.lo libbabeltrace_ctf_metadata_la_OBJECTS = \ $(am_libbabeltrace_ctf_metadata_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_ctf_metadata_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) \ $(libbabeltrace_ctf_metadata_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_ctf_metadata_la_SOURCES) DIST_SOURCES = $(libbabeltrace_ctf_metadata_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace-ctf-metadata.la libbabeltrace_ctf_metadata_la_SOURCES = \ ctf-metadata.c # Request that the linker keeps all static libraries objects. libbabeltrace_ctf_metadata_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_ctf_metadata_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf-metadata/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf-metadata/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace-ctf-metadata.la: $(libbabeltrace_ctf_metadata_la_OBJECTS) $(libbabeltrace_ctf_metadata_la_DEPENDENCIES) $(EXTRA_libbabeltrace_ctf_metadata_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_ctf_metadata_la_LINK) -rpath $(libdir) $(libbabeltrace_ctf_metadata_la_OBJECTS) $(libbabeltrace_ctf_metadata_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-metadata.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf-metadata/ctf-metadata.c0000644000175000017500000000764312272477052017245 00000000000000/* * BabelTrace - Common Trace Format (CTF) * * CTF Metadata Dump. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include static struct bt_trace_descriptor *ctf_metadata_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); static int ctf_metadata_close_trace(struct bt_trace_descriptor *descriptor); static struct bt_format ctf_metadata_format = { .open_trace = ctf_metadata_open_trace, .close_trace = ctf_metadata_close_trace, }; static int ctf_metadata_trace_pre_handler(struct bt_stream_pos *ppos, struct bt_trace_descriptor *td) { struct ctf_text_stream_pos *pos = container_of(ppos, struct ctf_text_stream_pos, parent); struct ctf_trace *trace; trace = container_of(td, struct ctf_trace, parent); if (!trace->metadata_string) return -EINVAL; if (trace->metadata_packetized) { fprintf(pos->fp, "/* CTF %u.%u */\n", BT_CTF_MAJOR, BT_CTF_MINOR); } fprintf(pos->fp, "%s", trace->metadata_string); return 0; } static struct bt_trace_descriptor *ctf_metadata_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_text_stream_pos *pos; FILE *fp; pos = g_new0(struct ctf_text_stream_pos, 1); pos->last_real_timestamp = -1ULL; pos->last_cycles_timestamp = -1ULL; switch (flags & O_ACCMODE) { case O_RDWR: if (!path) fp = stdout; else fp = fopen(path, "w"); if (!fp) goto error; pos->fp = fp; pos->parent.pre_trace_cb = ctf_metadata_trace_pre_handler; pos->parent.trace = &pos->trace_descriptor; pos->print_names = 0; break; case O_RDONLY: default: fprintf(stderr, "[error] Incorrect open flags.\n"); goto error; } return &pos->trace_descriptor; error: g_free(pos); return NULL; } static int ctf_metadata_close_trace(struct bt_trace_descriptor *td) { int ret; struct ctf_text_stream_pos *pos = container_of(td, struct ctf_text_stream_pos, trace_descriptor); if (pos->fp != stdout) { ret = fclose(pos->fp); if (ret) { perror("Error on fclose"); return -1; } } g_free(pos); return 0; } static void __attribute__((constructor)) ctf_metadata_init(void) { int ret; ctf_metadata_format.name = g_quark_from_static_string("ctf-metadata"); ret = bt_register_format(&ctf_metadata_format); assert(!ret); } static void __attribute__((destructor)) ctf_metadata_exit(void) { bt_unregister_format(&ctf_metadata_format); } babeltrace-1.2.1/formats/bt-dummy/0000755000175000017500000000000012306621157014014 500000000000000babeltrace-1.2.1/formats/bt-dummy/Makefile.am0000644000175000017500000000057312304150543015767 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace-dummy.la libbabeltrace_dummy_la_SOURCES = \ bt-dummy.c # Request that the linker keeps all static libraries objects. libbabeltrace_dummy_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_dummy_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la babeltrace-1.2.1/formats/bt-dummy/Makefile.in0000644000175000017500000004714012306621104015777 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/bt-dummy DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_dummy_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la am_libbabeltrace_dummy_la_OBJECTS = bt-dummy.lo libbabeltrace_dummy_la_OBJECTS = $(am_libbabeltrace_dummy_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_dummy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libbabeltrace_dummy_la_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_dummy_la_SOURCES) DIST_SOURCES = $(libbabeltrace_dummy_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace-dummy.la libbabeltrace_dummy_la_SOURCES = \ bt-dummy.c # Request that the linker keeps all static libraries objects. libbabeltrace_dummy_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_dummy_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/bt-dummy/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/bt-dummy/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace-dummy.la: $(libbabeltrace_dummy_la_OBJECTS) $(libbabeltrace_dummy_la_DEPENDENCIES) $(EXTRA_libbabeltrace_dummy_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_dummy_la_LINK) -rpath $(libdir) $(libbabeltrace_dummy_la_OBJECTS) $(libbabeltrace_dummy_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bt-dummy.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libLTLIBRARIES install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/bt-dummy/bt-dummy.c0000644000175000017500000000523212272477052015645 00000000000000/* * BabelTrace - Dummy Output * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include static int bt_dummy_write_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream) { return 0; } static struct bt_trace_descriptor *bt_dummy_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_text_stream_pos *pos; pos = g_new0(struct ctf_text_stream_pos, 1); pos->parent.rw_table = NULL; pos->parent.event_cb = bt_dummy_write_event; pos->parent.trace = &pos->trace_descriptor; return &pos->trace_descriptor; } static int bt_dummy_close_trace(struct bt_trace_descriptor *td) { struct ctf_text_stream_pos *pos = container_of(td, struct ctf_text_stream_pos, trace_descriptor); free(pos); return 0; } static struct bt_format bt_dummy_format = { .open_trace = bt_dummy_open_trace, .close_trace = bt_dummy_close_trace, }; static void __attribute__((constructor)) bt_dummy_init(void) { int ret; bt_dummy_format.name = g_quark_from_static_string("dummy"); ret = bt_register_format(&bt_dummy_format); assert(!ret); } static void __attribute__((destructor)) bt_dummy_exit(void) { bt_unregister_format(&bt_dummy_format); } babeltrace-1.2.1/formats/ctf-text/0000755000175000017500000000000012306621157014014 500000000000000babeltrace-1.2.1/formats/ctf-text/Makefile.am0000644000175000017500000000065612304150543015771 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = types . lib_LTLIBRARIES = libbabeltrace-ctf-text.la libbabeltrace_ctf_text_la_SOURCES = \ ctf-text.c libbabeltrace_ctf_text_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) \ types/libctf-text-types.la libbabeltrace_ctf_text_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la babeltrace-1.2.1/formats/ctf-text/Makefile.in0000644000175000017500000006200112306621104015770 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/ctf-text DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_ctf_text_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la am_libbabeltrace_ctf_text_la_OBJECTS = ctf-text.lo libbabeltrace_ctf_text_la_OBJECTS = \ $(am_libbabeltrace_ctf_text_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_ctf_text_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libbabeltrace_ctf_text_la_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_ctf_text_la_SOURCES) DIST_SOURCES = $(libbabeltrace_ctf_text_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include SUBDIRS = types . lib_LTLIBRARIES = libbabeltrace-ctf-text.la libbabeltrace_ctf_text_la_SOURCES = \ ctf-text.c libbabeltrace_ctf_text_la_LDFLAGS = \ -Wl,--no-as-needed -version-info $(BABELTRACE_LIBRARY_VERSION) \ types/libctf-text-types.la libbabeltrace_ctf_text_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf-text/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf-text/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace-ctf-text.la: $(libbabeltrace_ctf_text_la_OBJECTS) $(libbabeltrace_ctf_text_la_DEPENDENCIES) $(EXTRA_libbabeltrace_ctf_text_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_ctf_text_la_LINK) -rpath $(libdir) $(libbabeltrace_ctf_text_la_OBJECTS) $(libbabeltrace_ctf_text_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctf-text.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags ctags-recursive \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libLTLIBRARIES install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf-text/ctf-text.c0000644000175000017500000004150012304150543015630 00000000000000/* * BabelTrace - Common Trace Format (CTF) * * CTF Text Format registration. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define NSEC_PER_SEC 1000000000ULL int opt_all_field_names, opt_scope_field_names, opt_header_field_names, opt_context_field_names, opt_payload_field_names, opt_all_fields, opt_trace_field, opt_trace_domain_field, opt_trace_procname_field, opt_trace_vpid_field, opt_trace_hostname_field, opt_trace_default_fields = 1, opt_loglevel_field, opt_emf_field, opt_callsite_field, opt_delta_field = 1; enum field_item { ITEM_SCOPE, ITEM_HEADER, ITEM_CONTEXT, ITEM_PAYLOAD, }; enum bt_loglevel { BT_LOGLEVEL_EMERG = 0, BT_LOGLEVEL_ALERT = 1, BT_LOGLEVEL_CRIT = 2, BT_LOGLEVEL_ERR = 3, BT_LOGLEVEL_WARNING = 4, BT_LOGLEVEL_NOTICE = 5, BT_LOGLEVEL_INFO = 6, BT_LOGLEVEL_DEBUG_SYSTEM = 7, BT_LOGLEVEL_DEBUG_PROGRAM = 8, BT_LOGLEVEL_DEBUG_PROCESS = 9, BT_LOGLEVEL_DEBUG_MODULE = 10, BT_LOGLEVEL_DEBUG_UNIT = 11, BT_LOGLEVEL_DEBUG_FUNCTION = 12, BT_LOGLEVEL_DEBUG_LINE = 13, BT_LOGLEVEL_DEBUG = 14, }; static struct bt_trace_descriptor *ctf_text_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); static int ctf_text_close_trace(struct bt_trace_descriptor *descriptor); static rw_dispatch write_dispatch_table[] = { [ CTF_TYPE_INTEGER ] = ctf_text_integer_write, [ CTF_TYPE_FLOAT ] = ctf_text_float_write, [ CTF_TYPE_ENUM ] = ctf_text_enum_write, [ CTF_TYPE_STRING ] = ctf_text_string_write, [ CTF_TYPE_STRUCT ] = ctf_text_struct_write, [ CTF_TYPE_VARIANT ] = ctf_text_variant_write, [ CTF_TYPE_ARRAY ] = ctf_text_array_write, [ CTF_TYPE_SEQUENCE ] = ctf_text_sequence_write, }; static struct bt_format ctf_text_format = { .open_trace = ctf_text_open_trace, .close_trace = ctf_text_close_trace, }; static GQuark Q_STREAM_PACKET_CONTEXT_TIMESTAMP_BEGIN, Q_STREAM_PACKET_CONTEXT_TIMESTAMP_END, Q_STREAM_PACKET_CONTEXT_EVENTS_DISCARDED, Q_STREAM_PACKET_CONTEXT_CONTENT_SIZE, Q_STREAM_PACKET_CONTEXT_PACKET_SIZE; static void __attribute__((constructor)) init_quarks(void) { Q_STREAM_PACKET_CONTEXT_TIMESTAMP_BEGIN = g_quark_from_static_string("stream.packet.context.timestamp_begin"); Q_STREAM_PACKET_CONTEXT_TIMESTAMP_END = g_quark_from_static_string("stream.packet.context.timestamp_end"); Q_STREAM_PACKET_CONTEXT_EVENTS_DISCARDED = g_quark_from_static_string("stream.packet.context.events_discarded"); Q_STREAM_PACKET_CONTEXT_CONTENT_SIZE = g_quark_from_static_string("stream.packet.context.content_size"); Q_STREAM_PACKET_CONTEXT_PACKET_SIZE = g_quark_from_static_string("stream.packet.context.packet_size"); } static struct ctf_callsite_dups *ctf_trace_callsite_lookup(struct ctf_trace *trace, GQuark callsite_name) { return g_hash_table_lookup(trace->callsites, (gpointer) (unsigned long) callsite_name); } int print_field(struct bt_definition *definition) { /* Print all fields in verbose mode */ if (babeltrace_verbose) return 1; /* Filter out part of the packet context */ if (definition->path == Q_STREAM_PACKET_CONTEXT_TIMESTAMP_BEGIN) return 0; if (definition->path == Q_STREAM_PACKET_CONTEXT_TIMESTAMP_END) return 0; if (definition->path == Q_STREAM_PACKET_CONTEXT_EVENTS_DISCARDED) return 0; if (definition->path == Q_STREAM_PACKET_CONTEXT_CONTENT_SIZE) return 0; if (definition->path == Q_STREAM_PACKET_CONTEXT_PACKET_SIZE) return 0; return 1; } static void set_field_names_print(struct ctf_text_stream_pos *pos, enum field_item item) { switch (item) { case ITEM_SCOPE: if (opt_all_field_names || opt_scope_field_names) pos->print_names = 1; else pos->print_names = 0; break; case ITEM_HEADER: if (opt_all_field_names || opt_header_field_names) pos->print_names = 1; else pos->print_names = 0; break; case ITEM_CONTEXT: if (opt_all_field_names || opt_context_field_names) pos->print_names = 1; else pos->print_names = 0; break; case ITEM_PAYLOAD: if (opt_all_field_names || opt_payload_field_names) pos->print_names = 1; else pos->print_names = 0; break; default: assert(0); } } static const char *print_loglevel(int value) { switch (value) { case -1: return ""; case BT_LOGLEVEL_EMERG: return "TRACE_EMERG"; case BT_LOGLEVEL_ALERT: return "TRACE_ALERT"; case BT_LOGLEVEL_CRIT: return "TRACE_CRIT"; case BT_LOGLEVEL_ERR: return "TRACE_ERR"; case BT_LOGLEVEL_WARNING: return "TRACE_WARNING"; case BT_LOGLEVEL_NOTICE: return "TRACE_NOTICE"; case BT_LOGLEVEL_INFO: return "TRACE_INFO"; case BT_LOGLEVEL_DEBUG_SYSTEM: return "TRACE_DEBUG_SYSTEM"; case BT_LOGLEVEL_DEBUG_PROGRAM: return "TRACE_DEBUG_PROGRAM"; case BT_LOGLEVEL_DEBUG_PROCESS: return "TRACE_DEBUG_PROCESS"; case BT_LOGLEVEL_DEBUG_MODULE: return "TRACE_DEBUG_MODULE"; case BT_LOGLEVEL_DEBUG_UNIT: return "TRACE_DEBUG_UNIT"; case BT_LOGLEVEL_DEBUG_FUNCTION: return "TRACE_DEBUG_FUNCTION"; case BT_LOGLEVEL_DEBUG_LINE: return "TRACE_DEBUG_LINE"; case BT_LOGLEVEL_DEBUG: return "TRACE_DEBUG"; default: return "<>"; } } static int ctf_text_write_event(struct bt_stream_pos *ppos, struct ctf_stream_definition *stream) { struct ctf_text_stream_pos *pos = container_of(ppos, struct ctf_text_stream_pos, parent); struct ctf_stream_declaration *stream_class = stream->stream_class; int field_nr_saved; struct ctf_event_declaration *event_class; struct ctf_event_definition *event; uint64_t id; int ret; int dom_print = 0; id = stream->event_id; if (id >= stream_class->events_by_id->len) { fprintf(stderr, "[error] Event id %" PRIu64 " is outside range.\n", id); return -EINVAL; } event = g_ptr_array_index(stream->events_by_id, id); if (!event) { fprintf(stderr, "[error] Event id %" PRIu64 " is unknown.\n", id); return -EINVAL; } event_class = g_ptr_array_index(stream_class->events_by_id, id); if (!event_class) { fprintf(stderr, "[error] Event class id %" PRIu64 " is unknown.\n", id); return -EINVAL; } if (stream->has_timestamp) { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) fprintf(pos->fp, "timestamp = "); else fprintf(pos->fp, "["); if (opt_clock_cycles) { ctf_print_timestamp(pos->fp, stream, stream->cycles_timestamp); } else { ctf_print_timestamp(pos->fp, stream, stream->real_timestamp); } if (!pos->print_names) fprintf(pos->fp, "]"); if (pos->print_names) fprintf(pos->fp, ", "); else fprintf(pos->fp, " "); } if (opt_delta_field && stream->has_timestamp) { uint64_t delta, delta_sec, delta_nsec; set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) fprintf(pos->fp, "delta = "); else fprintf(pos->fp, "("); if (pos->last_real_timestamp != -1ULL) { delta = stream->real_timestamp - pos->last_real_timestamp; delta_sec = delta / NSEC_PER_SEC; delta_nsec = delta % NSEC_PER_SEC; fprintf(pos->fp, "+%" PRIu64 ".%09" PRIu64, delta_sec, delta_nsec); } else { fprintf(pos->fp, "+?.?????????"); } if (!pos->print_names) fprintf(pos->fp, ")"); if (pos->print_names) fprintf(pos->fp, ", "); else fprintf(pos->fp, " "); pos->last_real_timestamp = stream->real_timestamp; pos->last_cycles_timestamp = stream->cycles_timestamp; } if ((opt_trace_field || opt_all_fields) && stream_class->trace->parent.path[0] != '\0') { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "trace = "); } fprintf(pos->fp, "%s", stream_class->trace->parent.path); if (pos->print_names) fprintf(pos->fp, ", "); else fprintf(pos->fp, " "); } if ((opt_trace_hostname_field || opt_all_fields || opt_trace_default_fields) && stream_class->trace->env.hostname[0] != '\0') { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "trace:hostname = "); } fprintf(pos->fp, "%s", stream_class->trace->env.hostname); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_trace_domain_field || opt_all_fields) && stream_class->trace->env.domain[0] != '\0') { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "trace:domain = "); } fprintf(pos->fp, "%s", stream_class->trace->env.domain); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_trace_procname_field || opt_all_fields || opt_trace_default_fields) && stream_class->trace->env.procname[0] != '\0') { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "trace:procname = "); } else if (dom_print) { fprintf(pos->fp, ":"); } fprintf(pos->fp, "%s", stream_class->trace->env.procname); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_trace_vpid_field || opt_all_fields || opt_trace_default_fields) && stream_class->trace->env.vpid != -1) { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "trace:vpid = "); } else if (dom_print) { fprintf(pos->fp, ":"); } fprintf(pos->fp, "%d", stream_class->trace->env.vpid); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_loglevel_field || opt_all_fields) && event_class->loglevel != -1) { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "loglevel = "); } else if (dom_print) { fprintf(pos->fp, ":"); } fprintf(pos->fp, "%s (%d)", print_loglevel(event_class->loglevel), event_class->loglevel); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_emf_field || opt_all_fields) && event_class->model_emf_uri) { set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "model.emf.uri = "); } else if (dom_print) { fprintf(pos->fp, ":"); } fprintf(pos->fp, "\"%s\"", g_quark_to_string(event_class->model_emf_uri)); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } if ((opt_callsite_field || opt_all_fields)) { struct ctf_callsite_dups *cs_dups; struct ctf_callsite *callsite; cs_dups = ctf_trace_callsite_lookup(stream_class->trace, event_class->name); if (cs_dups) { int i = 0; set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) { fprintf(pos->fp, "callsite = "); } else if (dom_print) { fprintf(pos->fp, ":"); } fprintf(pos->fp, "["); bt_list_for_each_entry(callsite, &cs_dups->head, node) { if (i != 0) fprintf(pos->fp, ","); if (CTF_CALLSITE_FIELD_IS_SET(callsite, ip)) { fprintf(pos->fp, "%s@0x%" PRIx64 ":%s:%" PRIu64 "", callsite->func, callsite->ip, callsite->file, callsite->line); } else { fprintf(pos->fp, "%s:%s:%" PRIu64 "", callsite->func, callsite->file, callsite->line); } i++; } fprintf(pos->fp, "]"); if (pos->print_names) fprintf(pos->fp, ", "); dom_print = 1; } } if (dom_print && !pos->print_names) fprintf(pos->fp, " "); set_field_names_print(pos, ITEM_HEADER); if (pos->print_names) fprintf(pos->fp, "name = "); fprintf(pos->fp, "%s", g_quark_to_string(event_class->name)); if (pos->print_names) pos->field_nr++; else fprintf(pos->fp, ":"); /* print cpuid field from packet context */ if (stream->stream_packet_context) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); set_field_names_print(pos, ITEM_SCOPE); if (pos->print_names) fprintf(pos->fp, " stream.packet.context ="); field_nr_saved = pos->field_nr; pos->field_nr = 0; set_field_names_print(pos, ITEM_CONTEXT); ret = generic_rw(ppos, &stream->stream_packet_context->p); if (ret) goto error; pos->field_nr = field_nr_saved; } /* Only show the event header in verbose mode */ if (babeltrace_verbose && stream->stream_event_header) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); set_field_names_print(pos, ITEM_SCOPE); if (pos->print_names) fprintf(pos->fp, " stream.event.header ="); field_nr_saved = pos->field_nr; pos->field_nr = 0; set_field_names_print(pos, ITEM_CONTEXT); ret = generic_rw(ppos, &stream->stream_event_header->p); if (ret) goto error; pos->field_nr = field_nr_saved; } /* print stream-declared event context */ if (stream->stream_event_context) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); set_field_names_print(pos, ITEM_SCOPE); if (pos->print_names) fprintf(pos->fp, " stream.event.context ="); field_nr_saved = pos->field_nr; pos->field_nr = 0; set_field_names_print(pos, ITEM_CONTEXT); ret = generic_rw(ppos, &stream->stream_event_context->p); if (ret) goto error; pos->field_nr = field_nr_saved; } /* print event-declared event context */ if (event->event_context) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); set_field_names_print(pos, ITEM_SCOPE); if (pos->print_names) fprintf(pos->fp, " event.context ="); field_nr_saved = pos->field_nr; pos->field_nr = 0; set_field_names_print(pos, ITEM_CONTEXT); ret = generic_rw(ppos, &event->event_context->p); if (ret) goto error; pos->field_nr = field_nr_saved; } /* Read and print event payload */ if (event->event_fields) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); set_field_names_print(pos, ITEM_SCOPE); if (pos->print_names) fprintf(pos->fp, " event.fields ="); field_nr_saved = pos->field_nr; pos->field_nr = 0; set_field_names_print(pos, ITEM_PAYLOAD); ret = generic_rw(ppos, &event->event_fields->p); if (ret) goto error; pos->field_nr = field_nr_saved; } /* newline */ fprintf(pos->fp, "\n"); pos->field_nr = 0; return 0; error: fprintf(stderr, "[error] Unexpected end of stream. Either the trace data stream is corrupted or metadata description does not match data layout.\n"); return ret; } static struct bt_trace_descriptor *ctf_text_open_trace(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp) { struct ctf_text_stream_pos *pos; FILE *fp; pos = g_new0(struct ctf_text_stream_pos, 1); pos->last_real_timestamp = -1ULL; pos->last_cycles_timestamp = -1ULL; switch (flags & O_ACCMODE) { case O_RDWR: if (!path) fp = stdout; else fp = fopen(path, "w"); if (!fp) goto error; pos->fp = fp; pos->parent.rw_table = write_dispatch_table; pos->parent.event_cb = ctf_text_write_event; pos->parent.trace = &pos->trace_descriptor; pos->print_names = 0; babeltrace_ctf_console_output++; break; case O_RDONLY: default: fprintf(stderr, "[error] Incorrect open flags.\n"); goto error; } return &pos->trace_descriptor; error: g_free(pos); return NULL; } static int ctf_text_close_trace(struct bt_trace_descriptor *td) { int ret; struct ctf_text_stream_pos *pos = container_of(td, struct ctf_text_stream_pos, trace_descriptor); babeltrace_ctf_console_output--; if (pos->fp != stdout) { ret = fclose(pos->fp); if (ret) { perror("Error on fclose"); return -1; } } g_free(pos); return 0; } static void __attribute__((constructor)) ctf_text_init(void) { int ret; ctf_text_format.name = g_quark_from_static_string("text"); ret = bt_register_format(&ctf_text_format); assert(!ret); } static void __attribute__((destructor)) ctf_text_exit(void) { bt_unregister_format(&ctf_text_format); } babeltrace-1.2.1/formats/ctf-text/types/0000755000175000017500000000000012306621157015160 500000000000000babeltrace-1.2.1/formats/ctf-text/types/array.c0000644000175000017500000000550012272477052016367 00000000000000/* * Common Trace Format * * Array format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include int ctf_text_array_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); struct definition_array *array_definition = container_of(definition, struct definition_array, p); struct declaration_array *array_declaration = array_definition->declaration; struct bt_declaration *elem = array_declaration->elem; int field_nr_saved; int ret = 0; if (!print_field(definition)) return 0; if (!pos->dummy) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); } if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (!(integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT)) { pos->string = array_definition->string; g_string_assign(array_definition->string, ""); ret = bt_array_rw(ppos, definition); pos->string = NULL; } fprintf(pos->fp, "\"%s\"", array_definition->string->str); return ret; } } if (!pos->dummy) { fprintf(pos->fp, "["); pos->depth++; } field_nr_saved = pos->field_nr; pos->field_nr = 0; ret = bt_array_rw(ppos, definition); if (!pos->dummy) { pos->depth--; fprintf(pos->fp, " ]"); } pos->field_nr = field_nr_saved; return ret; } babeltrace-1.2.1/formats/ctf-text/types/variant.c0000644000175000017500000000402412272477052016715 00000000000000/* * Common Trace Format * * Variant format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include int ctf_text_variant_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); int field_nr_saved; int ret; if (!print_field(definition)) return 0; if (!pos->dummy) { if (pos->depth >= 0) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); fprintf(pos->fp, "{"); } pos->depth++; } field_nr_saved = pos->field_nr; pos->field_nr = 0; ret = bt_variant_rw(ppos, definition); if (!pos->dummy) { pos->depth--; if (pos->depth >= 0) { fprintf(pos->fp, " }"); } } pos->field_nr = field_nr_saved; return ret; } babeltrace-1.2.1/formats/ctf-text/types/Makefile.am0000644000175000017500000000045011721504112017122 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-text-types.la libctf_text_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c libctf_text_types_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la babeltrace-1.2.1/formats/ctf-text/types/sequence.c0000644000175000017500000000555212272477052017070 00000000000000/* * Common Trace Format * * Sequence format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include int ctf_text_sequence_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); struct definition_sequence *sequence_definition = container_of(definition, struct definition_sequence, p); struct declaration_sequence *sequence_declaration = sequence_definition->declaration; struct bt_declaration *elem = sequence_declaration->elem; int field_nr_saved; int ret = 0; if (!print_field(definition)) return 0; if (!pos->dummy) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); } if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (!(integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT)) { pos->string = sequence_definition->string; g_string_assign(sequence_definition->string, ""); ret = bt_sequence_rw(ppos, definition); pos->string = NULL; } fprintf(pos->fp, "\"%s\"", sequence_definition->string->str); return ret; } } if (!pos->dummy) { fprintf(pos->fp, "["); pos->depth++; } field_nr_saved = pos->field_nr; pos->field_nr = 0; ret = bt_sequence_rw(ppos, definition); if (!pos->dummy) { pos->depth--; fprintf(pos->fp, " ]"); } pos->field_nr = field_nr_saved; return ret; } babeltrace-1.2.1/formats/ctf-text/types/Makefile.in0000644000175000017500000004275312306621104017150 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = formats/ctf-text/types DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libctf_text_types_la_DEPENDENCIES = \ $(top_builddir)/lib/libbabeltrace.la am_libctf_text_types_la_OBJECTS = array.lo enum.lo float.lo integer.lo \ sequence.lo string.lo struct.lo variant.lo libctf_text_types_la_OBJECTS = $(am_libctf_text_types_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libctf_text_types_la_SOURCES) DIST_SOURCES = $(libctf_text_types_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libctf-text-types.la libctf_text_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c libctf_text_types_la_LIBADD = \ $(top_builddir)/lib/libbabeltrace.la all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign formats/ctf-text/types/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign formats/ctf-text/types/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libctf-text-types.la: $(libctf_text_types_la_OBJECTS) $(libctf_text_types_la_DEPENDENCIES) $(EXTRA_libctf_text_types_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libctf_text_types_la_OBJECTS) $(libctf_text_types_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enum.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/float.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sequence.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/string.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/struct.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/variant.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/formats/ctf-text/types/float.c0000644000175000017500000000361412272477052016362 00000000000000/* * Common Trace Format * * Floating point read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Reference: ISO C99 standard 5.2.4 */ #include #include int ctf_text_float_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); if (!print_field(definition)) return 0; if (pos->dummy) return 0; if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); fprintf(pos->fp, "%g", float_definition->value); return 0; } babeltrace-1.2.1/formats/ctf-text/types/integer.c0000644000175000017500000000700112272477052016704 00000000000000/* * Common Trace Format * * Integers read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include int ctf_text_integer_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_integer *integer_definition = container_of(definition, struct definition_integer, p); const struct declaration_integer *integer_declaration = integer_definition->declaration; struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); if (!print_field(definition)) return 0; if (pos->dummy) return 0; if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); if (pos->string && (integer_declaration->encoding == CTF_STRING_ASCII || integer_declaration->encoding == CTF_STRING_UTF8)) { if (!integer_declaration->signedness) { g_string_append_c(pos->string, (int) integer_definition->value._unsigned); } else { g_string_append_c(pos->string, (int) integer_definition->value._signed); } return 0; } switch (integer_declaration->base) { case 0: /* default */ case 10: if (!integer_declaration->signedness) { fprintf(pos->fp, "%" PRIu64, integer_definition->value._unsigned); } else { fprintf(pos->fp, "%" PRId64, integer_definition->value._signed); } break; case 2: { int bitnr; uint64_t v; if (!integer_declaration->signedness) v = integer_definition->value._unsigned; else v = (uint64_t) integer_definition->value._signed; fprintf(pos->fp, "0b"); v = _bt_piecewise_lshift(v, 64 - integer_declaration->len); for (bitnr = 0; bitnr < integer_declaration->len; bitnr++) { fprintf(pos->fp, "%u", (v & (1ULL << 63)) ? 1 : 0); v = _bt_piecewise_lshift(v, 1); } break; } case 8: { uint64_t v; if (!integer_declaration->signedness) v = integer_definition->value._unsigned; else v = (uint64_t) integer_definition->value._signed; fprintf(pos->fp, "0%" PRIo64, v); break; } case 16: { uint64_t v; if (!integer_declaration->signedness) v = integer_definition->value._unsigned; else v = (uint64_t) integer_definition->value._signed; fprintf(pos->fp, "0x%" PRIX64, v); break; } default: return -EINVAL; } return 0; } babeltrace-1.2.1/formats/ctf-text/types/struct.c0000644000175000017500000000405512272477052016601 00000000000000/* * Common Trace Format * * Structure format access functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include int ctf_text_struct_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); int field_nr_saved; int ret; if (!print_field(definition)) return 0; if (!pos->dummy) { if (pos->depth >= 0) { if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names && definition->name != 0) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); fprintf(pos->fp, "{"); } pos->depth++; } field_nr_saved = pos->field_nr; pos->field_nr = 0; ret = bt_struct_rw(ppos, definition); if (!pos->dummy) { pos->depth--; if (pos->depth >= 0) { fprintf(pos->fp, " }"); } } pos->field_nr = field_nr_saved; return ret; } babeltrace-1.2.1/formats/ctf-text/types/string.c0000644000175000017500000000372112272477052016562 00000000000000/* * Common Trace Format * * Strings read/write functions. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include /* C99 limits */ #include int ctf_text_string_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_string *string_definition = container_of(definition, struct definition_string, p); struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); assert(string_definition->value != NULL); if (!print_field(definition)) return 0; if (pos->dummy) return 0; if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); fprintf(pos->fp, "\"%s\"", string_definition->value); return 0; } babeltrace-1.2.1/formats/ctf-text/types/enum.c0000644000175000017500000000506712272477052016225 00000000000000/* * Common Trace Format * * Enumeration mapping strings (quarks) from/to integers. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include int ctf_text_enum_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_enum *enum_definition = container_of(definition, struct definition_enum, p); struct definition_integer *integer_definition = enum_definition->integer; struct ctf_text_stream_pos *pos = ctf_text_pos(ppos); GArray *qs; int ret; int field_nr_saved; if (!print_field(definition)) return 0; if (pos->dummy) return 0; if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); if (pos->print_names) fprintf(pos->fp, "%s = ", rem_(g_quark_to_string(definition->name))); field_nr_saved = pos->field_nr; pos->field_nr = 0; fprintf(pos->fp, "("); pos->depth++; qs = enum_definition->value; if (qs) { int i; for (i = 0; i < qs->len; i++) { GQuark q = g_array_index(qs, GQuark, i); const char *str = g_quark_to_string(q); assert(str); if (pos->field_nr++ != 0) fprintf(pos->fp, ","); fprintf(pos->fp, " "); fprintf(pos->fp, "%s", str); } } else { fprintf(pos->fp, " "); } pos->field_nr = 0; fprintf(pos->fp, " :"); ret = generic_rw(ppos, &integer_definition->p); pos->depth--; fprintf(pos->fp, " )"); pos->field_nr = field_nr_saved; return ret; } babeltrace-1.2.1/doc/0000755000175000017500000000000012306621160011342 500000000000000babeltrace-1.2.1/doc/Makefile.am0000644000175000017500000000016412304150543013317 00000000000000dist_man_MANS = babeltrace.1 babeltrace-log.1 dist_doc_DATA = API.txt lttng-live.txt EXTRA_DIST = development.txt babeltrace-1.2.1/doc/Makefile.in0000644000175000017500000004050312306621104013327 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = doc DIST_COMMON = $(dist_doc_DATA) $(dist_man_MANS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" NROFF = nroff MANS = $(dist_man_MANS) DATA = $(dist_doc_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ dist_man_MANS = babeltrace.1 babeltrace-log.1 dist_doc_DATA = API.txt lttng-live.txt EXTRA_DIST = development.txt all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(MANS) $(DATA) installdirs: for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_docDATA install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_docDATA uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dist_docDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am uninstall uninstall-am uninstall-dist_docDATA \ uninstall-man uninstall-man1 # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/doc/babeltrace-log.10000644000175000017500000000325311743353031014215 00000000000000.TH "BABELTRACE-LOG" "1" "February 16, 2012" "" "" .SH "NAME" babeltrace-log \(em Babeltrace Log Converter .SH "SYNOPSIS" .PP .nf babeltrace-log [OPTIONS] OUTPUT .fi .SH "DESCRIPTION" .PP Convert for a text log (read from standard input) to CTF. .PP This program follow the usual GNU command line syntax with long options starting with two dashes. Below is a summary of the available options. .PP .TP .BR "OUTPUT" Output trace path .TP .BR "-t" With timestamps (format: [sec.usec] string\\n) .TP .SH "SEE ALSO" .PP babeltrace(1), lttng(1), lttng-ust(3), lttng-sessiond(8) .PP .SH "BUGS" .PP No knows bugs at this point. If you encounter any issues or usability problem, please report it on our mailing list to help improve this project. .SH "CREDITS" Babeltrace and the babeltrace library are distributed under the MIT license. See the files LICENSE and mit-license.txt for details. .PP A Web site is available at http://www.efficios.com/babeltrace for more information on Babeltrace and the Common Trace Format. See http://lttng.org for more information on the LTTng project. .PP Mailing list for support and development: . .PP You can find us on IRC server irc.oftc.net (OFTC) in #lttng. .PP .SH "THANKS" Thanks to the Linux Foundation and Ericsson for funding part of this work. Thanks to the Multicore Association Tool Infrastructure Working Group for their active role in the creation of the Common Trace Format. .PP .SH "AUTHORS" .PP Babeltrace was originally written by Mathieu Desnoyers, with additional contributions from various other people. It is currently maintained by Mathieu Desnoyers . .PP babeltrace-1.2.1/doc/API.txt0000644000175000017500000002622312075630002012437 00000000000000Babeltrace API documentation Babeltrace provides trace read and write libraries, as well as a trace converter. A plugin can be created for any trace format to allow its conversion to/from another trace format. The main format expected to be converted to/from is the Common Trace Format (CTF). The latest version of the CTF specification can be found at: git tree: git://git.efficios.com/ctf.git gitweb: http://git.efficios.com/?p=ctf.git This document describes the main concepts to use the libbabeltrace, which exposes the Babeltrace trace reading capability. TERMINOLOGY ¯¯¯¯¯¯¯¯¯¯¯ * A "callback" is a reference to a piece of executable code (such as a function) that is passed as an argument to another piece of code (like another function). * A "context" is a structure that represents an object in which a trace collection is opened. * An "iterator" is a structure that enables the user to traverse a trace. * A "trace handle" is a unique identifier representing a trace file. It allows the user to manipulate a trace directly. * The "declaration" of a field or an event, is the structure which contains the representaion of an object as declared in the metadata. All the declarations of all events and fields can be accessed as soon as the trace is open, but of course they contain no trace data, just the layout. * The "definition" of a field or an event is the structure in which the actual trace data is contained. When we read an event in the trace, we access its definition and we can access all the field definitions contained in all the scopes of this event to the get the actual data. * "Scopes" allow specifying the level at which the information about the current event must be fetched: event header, event payload, event context, stream context. Compound-type (arrays, structures, sequences and variants) fields are relative scopes which contain fields. USAGE ¯¯¯¯¯¯ Context: In order to use libbabeltrace to read a trace, the first step is to create a context structure and to add a trace to it. This is done using the bt_context_create() and bt_context_add_trace() functions. As long as this context structure is allocated and the trace is valid, the trace can be manipulated by the library. The context can be destroyed by calling one more bt_context_put() than bt_context_get(), functions which respectively decrement and increment the refcount of the context. These functions ensures that the context won't be destroyed when it is in use. Once a trace is added to the context, it can be read and seeked using iterators and callbacks. Iterator: An iterator can be created using the bt_iter_create() function. As of now, only ctf iterator are supported. These are used to traverse a ctf-formatted trace. Such iterators can be created with bt_ctf_iter_create(). While creating an iterator, a begin and an end position may be specified. To do so, one or two struct bt_iter_pos must be passed. Such struct have two attributes: type and u. "type" is the seek type, can be either: BT_SEEK_TIME BT_SEEK_RESTORE BT_SEEK_CUR BT_SEEK_BEGIN BT_SEEK_END and "u" is a union of the seek time (if using BT_SEEK_TIME) and the restore position (if using BT_SEEK_RESTORE). Once the iterator is created, various functions become available. We have bt_ctf_iter_read_event() which returns the ctf event of the trace where the iterator is set. There is also bt_ctf_iter_destroy() which frees the iterator. Note that only one iterator can be created in a context at the same time. If more than one iterator is being created for the same context, the second creation will return NULL. The previous iterator must be destroyed before creation of the new iterator. In the future, creation of multiples iterators will be allowed. The bt_ctf_iter_read_event_flags() function has the same behaviour as bt_ctf_iter_read_event() but takes an additionnal flag pointer. This flag is used to inform the user if a special condition occured while reading the event. As of now, only the BT_ITER_LOST_EVENTS is handled, it informs the user that some events were discarded by the tracer. To get the number of events lost immediately prior to the last event read, the user can call the bt_ctf_get_lost_events_count() function. Finally, we have the bt_ctf_get_iter() function which returns a struct bt_iter with which the iterator can be moved using one of these functions: bt_iter_next(), moves the iterator to the next event bt_iter_set_pos(), moves the iterator to the specified position To get the current position (struct bt_iter_pos) of the iterator, the function bt_iter_get_pos() must be used. To create an arbitrary position based on a specific time, bt_iter_create_time_pos() is the function to use. The bt_iter_pos structure returned by these two functions must be freed with bt_iter_free_pos() after use. CTF Event: A CTF event is obtained from an iterator via the bt_ctf_iter_read_event() function or via the call_data parameter of a callback. To read the data of a CTF event : * bt_ctf_event_name() returns the name of the event; * bt_ctf_get_timestamp() returns the timestamp of the event offsetted with the system clock source (in ns); * bt_ctf_get_cycles() returns the timestamp of the event as written in the packet (in cycles). The payload of an event is divided in various scopes depending on the type of information. There are six top-level scopes (defined in the bt_ctf_scope enum) which can be accessed by the bt_ctf_get_top_level_scope() function : BT_TRACE_PACKET_HEADER = 0, BT_STREAM_PACKET_CONTEXT = 1, BT_STREAM_EVENT_HEADER = 2, BT_STREAM_EVENT_CONTEXT = 3, BT_EVENT_CONTEXT = 4, BT_EVENT_FIELDS = 5. In order to access a field or a field list, the user needs to pass a scope as argument, this scope can be a top-level scope or a scope relative to an arbitrary field in the case of compound types (array, sequence, structure or variant) For more information on each scope, see the CTF specifications. The bt_ctf_get_field_list() function gives access to the list of fields in the current event. The bt_ctf_get_field() function gives acces to of a specific field of an event. The bt_ctf_get_event_decl_list() and bt_ctf_get_decl_fields() functions give respectively access to the list of the events declared in a trace and the list of the fields declared in an event. Once the field is obtained, we can obtain its name and type using the bt_ctf_field_name() and bt_ctf_field_type() functions respectively. The possible types are defined in the ctf_type_id enum: CTF_TYPE_UNKNOWN = 0, CTF_TYPE_INTEGER, CTF_TYPE_FLOAT, CTF_TYPE_ENUM, CTF_TYPE_STRING, CTF_TYPE_STRUCT, CTF_TYPE_UNTAGGED_VARIANT, CTF_TYPE_VARIANT, CTF_TYPE_ARRAY, CTF_TYPE_SEQUENCE, NR_CTF_TYPES. Depending on the field type, we can get informations about the field with the following functions: * bt_ctf_get_index() return the element at the index position of an array of a sequence; * bt_ctf_get_array_len() return the length of an array; * bt_ctf_get_int_signedness() return the signedness of an integer; * bt_ctf_get_int_base() return the base of an integer; * bt_ctf_get_int_byte_order() return the byte order of an integer; * bt_ctf_get_int_len() return the size in bits of an integer; * bt_ctf_get_encoding() return the encoding of an int or a string defined in the ctf_string_encoding enum: CTF_STRING_NONE = 0, CTF_STRING_UTF8, CTF_STRING_ASCII, CTF_STRING_UNKNOWN. All of these functions require a field declaration as parameter, depending on the source type of data (struct definition* or struct bt_ctf_field_decl*), the user might have to call bt_ctf_get_decl_from_def() or bt_ctf_get_decl_from_field_decl(). The following functions give access to the value associated with a field defintion: * bt_ctf_get_uint64(); * bt_ctf_get_int64(); * bt_ctf_get_char_array(); * bt_ctf_get_string(); * bt_ctf_get_enum_int(); * bt_ctf_get_enum_str(). If the field does not exist or is not of the type requested, the value returned with these four functions is undefined. To check if an error occured, use the bt_ctf_field_get_error() function after accessing a field. If no error occured, the function will return 0. It is also possible to access the declaration fields, the same way as the definition ones. bt_ctf_get_event_decl_list() sets a list to an array of bt_ctf_event_decl pointers and bt_ctf_get_event_decl_fields() sets a list to an array of bt_ctf_field_decl pointers. From the first type, the name of the event can be obtained with bt_ctf_get_decl_event_name(). For the second type, the field decl name is obtained with bt_ctf_get_decl_field_name(). The declaration functions allow the user to list the events, fields and contexts fields enabled in the trace once it is opened, whereas the definition functions apply on the current event being read. Callback: The iterator allow the user to read the trace, in order to access the events and fields, the user can either call the functions listed previously on each event, or register callbacks functions that are called when specific (or all) events are read. This is done with the bt_ctf_iter_add_callback() function. It requires a valid ctf iterator as the first argument. Here are all arguments: iter: trace collection iterator (input) event: event to target. 0 for all events. private_data: private data pointer to pass to the callback flags: specific flags controlling the behavior of this callback (or'd). callback: function pointer to call depends: struct bt_dependency detailing the required computation results. Ends with 0. weak_depends: struct bt_dependency detailing the optional computation results that can be optionally consumed by this callback. provides: struct bt_dependency detailing the computation results provided by this callback. Ends with 0. "depends", "weak_depends" and "provides" memory is handled by the babeltrace library after this call succeeds or fails. These objects can still be used by the caller until the babeltrace iterator is destroyed, but they belong to the babeltrace library. As of now the flags and dependencies are not used, the callbacks are processed in FIFO order. Note: once implemented, the dependency graph will be calculated when bt_ctf_iter_read_event() is executed after a bt_ctf_iter_add_callback(). It is valid to create/add callbacks/read/add more callbacks/read some more. The callback function passed to bt_ctf_iter_add_callback() must return a bt_cb_ret value: BT_CB_OK = 0, BT_CB_OK_STOP = 1, BT_CB_ERROR_STOP = 2, BT_CB_ERROR_CONTINUE = 3. Trace handle: When a trace is added to a context, bt_context_add_trace() returns a trace handle id. This id is associated with its corresponding trace handle. With that id, it is possible to manipulate directly the trace. * bt_trace_handle_get_path() -> returns the path of the trace handle (path to the trace). * bt_trace_handle_get_timestamp_begin() * bt_trace_handle_get_timestamp_end() -> return the creation/destruction timestamps (in ns or cycles depending on the type specified) of the buffers of a trace. * bt_ctf_event_get_handle_id() -> returns the handle id associated with an event. For more information on CTF, see the CTF documentation. babeltrace-1.2.1/doc/development.txt0000644000175000017500000000151612075630002014346 00000000000000This document describes some principles that should be respected when developing in Babeltrace. Memory usage : Since Babeltrace exports a library, we need to make sure that all allocated memory is freed, we do not want any memory leaks. Since Babeltrace uses the glib, it is necessary to assist a little valgrind when trying to identify memory leaks. libpopt has issues with inconsistency between versions. Namely, libpopt 0.16 allocates memory for the string returned by poptgetArg(), but not libpopt 0.13. Therefore, we are providing a warning suppression file that covers this case in the extras/ directory of the source code. So the proper invocation of Babeltrace with Valgrind is : G_SLICE=always-malloc G_DEBUG=gc-friendly \ valgrind --leak-check=full \ --suppressions=path_to_babeltrace_src/extras/valgrind/popt.supp \ babeltrace babeltrace-1.2.1/doc/babeltrace.10000644000175000017500000000634012301702256013434 00000000000000.TH "BABELTRACE" "1" "February 6, 2012" "" "" .SH "NAME" babeltrace \(em Babeltrace Trace Viewer and Converter .SH "SYNOPSIS" .PP .nf babeltrace [OPTIONS] FILE... .fi .SH "DESCRIPTION" .PP Babeltrace is a trace viewer and converter reading and writing the Common Trace Format (CTF). Its main use is to pretty-print CTF traces into a human-readable text output ordered by time. .PP This program follow the usual GNU command line syntax with long options starting with two dashes. Below is a summary of the available options. .PP .TP .BR "FILE" Input trace FILE(s) or directory(ies) .TP .BR "-w, --output OUTPUT" Output trace path (default: stdout) .TP .BR "-i, --input-format FORMAT" Input trace format (default: ctf). CTF is currently the only supported input format. .TP .BR "-o, --output-format FORMAT" Output trace format (default: text) .TP .BR "-h, --help" This help message .TP .BR "-l, --list" List available formats .TP .BR "-v, --verbose" Verbose mode (or set BABELTRACE_VERBOSE environment variable) .TP .BR "-d, --debug" Debug mode (or set BABELTRACE_DEBUG environment variable) .TP .BR "--no-delta" Do not print time delta between consecutive events .TP .BR "-n, --names name1<,name2,...>" Print field names: (payload OR args OR arg), none, all, scope, header, (context OR ctx), (default: payload,context). .TP .BR "-f, --fields name1<,name2,...>" Print additional fields: all, trace, trace:hostname, trace:domain, trace:procname, trace:vpid, loglevel. .TP .BR "--clock-raw" Disregard internal clock offset (use raw value) .TP .BR "--clock-offset seconds" Clock offset in seconds .TP .BR "--clock-seconds" Print the timestamps as [sec.ns] (default is: [hh:mm:ss.ns]) .TP .BR "--clock-date" Print clock date .TP .BR "--clock-gmt" Print clock in GMT time zone (default: local time zone) .TP .fi Formats available: ctf, dummy, text. .SH "ENVIRONMENT VARIABLES" .PP Note that all command line options will override environmenal variables. .PP .PP .IP "BABELTRACE_VERBOSE" Activate verbose Babeltrace output. .PP .IP "BABELTRACE_DEBUG" Activate debug Babeltrace output. .SH "SEE ALSO" .PP babeltrace-log(1), lttng(1), lttng-ust(3), lttng-sessiond(8) .PP .SH "BUGS" .PP No known bugs at this point. If you encounter any issues or usability problem, please report it on our mailing list to help improve this project. .SH "CREDITS" Babeltrace and the babeltrace library are distributed under the MIT license. See the files LICENSE and mit-license.txt for details. .PP A Web site is available at http://www.efficios.com/babeltrace for more information on Babeltrace and the Common Trace Format. See http://lttng.org for more information on the LTTng project. .PP Mailing list for support and development: . .PP You can find us on IRC server irc.oftc.net (OFTC) in #lttng. .PP .SH "THANKS" Thanks to the Linux Foundation and Ericsson for funding part of this work. Thanks to the Multicore Association Tool Infrastructure Working Group for their active role in the creation of the Common Trace Format. .PP .SH "AUTHORS" .PP Babeltrace was originally written by Mathieu Desnoyers, with additional contributions from various other people. It is currently maintained by Mathieu Desnoyers . .PP babeltrace-1.2.1/doc/lttng-live.txt0000644000175000017500000000203212304150543014105 00000000000000LTTNG LIVE ---------- This is a brief howto for using the Babeltrace with LTTng live protocol. LTTng live allows the user to read a trace while it is running. In order to create a live LTTng session, please refer to the LTTng documentation (version >= 2.4). Once the session is created and Babeltrace is installed, you can list the sessions with : $ babeltrace -i lttng-live net:// The output should look like this : net://localhost/host/myhostname/mysessionname (timer = 1000000, 5 stream(s), 0 client(s) connected) It means that the session mysessionname on the host myhostname is currently streaming its data to the relayd on localhost. To attach to this session and start receiving the trace : $ babeltrace -i lttng-live net://localhost/host/myhostname/mysessionname You should now see trace data flowing in your console when events are produced. To report bugs, please use the same procedure as reporting bugs to Babeltrace, but don't forget to add the -v to the commands above to provide enough debug information. babeltrace-1.2.1/converter/0000755000175000017500000000000012306621157012612 500000000000000babeltrace-1.2.1/converter/babeltrace-log.c0000644000175000017500000002702112304150543015535 00000000000000/* * babeltrace-log.c * * BabelTrace - Convert Text Log to CTF * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Depends on glibc 2.10 for getline(). */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define NSEC_PER_USEC 1000UL #define NSEC_PER_MSEC 1000000UL #define NSEC_PER_SEC 1000000000ULL #define USEC_PER_SEC 1000000UL int babeltrace_debug, babeltrace_verbose; static char *s_outputname; static int s_timestamp; static int s_help; static unsigned char s_uuid[BABELTRACE_UUID_LEN]; /* Metadata format string */ static const char metadata_fmt[] = "/* CTF 1.8 */\n" "typealias integer { size = 8; align = 8; signed = false; } := uint8_t;\n" "typealias integer { size = 32; align = 32; signed = false; } := uint32_t;\n" "typealias integer { size = 64; align = 64; signed = false; } := uint64_t;\n" "\n" "trace {\n" " major = %u;\n" /* major (e.g. 0) */ " minor = %u;\n" /* minor (e.g. 1) */ " uuid = \"%s\";\n" /* UUID */ " byte_order = %s;\n" /* be or le */ " packet.header := struct {\n" " uint32_t magic;\n" " uint8_t uuid[16];\n" " };\n" "};\n" "\n" "stream {\n" " packet.context := struct {\n" " uint64_t content_size;\n" " uint64_t packet_size;\n" " };\n" "%s" /* Stream event header (opt.) */ "};\n" "\n" "event {\n" " name = string;\n" " fields := struct { string str; };\n" "};\n"; static const char metadata_stream_event_header_timestamp[] = " typealias integer { size = 64; align = 64; signed = false; } := uint64_t;\n" " event.header := struct {\n" " uint64_t timestamp;\n" " };\n"; static void print_metadata(FILE *fp) { char uuid_str[BABELTRACE_UUID_STR_LEN]; unsigned int major = 0, minor = 0; int ret; ret = sscanf(VERSION, "%u.%u", &major, &minor); if (ret != 2) fprintf(stderr, "[warning] Incorrect babeltrace version format\n."); babeltrace_uuid_unparse(s_uuid, uuid_str); fprintf(fp, metadata_fmt, major, minor, uuid_str, BYTE_ORDER == LITTLE_ENDIAN ? "le" : "be", s_timestamp ? metadata_stream_event_header_timestamp : ""); } static void write_packet_header(struct ctf_stream_pos *pos, unsigned char *uuid) { struct ctf_stream_pos dummy; /* magic */ ctf_dummy_pos(pos, &dummy); if (!ctf_align_pos(&dummy, sizeof(uint32_t) * CHAR_BIT)) goto error; if (!ctf_move_pos(&dummy, sizeof(uint32_t) * CHAR_BIT)) goto error; assert(!ctf_pos_packet(&dummy)); if (!ctf_align_pos(pos, sizeof(uint32_t) * CHAR_BIT)) goto error; *(uint32_t *) ctf_get_pos_addr(pos) = 0xC1FC1FC1; if (!ctf_move_pos(pos, sizeof(uint32_t) * CHAR_BIT)) goto error; /* uuid */ ctf_dummy_pos(pos, &dummy); if (!ctf_align_pos(&dummy, sizeof(uint8_t) * CHAR_BIT)) goto error; if (!ctf_move_pos(&dummy, 16 * CHAR_BIT)) goto error; assert(!ctf_pos_packet(&dummy)); if (!ctf_align_pos(pos, sizeof(uint8_t) * CHAR_BIT)) goto error; memcpy(ctf_get_pos_addr(pos), uuid, BABELTRACE_UUID_LEN); if (!ctf_move_pos(pos, BABELTRACE_UUID_LEN * CHAR_BIT)) goto error; return; error: fprintf(stderr, "[error] Out of packet bounds when writing packet header\n"); abort(); } static void write_packet_context(struct ctf_stream_pos *pos) { struct ctf_stream_pos dummy; /* content_size */ ctf_dummy_pos(pos, &dummy); if (!ctf_align_pos(&dummy, sizeof(uint64_t) * CHAR_BIT)) goto error; if (!ctf_move_pos(&dummy, sizeof(uint64_t) * CHAR_BIT)) goto error; assert(!ctf_pos_packet(&dummy)); if (!ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; *(uint64_t *) ctf_get_pos_addr(pos) = ~0ULL; /* Not known yet */ pos->content_size_loc = (uint64_t *) ctf_get_pos_addr(pos); if (!ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; /* packet_size */ ctf_dummy_pos(pos, &dummy); if (!ctf_align_pos(&dummy, sizeof(uint64_t) * CHAR_BIT)) goto error; if (!ctf_move_pos(&dummy, sizeof(uint64_t) * CHAR_BIT)) goto error; assert(!ctf_pos_packet(&dummy)); if (!ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; *(uint64_t *) ctf_get_pos_addr(pos) = pos->packet_size; if (!ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; return; error: fprintf(stderr, "[error] Out of packet bounds when writing packet context\n"); abort(); } static void write_event_header(struct ctf_stream_pos *pos, char *line, char **tline, size_t len, size_t *tlen, uint64_t *ts) { if (!s_timestamp) return; /* Only need to be executed on first pass (dummy) */ if (pos->dummy) { int has_timestamp = 0; unsigned long sec, usec, msec; unsigned int year, mon, mday, hour, min; /* Extract time from input line */ if (sscanf(line, "[%lu.%lu] ", &sec, &usec) == 2) { *ts = (uint64_t) sec * USEC_PER_SEC + (uint64_t) usec; /* * Default CTF clock has 1GHz frequency. Convert * from usec to nsec. */ *ts *= NSEC_PER_USEC; has_timestamp = 1; } else if (sscanf(line, "[%u-%u-%u %u:%u:%lu.%lu] ", &year, &mon, &mday, &hour, &min, &sec, &msec) == 7) { time_t ep_sec; struct tm ti; memset(&ti, 0, sizeof(ti)); ti.tm_year = year - 1900; /* from 1900 */ ti.tm_mon = mon - 1; /* 0 to 11 */ ti.tm_mday = mday; ti.tm_hour = hour; ti.tm_min = min; ti.tm_sec = sec; ep_sec = babeltrace_timegm(&ti); if (ep_sec != (time_t) -1) { *ts = (uint64_t) ep_sec * NSEC_PER_SEC + (uint64_t) msec * NSEC_PER_MSEC; } has_timestamp = 1; } if (has_timestamp) { *tline = strchr(line, ']'); assert(*tline); (*tline)++; if ((*tline)[0] == ' ') { (*tline)++; } *tlen = len + line - *tline; } } /* timestamp */ if (!ctf_align_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; if (!pos->dummy) *(uint64_t *) ctf_get_pos_addr(pos) = *ts; if (!ctf_move_pos(pos, sizeof(uint64_t) * CHAR_BIT)) goto error; return; error: fprintf(stderr, "[error] Out of packet bounds when writing event header\n"); abort(); } static void trace_string(char *line, struct ctf_stream_pos *pos, size_t len) { struct ctf_stream_pos dummy; int attempt = 0; char *tline = line; /* tline is start of text, after timestamp */ size_t tlen = len; uint64_t ts = 0; printf_debug("read: %s\n", line); for (;;) { ctf_dummy_pos(pos, &dummy); write_event_header(&dummy, line, &tline, len, &tlen, &ts); if (!ctf_align_pos(&dummy, sizeof(uint8_t) * CHAR_BIT)) goto error; if (!ctf_move_pos(&dummy, tlen * CHAR_BIT)) goto error; if (ctf_pos_packet(&dummy)) { ctf_pos_pad_packet(pos); write_packet_header(pos, s_uuid); write_packet_context(pos); if (attempt++ == 1) { fprintf(stderr, "[Error] Line too large for packet size (%" PRIu64 "kB) (discarded)\n", pos->packet_size / CHAR_BIT / 1024); return; } continue; } else { break; } } write_event_header(pos, line, &tline, len, &tlen, &ts); if (!ctf_align_pos(pos, sizeof(uint8_t) * CHAR_BIT)) goto error; memcpy(ctf_get_pos_addr(pos), tline, tlen); if (!ctf_move_pos(pos, tlen * CHAR_BIT)) goto error; return; error: fprintf(stderr, "[error] Out of packet bounds when writing event payload\n"); abort(); } static void trace_text(FILE *input, int output) { struct ctf_stream_pos pos; ssize_t len; char *line = NULL, *nl; size_t linesize; int ret; memset(&pos, 0, sizeof(pos)); ret = ctf_init_pos(&pos, NULL, output, O_RDWR); if (ret) { fprintf(stderr, "Error in ctf_init_pos\n"); return; } write_packet_header(&pos, s_uuid); write_packet_context(&pos); for (;;) { len = getline(&line, &linesize, input); if (len < 0) break; nl = strrchr(line, '\n'); if (nl) { *nl = '\0'; trace_string(line, &pos, nl - line + 1); } else { trace_string(line, &pos, strlen(line) + 1); } } ret = ctf_fini_pos(&pos); if (ret) { fprintf(stderr, "Error in ctf_fini_pos\n"); } } static void usage(FILE *fp) { fprintf(fp, "BabelTrace Log Converter %s\n", VERSION); fprintf(fp, "\n"); fprintf(fp, "Convert for a text log (read from standard input) to CTF.\n"); fprintf(fp, "\n"); fprintf(fp, "usage : babeltrace-log [OPTIONS] OUTPUT\n"); fprintf(fp, "\n"); fprintf(fp, " OUTPUT Output trace path\n"); fprintf(fp, "\n"); fprintf(fp, " -t With timestamps (format: [sec.usec] string\\n)\n"); fprintf(fp, " (format: [YYYY-MM-DD HH:MM:SS.MS] string\\n)\n"); fprintf(fp, "\n"); } static int parse_args(int argc, char **argv) { int i; for (i = 1; i < argc; i++) { if (!strcmp(argv[i], "-t")) s_timestamp = 1; else if (!strcmp(argv[i], "-h")) { s_help = 1; return 0; } else if (argv[i][0] == '-') return -EINVAL; else s_outputname = argv[i]; } if (!s_outputname) return -EINVAL; return 0; } int main(int argc, char **argv) { int fd, metadata_fd, ret; DIR *dir; int dir_fd; FILE *metadata_fp; ret = parse_args(argc, argv); if (ret) { fprintf(stderr, "Error: invalid argument.\n"); usage(stderr); goto error; } if (s_help) { usage(stdout); exit(EXIT_SUCCESS); } ret = mkdir(s_outputname, S_IRWXU|S_IRWXG); if (ret) { perror("mkdir"); goto error; } dir = opendir(s_outputname); if (!dir) { perror("opendir"); goto error_rmdir; } dir_fd = dirfd(dir); if (dir_fd < 0) { perror("dirfd"); goto error_closedir; } fd = openat(dir_fd, "datastream", O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP); if (fd < 0) { perror("openat"); goto error_closedirfd; } metadata_fd = openat(dir_fd, "metadata", O_RDWR|O_CREAT, S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP); if (metadata_fd < 0) { perror("openat"); goto error_closedatastream; } metadata_fp = fdopen(metadata_fd, "w"); if (!metadata_fp) { perror("fdopen"); goto error_closemetadatafd; } babeltrace_uuid_generate(s_uuid); print_metadata(metadata_fp); trace_text(stdin, fd); ret = close(fd); if (ret) perror("close"); exit(EXIT_SUCCESS); /* error handling */ error_closemetadatafd: ret = close(metadata_fd); if (ret) perror("close"); error_closedatastream: ret = close(fd); if (ret) perror("close"); error_closedirfd: ret = close(dir_fd); if (ret) perror("close"); error_closedir: ret = closedir(dir); if (ret) perror("closedir"); error_rmdir: ret = rmdir(s_outputname); if (ret) perror("rmdir"); error: exit(EXIT_FAILURE); } babeltrace-1.2.1/converter/Makefile.am0000644000175000017500000000241112304150543014556 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include AM_LDFLAGS = -lpopt bin_PROGRAMS = babeltrace babeltrace-log babeltrace_SOURCES = \ babeltrace.c # -Wl,--no-as-needed is needed for recent gold linker who seems to think # it knows better and considers libraries with constructors having # side-effects as dead code. babeltrace_LDFLAGS = -Wl,--no-as-needed babeltrace_LDADD = \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la \ $(top_builddir)/formats/ctf-metadata/libbabeltrace-ctf-metadata.la \ $(top_builddir)/formats/bt-dummy/libbabeltrace-dummy.la \ $(top_builddir)/formats/lttng-live/libbabeltrace-lttng-live.la babeltrace_log_SOURCES = babeltrace-log.c babeltrace_log_LDADD = \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la if BABELTRACE_BUILD_WITH_LIBUUID babeltrace_log_LDADD += -luuid endif if BABELTRACE_BUILD_WITH_LIBC_UUID babeltrace_log_LDADD += -lc endif if BABELTRACE_BUILD_WITH_MINGW babeltrace_log_LDADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread babeltrace_LDADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread endif babeltrace-1.2.1/converter/Makefile.in0000644000175000017500000005156412306621104014602 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ bin_PROGRAMS = babeltrace$(EXEEXT) babeltrace-log$(EXEEXT) @BABELTRACE_BUILD_WITH_LIBUUID_TRUE@am__append_1 = -luuid @BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE@am__append_2 = -lc @BABELTRACE_BUILD_WITH_MINGW_TRUE@am__append_3 = -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread @BABELTRACE_BUILD_WITH_MINGW_TRUE@am__append_4 = -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread subdir = converter DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_babeltrace_OBJECTS = babeltrace.$(OBJEXT) babeltrace_OBJECTS = $(am_babeltrace_OBJECTS) am__DEPENDENCIES_1 = babeltrace_DEPENDENCIES = $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la \ $(top_builddir)/formats/ctf-metadata/libbabeltrace-ctf-metadata.la \ $(top_builddir)/formats/bt-dummy/libbabeltrace-dummy.la \ $(top_builddir)/formats/lttng-live/libbabeltrace-lttng-live.la \ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent babeltrace_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(babeltrace_LDFLAGS) $(LDFLAGS) -o $@ am_babeltrace_log_OBJECTS = babeltrace-log.$(OBJEXT) babeltrace_log_OBJECTS = $(am_babeltrace_log_OBJECTS) babeltrace_log_DEPENDENCIES = $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(babeltrace_SOURCES) $(babeltrace_log_SOURCES) DIST_SOURCES = $(babeltrace_SOURCES) $(babeltrace_log_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include AM_LDFLAGS = -lpopt babeltrace_SOURCES = \ babeltrace.c # -Wl,--no-as-needed is needed for recent gold linker who seems to think # it knows better and considers libraries with constructors having # side-effects as dead code. babeltrace_LDFLAGS = -Wl,--no-as-needed babeltrace_LDADD = $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la \ $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la \ $(top_builddir)/formats/ctf-metadata/libbabeltrace-ctf-metadata.la \ $(top_builddir)/formats/bt-dummy/libbabeltrace-dummy.la \ $(top_builddir)/formats/lttng-live/libbabeltrace-lttng-live.la \ $(am__append_4) babeltrace_log_SOURCES = babeltrace-log.c babeltrace_log_LDADD = $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ $(top_builddir)/compat/libcompat.la $(am__append_1) \ $(am__append_2) $(am__append_3) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign converter/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign converter/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p || test -f $$p1; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list babeltrace$(EXEEXT): $(babeltrace_OBJECTS) $(babeltrace_DEPENDENCIES) $(EXTRA_babeltrace_DEPENDENCIES) @rm -f babeltrace$(EXEEXT) $(AM_V_CCLD)$(babeltrace_LINK) $(babeltrace_OBJECTS) $(babeltrace_LDADD) $(LIBS) babeltrace-log$(EXEEXT): $(babeltrace_log_OBJECTS) $(babeltrace_log_DEPENDENCIES) $(EXTRA_babeltrace_log_DEPENDENCIES) @rm -f babeltrace-log$(EXEEXT) $(AM_V_CCLD)$(LINK) $(babeltrace_log_OBJECTS) $(babeltrace_log_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/babeltrace-log.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/babeltrace.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/converter/babeltrace.c0000644000175000017500000005445112304150543014765 00000000000000/* * babeltrace.c * * Babeltrace Trace Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #define _GNU_SOURCE #include #include #include #include #include #include #include /* TODO: fix object model for format-agnostic callbacks */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* for clocks */ #define PARTIAL_ERROR_SLEEP 3 /* 3 seconds */ #define DEFAULT_FILE_ARRAY_SIZE 1 #define NET_URL_PREFIX "net://" #define NET4_URL_PREFIX "net4://" #define NET6_URL_PREFIX "net6://" static char *opt_input_format, *opt_output_format; /* * We are not freeing opt_input_paths ipath elements when exiting from * main() for backward compatibility with libpop 0.13, which does not * allocate copies for arguments returned by poptGetArg(), and for * general compatibility with the documented behavior. This is known to * cause a small memory leak with libpop 0.16. */ static GPtrArray *opt_input_paths; static char *opt_output_path; static struct bt_format *fmt_read; static void strlower(char *str) { while (*str) { *str = tolower((int) *str); str++; } } enum { OPT_NONE = 0, OPT_OUTPUT_PATH, OPT_INPUT_FORMAT, OPT_OUTPUT_FORMAT, OPT_HELP, OPT_LIST, OPT_VERBOSE, OPT_DEBUG, OPT_NAMES, OPT_FIELDS, OPT_NO_DELTA, OPT_CLOCK_OFFSET, OPT_CLOCK_OFFSET_NS, OPT_CLOCK_CYCLES, OPT_CLOCK_SECONDS, OPT_CLOCK_DATE, OPT_CLOCK_GMT, OPT_CLOCK_FORCE_CORRELATE, }; /* * We are _not_ using POPT_ARG_STRING ability to store directly into * variables, because we want to cast the return to non-const, which is * not possible without using poptGetOptArg explicitly. This helps us * controlling memory allocation correctly without making assumptions * about undocumented behaviors. poptGetOptArg is documented as * requiring the returned const char * to be freed by the caller. */ static struct poptOption long_options[] = { /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */ { "output", 'w', POPT_ARG_STRING, NULL, OPT_OUTPUT_PATH, NULL, NULL }, { "input-format", 'i', POPT_ARG_STRING, NULL, OPT_INPUT_FORMAT, NULL, NULL }, { "output-format", 'o', POPT_ARG_STRING, NULL, OPT_OUTPUT_FORMAT, NULL, NULL }, { "help", 'h', POPT_ARG_NONE, NULL, OPT_HELP, NULL, NULL }, { "list", 'l', POPT_ARG_NONE, NULL, OPT_LIST, NULL, NULL }, { "verbose", 'v', POPT_ARG_NONE, NULL, OPT_VERBOSE, NULL, NULL }, { "debug", 'd', POPT_ARG_NONE, NULL, OPT_DEBUG, NULL, NULL }, { "names", 'n', POPT_ARG_STRING, NULL, OPT_NAMES, NULL, NULL }, { "fields", 'f', POPT_ARG_STRING, NULL, OPT_FIELDS, NULL, NULL }, { "no-delta", 0, POPT_ARG_NONE, NULL, OPT_NO_DELTA, NULL, NULL }, { "clock-offset", 0, POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET, NULL, NULL }, { "clock-offset-ns", 0, POPT_ARG_STRING, NULL, OPT_CLOCK_OFFSET_NS, NULL, NULL }, { "clock-cycles", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_CYCLES, NULL, NULL }, { "clock-seconds", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_SECONDS, NULL, NULL }, { "clock-date", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_DATE, NULL, NULL }, { "clock-gmt", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_GMT, NULL, NULL }, { "clock-force-correlate", 0, POPT_ARG_NONE, NULL, OPT_CLOCK_FORCE_CORRELATE, NULL, NULL }, { NULL, 0, 0, NULL, 0, NULL, NULL }, }; static void list_formats(FILE *fp) { fprintf(fp, "\n"); bt_fprintf_format_list(fp); } static void usage(FILE *fp) { fprintf(fp, "BabelTrace Trace Viewer and Converter %s\n\n", VERSION); fprintf(fp, "usage : babeltrace [OPTIONS] FILE...\n"); fprintf(fp, "\n"); fprintf(fp, " FILE Input trace file(s) and/or directory(ies)\n"); fprintf(fp, " (space-separated)\n"); fprintf(fp, " -w, --output OUTPUT Output trace path (default: stdout)\n"); fprintf(fp, "\n"); fprintf(fp, " -i, --input-format FORMAT Input trace format (default: ctf)\n"); fprintf(fp, " -o, --output-format FORMAT Output trace format (default: text)\n"); fprintf(fp, "\n"); fprintf(fp, " -h, --help This help message\n"); fprintf(fp, " -l, --list List available formats\n"); fprintf(fp, " -v, --verbose Verbose mode\n"); fprintf(fp, " (or set BABELTRACE_VERBOSE environment variable)\n"); fprintf(fp, " -d, --debug Debug mode\n"); fprintf(fp, " (or set BABELTRACE_DEBUG environment variable)\n"); fprintf(fp, " --no-delta Do not print time delta between consecutive events\n"); fprintf(fp, " -n, --names name1<,name2,...> Print field names:\n"); fprintf(fp, " (payload OR args OR arg)\n"); fprintf(fp, " none, all, scope, header, (context OR ctx)\n"); fprintf(fp, " (default: payload,context)\n"); fprintf(fp, " -f, --fields name1<,name2,...> Print additional fields:\n"); fprintf(fp, " all, trace, trace:hostname, trace:domain,\n"); fprintf(fp, " trace:procname, trace:vpid, loglevel, emf, callsite.\n"); fprintf(fp, " (default: trace:hostname,trace:procname,trace:vpid)\n"); fprintf(fp, " --clock-cycles Timestamp in cycles\n"); fprintf(fp, " --clock-offset seconds Clock offset in seconds\n"); fprintf(fp, " --clock-offset-ns ns Clock offset in nanoseconds\n"); fprintf(fp, " --clock-seconds Print the timestamps as [sec.ns]\n"); fprintf(fp, " (default is: [hh:mm:ss.ns])\n"); fprintf(fp, " --clock-date Print clock date\n"); fprintf(fp, " --clock-gmt Print clock in GMT time zone (default: local time zone)\n"); fprintf(fp, " --clock-force-correlate Assume that clocks are inherently correlated\n"); fprintf(fp, " across traces.\n"); list_formats(fp); fprintf(fp, "\n"); } static int get_names_args(poptContext *pc) { char *str, *strlist, *strctx; int ret = 0; opt_payload_field_names = 0; opt_context_field_names = 0; strlist = (char *) poptGetOptArg(*pc); if (!strlist) { return -EINVAL; } str = strtok_r(strlist, ",", &strctx); do { if (!strcmp(str, "all")) opt_all_field_names = 1; else if (!strcmp(str, "scope")) opt_scope_field_names = 1; else if (!strcmp(str, "context") || !strcmp(str, "ctx")) opt_context_field_names = 1; else if (!strcmp(str, "header")) opt_header_field_names = 1; else if (!strcmp(str, "payload") || !strcmp(str, "args") || !strcmp(str, "arg")) opt_payload_field_names = 1; else if (!strcmp(str, "none")) { opt_all_field_names = 0; opt_scope_field_names = 0; opt_context_field_names = 0; opt_header_field_names = 0; opt_payload_field_names = 0; } else { fprintf(stderr, "[error] unknown field name type %s\n", str); ret = -EINVAL; goto end; } } while ((str = strtok_r(NULL, ",", &strctx))); end: free(strlist); return ret; } static int get_fields_args(poptContext *pc) { char *str, *strlist, *strctx; int ret = 0; strlist = (char *) poptGetOptArg(*pc); if (!strlist) { return -EINVAL; } str = strtok_r(strlist, ",", &strctx); do { opt_trace_default_fields = 0; if (!strcmp(str, "all")) opt_all_fields = 1; else if (!strcmp(str, "trace")) opt_trace_field = 1; else if (!strcmp(str, "trace:hostname")) opt_trace_hostname_field = 1; else if (!strcmp(str, "trace:domain")) opt_trace_domain_field = 1; else if (!strcmp(str, "trace:procname")) opt_trace_procname_field = 1; else if (!strcmp(str, "trace:vpid")) opt_trace_vpid_field = 1; else if (!strcmp(str, "loglevel")) opt_loglevel_field = 1; else if (!strcmp(str, "emf")) opt_emf_field = 1; else if (!strcmp(str, "callsite")) opt_callsite_field = 1; else { fprintf(stderr, "[error] unknown field type %s\n", str); ret = -EINVAL; goto end; } } while ((str = strtok_r(NULL, ",", &strctx))); end: free(strlist); return ret; } /* * Return 0 if caller should continue, < 0 if caller should return * error, > 0 if caller should exit without reporting error. */ static int parse_options(int argc, char **argv) { poptContext pc; int opt, ret = 0; const char *ipath; if (argc == 1) { usage(stdout); return 1; /* exit cleanly */ } pc = poptGetContext(NULL, argc, (const char **) argv, long_options, 0); poptReadDefaultConfig(pc, 0); /* set default */ opt_context_field_names = 1; opt_payload_field_names = 1; while ((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { case OPT_OUTPUT_PATH: opt_output_path = (char *) poptGetOptArg(pc); if (!opt_output_path) { ret = -EINVAL; goto end; } break; case OPT_INPUT_FORMAT: opt_input_format = (char *) poptGetOptArg(pc); if (!opt_input_format) { ret = -EINVAL; goto end; } break; case OPT_OUTPUT_FORMAT: opt_output_format = (char *) poptGetOptArg(pc); if (!opt_output_format) { ret = -EINVAL; goto end; } break; case OPT_HELP: usage(stdout); ret = 1; /* exit cleanly */ goto end; case OPT_LIST: list_formats(stdout); ret = 1; goto end; case OPT_VERBOSE: babeltrace_verbose = 1; break; case OPT_NAMES: if (get_names_args(&pc)) { ret = -EINVAL; goto end; } break; case OPT_FIELDS: if (get_fields_args(&pc)) { ret = -EINVAL; goto end; } break; case OPT_DEBUG: babeltrace_debug = 1; break; case OPT_NO_DELTA: opt_delta_field = 0; break; case OPT_CLOCK_CYCLES: opt_clock_cycles = 1; break; case OPT_CLOCK_OFFSET: { char *str; char *endptr; str = (char *) poptGetOptArg(pc); if (!str) { fprintf(stderr, "[error] Missing --clock-offset argument\n"); ret = -EINVAL; goto end; } errno = 0; opt_clock_offset = strtoull(str, &endptr, 0); if (*endptr != '\0' || str == endptr || errno != 0) { fprintf(stderr, "[error] Incorrect --clock-offset argument: %s\n", str); ret = -EINVAL; free(str); goto end; } free(str); break; } case OPT_CLOCK_SECONDS: opt_clock_seconds = 1; break; case OPT_CLOCK_OFFSET_NS: { char *str; char *endptr; str = (char *) poptGetOptArg(pc); if (!str) { fprintf(stderr, "[error] Missing --clock-offset-ns argument\n"); ret = -EINVAL; goto end; } errno = 0; opt_clock_offset_ns = strtoull(str, &endptr, 0); if (*endptr != '\0' || str == endptr || errno != 0) { fprintf(stderr, "[error] Incorrect --clock-offset-ns argument: %s\n", str); ret = -EINVAL; free(str); goto end; } free(str); break; } case OPT_CLOCK_DATE: opt_clock_date = 1; break; case OPT_CLOCK_GMT: opt_clock_gmt = 1; break; case OPT_CLOCK_FORCE_CORRELATE: opt_clock_force_correlate = 1; break; default: ret = -EINVAL; goto end; } } do { ipath = poptGetArg(pc); if (ipath) g_ptr_array_add(opt_input_paths, (gpointer) ipath); } while (ipath); if (opt_input_paths->len == 0) { ret = -EINVAL; goto end; } end: if (pc) { poptFreeContext(pc); } return ret; } static GPtrArray *traversed_paths = 0; /* * traverse_trace_dir() is the callback function for File Tree Walk (nftw). * it receives the path of the current entry (file, dir, link..etc) with * a flag to indicate the type of the entry. * if the entry being visited is a directory and contains a metadata file, * then add the path to a global list to be processed later in * add_traces_recursive. */ static int traverse_trace_dir(const char *fpath, const struct stat *sb, int tflag, struct FTW *ftwbuf) { int dirfd, metafd; int closeret; if (tflag != FTW_D) return 0; dirfd = open(fpath, 0); if (dirfd < 0) { fprintf(stderr, "[error] [Context] Unable to open trace " "directory file descriptor.\n"); return 0; /* partial error */ } metafd = openat(dirfd, "metadata", O_RDONLY); if (metafd < 0) { closeret = close(dirfd); if (closeret < 0) { perror("close"); return -1; } /* No meta data, just return */ return 0; } else { int err_close = 0; closeret = close(metafd); if (closeret < 0) { perror("close"); err_close = 1; } closeret = close(dirfd); if (closeret < 0) { perror("close"); err_close = 1; } if (err_close) { return -1; } /* Add path to the global list */ if (traversed_paths == NULL) { fprintf(stderr, "[error] [Context] Invalid open path array.\n"); return -1; } g_ptr_array_add(traversed_paths, g_string_new(fpath)); } return 0; } /* * bt_context_add_traces_recursive: Open a trace recursively * * Find each trace present in the subdirectory starting from the given * path, and add them to the context. The packet_seek parameter can be * NULL: this specify to use the default format packet_seek. * * Return: 0 on success, < 0 on failure, > 0 on partial failure. * Unable to open toplevel: failure. * Unable to open some subdirectory or file: warn and continue (partial * failure); */ int bt_context_add_traces_recursive(struct bt_context *ctx, const char *path, const char *format_str, void (*packet_seek)(struct bt_stream_pos *pos, size_t offset, int whence)) { int ret = 0, trace_ids = 0; if ((strncmp(path, NET4_URL_PREFIX, sizeof(NET4_URL_PREFIX) - 1)) == 0 || (strncmp(path, NET6_URL_PREFIX, sizeof(NET6_URL_PREFIX) - 1)) == 0 || (strncmp(path, NET_URL_PREFIX, sizeof(NET_URL_PREFIX) - 1)) == 0) { ret = bt_context_add_trace(ctx, path, format_str, packet_seek, NULL, NULL); if (ret < 0) { fprintf(stderr, "[warning] [Context] cannot open trace \"%s\" " "for reading.\n", path); /* Allow to skip erroneous traces. */ ret = 1; /* partial error */ } return ret; } /* Should lock traversed_paths mutex here if used in multithread */ traversed_paths = g_ptr_array_new(); ret = nftw(path, traverse_trace_dir, 10, 0); /* Process the array if ntfw did not return a fatal error */ if (ret >= 0) { int i; for (i = 0; i < traversed_paths->len; i++) { GString *trace_path = g_ptr_array_index(traversed_paths, i); int trace_id = bt_context_add_trace(ctx, trace_path->str, format_str, packet_seek, NULL, NULL); if (trace_id < 0) { fprintf(stderr, "[warning] [Context] cannot open trace \"%s\" from %s " "for reading.\n", trace_path->str, path); /* Allow to skip erroneous traces. */ ret = 1; /* partial error */ } else { trace_ids++; } g_string_free(trace_path, TRUE); } } g_ptr_array_free(traversed_paths, TRUE); traversed_paths = NULL; /* Should unlock traversed paths mutex here if used in multithread */ /* * Return an error if no trace can be opened. */ if (trace_ids == 0) { fprintf(stderr, "[error] Cannot open any trace for reading.\n\n"); ret = -ENOENT; /* failure */ } return ret; } static int trace_pre_handler(struct bt_trace_descriptor *td_write, struct bt_context *ctx) { struct ctf_text_stream_pos *sout; struct trace_collection *tc; int ret, i; sout = container_of(td_write, struct ctf_text_stream_pos, trace_descriptor); if (!sout->parent.pre_trace_cb) return 0; tc = ctx->tc; for (i = 0; i < tc->array->len; i++) { struct bt_trace_descriptor *td = g_ptr_array_index(tc->array, i); ret = sout->parent.pre_trace_cb(&sout->parent, td); if (ret) { fprintf(stderr, "[error] Writing to trace pre handler failed.\n"); goto end; } } ret = 0; end: return ret; } static int trace_post_handler(struct bt_trace_descriptor *td_write, struct bt_context *ctx) { struct ctf_text_stream_pos *sout; struct trace_collection *tc; int ret, i; sout = container_of(td_write, struct ctf_text_stream_pos, trace_descriptor); if (!sout->parent.post_trace_cb) return 0; tc = ctx->tc; for (i = 0; i < tc->array->len; i++) { struct bt_trace_descriptor *td = g_ptr_array_index(tc->array, i); ret = sout->parent.post_trace_cb(&sout->parent, td); if (ret) { fprintf(stderr, "[error] Writing to trace post handler failed.\n"); goto end; } } ret = 0; end: return ret; } static int convert_trace(struct bt_trace_descriptor *td_write, struct bt_context *ctx) { struct bt_ctf_iter *iter; struct ctf_text_stream_pos *sout; struct bt_iter_pos begin_pos; struct bt_ctf_event *ctf_event; int ret; sout = container_of(td_write, struct ctf_text_stream_pos, trace_descriptor); if (!sout->parent.event_cb) return 0; begin_pos.type = BT_SEEK_BEGIN; iter = bt_ctf_iter_create(ctx, &begin_pos, NULL); if (!iter) { ret = -1; goto error_iter; } while ((ctf_event = bt_ctf_iter_read_event(iter))) { ret = sout->parent.event_cb(&sout->parent, ctf_event->parent->stream); if (ret) { fprintf(stderr, "[error] Writing event failed.\n"); goto end; } ret = bt_iter_next(bt_ctf_get_iter(iter)); if (ret < 0) goto end; } ret = 0; end: bt_ctf_iter_destroy(iter); error_iter: return ret; } int main(int argc, char **argv) { int ret, partial_error = 0, open_success = 0; struct bt_format *fmt_write; struct bt_trace_descriptor *td_write; struct bt_context *ctx; int i; opt_input_paths = g_ptr_array_new(); ret = parse_options(argc, argv); if (ret < 0) { fprintf(stderr, "Error parsing options.\n\n"); usage(stderr); g_ptr_array_free(opt_input_paths, TRUE); exit(EXIT_FAILURE); } else if (ret > 0) { g_ptr_array_free(opt_input_paths, TRUE); exit(EXIT_SUCCESS); } printf_verbose("Verbose mode active.\n"); printf_debug("Debug mode active.\n"); if (opt_input_format) strlower(opt_input_format); if (opt_output_format) strlower(opt_output_format); printf_verbose("Converting from directory(ies):\n"); for (i = 0; i < opt_input_paths->len; i++) { const char *ipath = g_ptr_array_index(opt_input_paths, i); printf_verbose(" %s\n", ipath); } printf_verbose("Converting from format: %s\n", opt_input_format ? : "ctf "); printf_verbose("Converting to target: %s\n", opt_output_path ? : ""); printf_verbose("Converting to format: %s\n", opt_output_format ? : "text "); if (!opt_input_format) { opt_input_format = strdup("ctf"); if (!opt_input_format) { partial_error = 1; goto end; } } if (!opt_output_format) { opt_output_format = strdup("text"); if (!opt_output_format) { partial_error = 1; goto end; } } fmt_read = bt_lookup_format(g_quark_from_static_string(opt_input_format)); if (!fmt_read) { fprintf(stderr, "[error] Format \"%s\" is not supported.\n\n", opt_input_format); partial_error = 1; goto end; } fmt_write = bt_lookup_format(g_quark_from_static_string(opt_output_format)); if (!fmt_write) { fprintf(stderr, "[error] format \"%s\" is not supported.\n\n", opt_output_format); partial_error = 1; goto end; } ctx = bt_context_create(); if (!ctx) { goto error_td_read; } for (i = 0; i < opt_input_paths->len; i++) { const char *ipath = g_ptr_array_index(opt_input_paths, i); ret = bt_context_add_traces_recursive(ctx, ipath, opt_input_format, NULL); if (ret < 0) { fprintf(stderr, "[error] opening trace \"%s\" for reading.\n\n", ipath); } else if (ret > 0) { fprintf(stderr, "[warning] errors occurred when opening trace \"%s\" for reading, continuing anyway.\n\n", ipath); open_success = 1; /* some traces were OK */ partial_error = 1; } else { open_success = 1; /* all traces were OK */ } } if (!open_success) { fprintf(stderr, "[error] none of the specified trace paths could be opened.\n\n"); goto error_td_read; } td_write = fmt_write->open_trace(opt_output_path, O_RDWR, NULL, NULL); if (!td_write) { fprintf(stderr, "Error opening trace \"%s\" for writing.\n\n", opt_output_path ? : ""); goto error_td_write; } /* * Errors happened when opening traces, but we continue anyway. * sleep to let user see the stderr output before stdout. */ if (partial_error) sleep(PARTIAL_ERROR_SLEEP); ret = trace_pre_handler(td_write, ctx); if (ret) { fprintf(stderr, "Error in trace pre handle.\n\n"); goto error_copy_trace; } /* For now, we support only CTF iterators */ if (fmt_read->name == g_quark_from_static_string("ctf")) { ret = convert_trace(td_write, ctx); if (ret) { fprintf(stderr, "Error printing trace.\n\n"); goto error_copy_trace; } } ret = trace_post_handler(td_write, ctx); if (ret) { fprintf(stderr, "Error in trace post handle.\n\n"); goto error_copy_trace; } fmt_write->close_trace(td_write); bt_context_put(ctx); printf_verbose("finished converting. Output written to:\n%s\n", opt_output_path ? : ""); goto end; /* Error handling */ error_copy_trace: fmt_write->close_trace(td_write); error_td_write: bt_context_put(ctx); error_td_read: partial_error = 1; /* teardown and exit */ end: free(opt_input_format); free(opt_output_format); free(opt_output_path); g_ptr_array_free(opt_input_paths, TRUE); if (partial_error) exit(EXIT_FAILURE); else exit(EXIT_SUCCESS); } babeltrace-1.2.1/m4/0000755000175000017500000000000012306621156011122 500000000000000babeltrace-1.2.1/m4/lt~obsolete.m40000644000175000017500000001375612306621077013674 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) babeltrace-1.2.1/m4/ax_pkg_swig.m40000644000175000017500000001523412304150543013606 00000000000000# =========================================================================== # http://www.gnu.org/software/autoconf-archive/ax_pkg_swig.html # =========================================================================== # # SYNOPSIS # # AX_PKG_SWIG([major.minor.micro], [action-if-found], [action-if-not-found]) # # DESCRIPTION # # This macro searches for a SWIG installation on your system. If found, # then SWIG is AC_SUBST'd; if not found, then $SWIG is empty. If SWIG is # found, then SWIG_LIB is set to the SWIG library path, and AC_SUBST'd. # # You can use the optional first argument to check if the version of the # available SWIG is greater than or equal to the value of the argument. It # should have the format: N[.N[.N]] (N is a number between 0 and 999. Only # the first N is mandatory.) If the version argument is given (e.g. # 1.3.17), AX_PKG_SWIG checks that the swig package is this version number # or higher. # # As usual, action-if-found is executed if SWIG is found, otherwise # action-if-not-found is executed. # # In configure.in, use as: # # AX_PKG_SWIG(1.3.17, [], [ AC_MSG_ERROR([SWIG is required to build..]) ]) # AX_SWIG_ENABLE_CXX # AX_SWIG_MULTI_MODULE_SUPPORT # AX_SWIG_PYTHON # # LICENSE # # Copyright (c) 2008 Sebastian Huber # Copyright (c) 2008 Alan W. Irwin # Copyright (c) 2008 Rafael Laboissiere # Copyright (c) 2008 Andrew Collier # Copyright (c) 2011 Murray Cumming # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your # option) any later version. # # 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, see . # # As a special exception, the respective Autoconf Macro's copyright owner # gives unlimited permission to copy, distribute and modify the configure # scripts that are the output of Autoconf when processing the Macro. You # need not follow the terms of the GNU General Public License when using # or distributing such scripts, even though portions of the text of the # Macro appear in them. The GNU General Public License (GPL) does govern # all other use of the material that constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the Autoconf # Macro released by the Autoconf Archive. When you make and distribute a # modified version of the Autoconf Macro, you may extend this special # exception to the GPL to apply to your modified version as well. #serial 8 AC_DEFUN([AX_PKG_SWIG],[ # Ubuntu has swig 2.0 as /usr/bin/swig2.0 AC_PATH_PROGS([SWIG],[swig swig2.0]) if test -z "$SWIG" ; then m4_ifval([$3],[$3],[:]) elif test -n "$1" ; then AC_MSG_CHECKING([SWIG version]) [swig_version=`$SWIG -version 2>&1 | grep 'SWIG Version' | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'`] AC_MSG_RESULT([$swig_version]) if test -n "$swig_version" ; then # Calculate the required version number components [required=$1] [required_major=`echo $required | sed 's/[^0-9].*//'`] if test -z "$required_major" ; then [required_major=0] fi [required=`echo $required | sed 's/[0-9]*[^0-9]//'`] [required_minor=`echo $required | sed 's/[^0-9].*//'`] if test -z "$required_minor" ; then [required_minor=0] fi [required=`echo $required | sed 's/[0-9]*[^0-9]//'`] [required_patch=`echo $required | sed 's/[^0-9].*//'`] if test -z "$required_patch" ; then [required_patch=0] fi # Calculate the available version number components [available=$swig_version] [available_major=`echo $available | sed 's/[^0-9].*//'`] if test -z "$available_major" ; then [available_major=0] fi [available=`echo $available | sed 's/[0-9]*[^0-9]//'`] [available_minor=`echo $available | sed 's/[^0-9].*//'`] if test -z "$available_minor" ; then [available_minor=0] fi [available=`echo $available | sed 's/[0-9]*[^0-9]//'`] [available_patch=`echo $available | sed 's/[^0-9].*//'`] if test -z "$available_patch" ; then [available_patch=0] fi # Convert the version tuple into a single number for easier comparison. # Using base 100 should be safe since SWIG internally uses BCD values # to encode its version number. required_swig_vernum=`expr $required_major \* 10000 \ \+ $required_minor \* 100 \+ $required_patch` available_swig_vernum=`expr $available_major \* 10000 \ \+ $available_minor \* 100 \+ $available_patch` if test $available_swig_vernum -lt $required_swig_vernum; then AC_MSG_WARN([SWIG version >= $1 is required. You have $swig_version.]) SWIG='' m4_ifval([$3],[$3],[]) else AC_MSG_CHECKING([for SWIG library]) SWIG_LIB=`$SWIG -swiglib` AC_MSG_RESULT([$SWIG_LIB]) m4_ifval([$2],[$2],[]) fi else AC_MSG_WARN([cannot determine SWIG version]) SWIG='' m4_ifval([$3],[$3],[]) fi fi AC_SUBST([SWIG_LIB]) ]) babeltrace-1.2.1/m4/ltversion.m40000644000175000017500000000126212306621077013334 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) babeltrace-1.2.1/m4/libtool.m40000644000175000017500000105754212306621077012770 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS babeltrace-1.2.1/m4/ltsugar.m40000644000175000017500000001042412306621077012770 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) babeltrace-1.2.1/m4/ltoptions.m40000644000175000017500000003007312306621077013344 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) babeltrace-1.2.1/README0000644000175000017500000000465312304150543011405 00000000000000BabelTrace - Trace Format Babel Tower This project provides trace read and write libraries, as well as a trace converter. A plugin can be created for any trace format to allow its conversion to/from another trace format. The main format expected to be converted to/from is the Common Trace Format (CTF). The latest version of the CTF specification can be found at: git tree: git://git.efficios.com/ctf.git gitweb: http://git.efficios.com/?p=ctf.git The CE Workgroup of the Linux Foundation, Ericsson, and EfficiOS have sponsored this work. The current maintainers are: Jérémie Galarneau Mathieu Desnoyers Questions should be addressed to this mailing list: lttng-dev@lists.lttng.org BUILDING -------- ./bootstrap (skip if using tarball) ./configure make make install ldconfig DEPENDENCIES ------------ To compile Babeltrace, you will need: gcc 3.2 or better libc6 development librairies (Debian : libc6, libc6-dev) (Fedora : glibc, glibc) glib 2.22 or better development libraries (Debian : libglib2.0-0, libglib2.0-dev) (Fedora : glib2, glib2-devel) uuid development libraries (Debian : uuid-dev) (Fedora : uuid-devel) libpopt >= 1.13 development libraries (Debian : libpopt-dev) (Fedora : popt) python headers (optional) (Debian/Ubuntu : python3-dev) swig >= 2.0 (optional) (Debian/Ubuntu : swig2.0) python 3.0 or better (optional) (Debian/Ubuntu : python3) If you want Python bindings, run ./configure --enable-python-bindings. Please note that some distributions will need the following environment variables set before running configure: export PYTHON="python3" export PYTHON_CONFIG="/usr/bin/python3-config" For developers using the git tree: This source tree is based on the autotools suite from GNU to simplify portability. Here are some things you should have on your system in order to compile the git repository tree : - GNU autotools (automake >=1.10, autoconf >=2.50, autoheader >=2.50) (make sure your system wide "automake" points to a recent version!) - GNU Libtool >=2.2 (for more information, go to http://www.gnu.org/software/autoconf/) - Flex >=2.5.35. - Bison >=2.4. If you get the tree from the repository, you will need to use the "bootstrap" script in the root of the tree. It calls all the GNU tools needed to prepare the tree configuration. Running "make check": bash is required. babeltrace-1.2.1/Makefile.am0000644000175000017500000000054712306620455012565 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include ACLOCAL_AMFLAGS = -I m4 SUBDIRS = include types compat lib formats converter bindings tests doc extras dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \ std-ext-lib.txt dist_noinst_DATA = CodingStyle pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc babeltrace-1.2.1/lib/0000755000175000017500000000000012306621157011351 500000000000000babeltrace-1.2.1/lib/registry.c0000644000175000017500000000740112272477052013314 00000000000000/* * BabelTrace * * Format Registry * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include struct walk_data { FILE *fp; int iter; }; /* * Format registry hash table contains the registered formats. Format * registration is typically performed by a format plugin. */ static GHashTable *format_registry; static int format_refcount; static int init_done; static __attribute__((constructor)) void format_init(void); static void format_refcount_inc(void) { format_refcount++; } static void format_cleanup(void) { if (format_registry) g_hash_table_destroy(format_registry); } static void format_refcount_dec(void) { if (!--format_refcount) format_cleanup(); } struct bt_format *bt_lookup_format(bt_intern_str name) { if (!init_done) return NULL; return g_hash_table_lookup(format_registry, (gconstpointer) (unsigned long) name); } static void show_format(gpointer key, gpointer value, gpointer user_data) { struct walk_data *data = user_data; fprintf(data->fp, "%s%s", data->iter ? ", " : "", g_quark_to_string((GQuark) (unsigned long) key)); data->iter++; } void bt_fprintf_format_list(FILE *fp) { struct walk_data data; assert(fp); data.fp = fp; data.iter = 0; fprintf(fp, "Formats available: "); if (!init_done) return; g_hash_table_foreach(format_registry, show_format, &data); if (data.iter == 0) fprintf(fp, ""); fprintf(fp, ".\n"); } int bt_register_format(struct bt_format *format) { if (!format) return -EINVAL; if (!init_done) format_init(); if (bt_lookup_format(format->name)) return -EEXIST; format_refcount_inc(); g_hash_table_insert(format_registry, (gpointer) (unsigned long) format->name, format); return 0; } void bt_unregister_format(struct bt_format *format) { assert(bt_lookup_format(format->name)); g_hash_table_remove(format_registry, (gpointer) (unsigned long) format->name); format_refcount_dec(); } /* * We cannot assume that the constructor and destructor order will be * right: another library might be loaded before us, and initialize us * from bt_register_format(). This is why we use a reference count to * handle cleanup of this module. The format_finalize destructor * refcount decrement matches format_init refcount increment. */ static __attribute__((constructor)) void format_init(void) { if (init_done) return; format_refcount_inc(); format_registry = g_hash_table_new(g_direct_hash, g_direct_equal); assert(format_registry); init_done = 1; } static __attribute__((destructor)) void format_finalize(void) { format_refcount_dec(); } babeltrace-1.2.1/lib/Makefile.am0000644000175000017500000000073312304150543013322 00000000000000SUBDIRS = prio_heap . AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace.la libbabeltrace_la_SOURCES = babeltrace.c \ iterator.c \ context.c \ trace-handle.c \ trace-collection.c \ registry.c libbabeltrace_la_LDFLAGS = -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_la_LIBADD = \ prio_heap/libprio_heap.la \ $(top_builddir)/types/libbabeltrace_types.la \ $(top_builddir)/compat/libcompat.la babeltrace-1.2.1/lib/context.c0000644000175000017500000001372012304150543013116 00000000000000/* * context.c * * Babeltrace Library * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* For O_RDONLY */ #include static void remove_trace_handle(struct bt_trace_handle *handle); struct bt_context *bt_context_create(void) { struct bt_context *ctx; ctx = g_new0(struct bt_context, 1); ctx->refcount = 1; /* Negative handle id are errors. */ ctx->last_trace_handle_id = 0; /* Instanciate the trace handle container */ ctx->trace_handles = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) remove_trace_handle); ctx->current_iterator = NULL; ctx->tc = g_new0(struct trace_collection, 1); bt_init_trace_collection(ctx->tc); return ctx; } int bt_context_add_trace(struct bt_context *ctx, const char *path, const char *format_name, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), struct bt_mmap_stream_list *stream_list, FILE *metadata) { struct bt_trace_descriptor *td; struct bt_format *fmt; struct bt_trace_handle *handle; int ret, closeret; if (!ctx || !format_name || (!path && !stream_list)) return -EINVAL; fmt = bt_lookup_format(g_quark_from_string(format_name)); if (!fmt) { fprintf(stderr, "[error] [Context] Format \"%s\" unknown.\n\n", format_name); ret = -1; goto end; } if (path) { td = fmt->open_trace(path, O_RDONLY, packet_seek, NULL); if (!td) { fprintf(stderr, "[warning] [Context] Cannot open_trace of format %s at path %s.\n", format_name, path); ret = -1; goto end; } } else { td = fmt->open_mmap_trace(stream_list, packet_seek, metadata); if (!td) { fprintf(stderr, "[error] [Context] Cannot open_mmap_trace of format %s.\n\n", format_name); ret = -1; goto end; } } /* Create an handle for the trace */ handle = bt_trace_handle_create(ctx); if (!handle) { fprintf(stderr, "[error] [Context] Creating trace handle %s .\n\n", path); ret = -1; goto error; } handle->format = fmt; handle->td = td; if (path) { strncpy(handle->path, path, PATH_MAX); handle->path[PATH_MAX - 1] = '\0'; } if (fmt->set_handle) fmt->set_handle(td, handle); if (fmt->set_context) fmt->set_context(td, ctx); /* Add new handle to container */ g_hash_table_insert(ctx->trace_handles, (gpointer) (unsigned long) handle->id, handle); ret = bt_trace_collection_add(ctx->tc, td); if (ret != 0) goto error; if (fmt->convert_index_timestamp) { ret = fmt->convert_index_timestamp(td); if (ret < 0) goto error; } if (fmt->timestamp_begin) handle->real_timestamp_begin = fmt->timestamp_begin(td, handle, BT_CLOCK_REAL); if (fmt->timestamp_end) handle->real_timestamp_end = fmt->timestamp_end(td, handle, BT_CLOCK_REAL); if (fmt->timestamp_begin) handle->cycles_timestamp_begin = fmt->timestamp_begin(td, handle, BT_CLOCK_CYCLES); if (fmt->timestamp_end) handle->cycles_timestamp_end = fmt->timestamp_end(td, handle, BT_CLOCK_CYCLES); return handle->id; error: closeret = fmt->close_trace(td); if (closeret) { fprintf(stderr, "Error in close_trace callback\n"); } end: return ret; } int bt_context_remove_trace(struct bt_context *ctx, int handle_id) { int ret = 0; if (!ctx) { ret = -EINVAL; goto end; } /* * Remove the handle. remove_trace_handle will be called * automatically. */ if (!g_hash_table_remove(ctx->trace_handles, (gpointer) (unsigned long) handle_id)) { ret = -ENOENT; goto end; } end: return ret; } static void bt_context_destroy(struct bt_context *ctx) { assert(ctx); /* * Remove all traces. The g_hash_table_destroy will call * remove_trace_handle on each element. */ g_hash_table_destroy(ctx->trace_handles); bt_finalize_trace_collection(ctx->tc); /* ctx->tc should always be valid */ assert(ctx->tc != NULL); g_free(ctx->tc); g_free(ctx); } void bt_context_get(struct bt_context *ctx) { assert(ctx); ctx->refcount++; } void bt_context_put(struct bt_context *ctx) { assert(ctx); ctx->refcount--; if (ctx->refcount == 0) bt_context_destroy(ctx); } static void remove_trace_handle(struct bt_trace_handle *handle) { int ret; if (!handle->td->ctx) return; /* Remove from containers */ bt_trace_collection_remove(handle->td->ctx->tc, handle->td); /* Close the trace */ ret = handle->format->close_trace(handle->td); if (ret) { fprintf(stderr, "Error in close_trace callback\n"); } bt_trace_handle_destroy(handle); } babeltrace-1.2.1/lib/trace-collection.c0000644000175000017500000001557012304150543014666 00000000000000/* * trace-collection.c * * Babeltrace Library * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include /* for clocks */ #include #include struct clock_match { GHashTable *clocks; struct ctf_clock *clock_match; struct trace_collection *tc; }; static void check_clock_match(gpointer key, gpointer value, gpointer user_data) { struct clock_match *match = user_data; struct ctf_clock *clock_a = value, *clock_b; if (clock_a->absolute) { /* * Absolute time references, such as NTP, are looked up * by clock name. */ clock_b = g_hash_table_lookup(match->clocks, (gpointer) (unsigned long) clock_a->name); if (clock_b) { match->clock_match = clock_b; return; } } else if (clock_a->uuid != 0) { /* * Lookup the the trace clocks into the collection * clocks. */ clock_b = g_hash_table_lookup(match->clocks, (gpointer) (unsigned long) clock_a->uuid); if (clock_b) { match->clock_match = clock_b; return; } } } /* * Note: if using a frequency different from 1GHz for clock->offset, it * is recommended to express the seconds in offset_s, otherwise there * will be a loss of precision caused by the limited size of the double * mantissa. */ static uint64_t clock_offset_ns(struct ctf_clock *clock) { return clock->offset_s * 1000000000ULL + clock_cycles_to_ns(clock, clock->offset); } static void clock_add(gpointer key, gpointer value, gpointer user_data) { struct clock_match *clock_match = user_data; GHashTable *tc_clocks = clock_match->clocks; struct ctf_clock *t_clock = value; GQuark v; if (t_clock->absolute) v = t_clock->name; else v = t_clock->uuid; if (v) { struct ctf_clock *tc_clock; tc_clock = g_hash_table_lookup(tc_clocks, (gpointer) (unsigned long) v); if (!tc_clock) { /* * For now we only support CTF that has one * single clock uuid or name (absolute ref) per * trace. */ if (g_hash_table_size(tc_clocks) > 0) { fprintf(stderr, "[error] Only CTF traces with a single clock description are supported by this babeltrace version.\n"); } if (!clock_match->tc->offset_nr) { clock_match->tc->offset_first = clock_offset_ns(t_clock); clock_match->tc->delta_offset_first_sum = 0; clock_match->tc->offset_nr++; clock_match->tc->single_clock_offset_avg = clock_match->tc->offset_first; } g_hash_table_insert(tc_clocks, (gpointer) (unsigned long) v, value); } else if (!t_clock->absolute) { int64_t diff_ns; /* * For non-absolute clocks, check that the * offsets match. If not, warn the user that we * do an arbitrary choice. */ diff_ns = clock_offset_ns(tc_clock) - clock_offset_ns(t_clock); printf_debug("Clock \"%s\" offset between traces has a delta of %" PRIu64 " ns.", g_quark_to_string(tc_clock->name), diff_ns < 0 ? -diff_ns : diff_ns); if (diff_ns > 10000 || diff_ns < -10000) { fprintf(stderr, "[warning] Clock \"%s\" offset differs between traces (delta %" PRIu64 " ns). Using average.\n", g_quark_to_string(tc_clock->name), diff_ns < 0 ? -diff_ns : diff_ns); } /* Compute average */ clock_match->tc->delta_offset_first_sum += clock_offset_ns(t_clock) - clock_match->tc->offset_first; clock_match->tc->offset_nr++; clock_match->tc->single_clock_offset_avg = clock_match->tc->offset_first + (clock_match->tc->delta_offset_first_sum / clock_match->tc->offset_nr); /* Time need to use offset average */ clock_match->tc->clock_use_offset_avg = 1; } } } /* * Whenever we add a trace to the trace collection, check that we can * correlate this trace with at least one other clock in the trace and * convert the index from cycles to real time. */ int bt_trace_collection_add(struct trace_collection *tc, struct bt_trace_descriptor *trace) { if (!tc || !trace) return -EINVAL; if (!trace->clocks) return 0; if (tc->array->len > 1) { struct clock_match clock_match = { .clocks = tc->clocks, .clock_match = NULL, .tc = NULL, }; /* * With two or more traces, we need correlation info * avalable. */ g_hash_table_foreach(trace->clocks, check_clock_match, &clock_match); if (!clock_match.clock_match) { fprintf(stderr, "[error] No clocks can be correlated and multiple traces are added to the collection. If you are certain those traces can be correlated, try using \"--clock-force-correlate\".\n"); goto error; } } g_ptr_array_add(tc->array, trace); trace->collection = tc; { struct clock_match clock_match = { .clocks = tc->clocks, .clock_match = NULL, .tc = tc, }; /* * Add each clock from the trace clocks into the trace * collection clocks. */ g_hash_table_foreach(trace->clocks, clock_add, &clock_match); } return 0; error: return -EPERM; } int bt_trace_collection_remove(struct trace_collection *tc, struct bt_trace_descriptor *td) { if (!tc || !td) return -EINVAL; if (g_ptr_array_remove(tc->array, td)) { return 0; } else { return -1; } } void bt_init_trace_collection(struct trace_collection *tc) { assert(tc); tc->array = g_ptr_array_new(); tc->clocks = g_hash_table_new(g_direct_hash, g_direct_equal); tc->single_clock_offset_avg = 0; tc->offset_first = 0; tc->delta_offset_first_sum = 0; tc->offset_nr = 0; } /* * bt_finalize_trace_collection() closes the opened traces for read * and free the memory allocated for trace collection */ void bt_finalize_trace_collection(struct trace_collection *tc) { assert(tc); g_ptr_array_free(tc->array, TRUE); g_hash_table_destroy(tc->clocks); } babeltrace-1.2.1/lib/Makefile.in0000644000175000017500000006252512306621104013340 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = lib DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" LTLIBRARIES = $(lib_LTLIBRARIES) libbabeltrace_la_DEPENDENCIES = prio_heap/libprio_heap.la \ $(top_builddir)/types/libbabeltrace_types.la \ $(top_builddir)/compat/libcompat.la am_libbabeltrace_la_OBJECTS = babeltrace.lo iterator.lo context.lo \ trace-handle.lo trace-collection.lo registry.lo libbabeltrace_la_OBJECTS = $(am_libbabeltrace_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libbabeltrace_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(libbabeltrace_la_LDFLAGS) $(LDFLAGS) \ -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_la_SOURCES) DIST_SOURCES = $(libbabeltrace_la_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = prio_heap . AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include lib_LTLIBRARIES = libbabeltrace.la libbabeltrace_la_SOURCES = babeltrace.c \ iterator.c \ context.c \ trace-handle.c \ trace-collection.c \ registry.c libbabeltrace_la_LDFLAGS = -version-info $(BABELTRACE_LIBRARY_VERSION) libbabeltrace_la_LIBADD = \ prio_heap/libprio_heap.la \ $(top_builddir)/types/libbabeltrace_types.la \ $(top_builddir)/compat/libcompat.la all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace.la: $(libbabeltrace_la_OBJECTS) $(libbabeltrace_la_DEPENDENCIES) $(EXTRA_libbabeltrace_la_DEPENDENCIES) $(AM_V_CCLD)$(libbabeltrace_la_LINK) -rpath $(libdir) $(libbabeltrace_la_OBJECTS) $(libbabeltrace_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/babeltrace.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/context.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iterator.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/registry.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trace-collection.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trace-handle.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(LTLIBRARIES) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-libLTLIBRARIES install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-libLTLIBRARIES .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags ctags-recursive \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-libLTLIBRARIES install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-libLTLIBRARIES # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/lib/iterator.c0000644000175000017500000005161612304150543013271 00000000000000/* * iterator.c * * Babeltrace Library * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include static int babeltrace_filestream_seek(struct ctf_file_stream *file_stream, const struct bt_iter_pos *begin_pos, unsigned long stream_id); struct stream_saved_pos { /* * Use file_stream pointer to check if the trace collection we * restore to match the one we saved from, for each stream. */ struct ctf_file_stream *file_stream; size_t cur_index; /* current index in packet index */ ssize_t offset; /* offset from base, in bits. EOF for end of file. */ uint64_t current_real_timestamp; uint64_t current_cycles_timestamp; }; struct bt_saved_pos { struct trace_collection *tc; GArray *stream_saved_pos; /* Contains struct stream_saved_pos */ }; static int stream_read_event(struct ctf_file_stream *sin) { int ret; ret = sin->pos.parent.event_cb(&sin->pos.parent, &sin->parent); if (ret == EOF) return EOF; else if (ret == EAGAIN) /* Stream is inactive for now (live reading). */ return EAGAIN; else if (ret) { fprintf(stderr, "[error] Reading event failed.\n"); return ret; } return 0; } /* * Return true if a < b, false otherwise. * If time stamps are exactly the same, compare by stream path. This * ensures we get the same result between runs on the same trace * collection on different environments. * The result will be random for memory-mapped traces since there is no * fixed path leading to those (they have empty path string). */ static int stream_compare(void *a, void *b) { struct ctf_file_stream *s_a = a, *s_b = b; if (s_a->parent.real_timestamp < s_b->parent.real_timestamp) { return 1; } else if (likely(s_a->parent.real_timestamp > s_b->parent.real_timestamp)) { return 0; } else { return strcmp(s_a->parent.path, s_b->parent.path); } } void bt_iter_free_pos(struct bt_iter_pos *iter_pos) { if (!iter_pos) return; if (iter_pos->type == BT_SEEK_RESTORE && iter_pos->u.restore) { if (iter_pos->u.restore->stream_saved_pos) { g_array_free( iter_pos->u.restore->stream_saved_pos, TRUE); } g_free(iter_pos->u.restore); } g_free(iter_pos); } /* * seek_file_stream_by_timestamp * * Browse a filestream by index, if an index contains the timestamp passed in * argument, seek inside the corresponding packet it until we find the event we * are looking for (either the exact timestamp or the event just after the * timestamp). * * Return 0 if the seek succeded, EOF if we didn't find any packet * containing the timestamp, or a positive integer for error. * * TODO: this should be turned into a binary search! It is currently * doing a linear search in the packets. This is a O(n) operation on a * very frequent code path. */ static int seek_file_stream_by_timestamp(struct ctf_file_stream *cfs, uint64_t timestamp) { struct ctf_stream_pos *stream_pos; struct packet_index *index; int i, ret; stream_pos = &cfs->pos; for (i = 0; i < stream_pos->packet_index->len; i++) { index = &g_array_index(stream_pos->packet_index, struct packet_index, i); if (index->ts_real.timestamp_end < timestamp) continue; stream_pos->packet_seek(&stream_pos->parent, i, SEEK_SET); do { ret = stream_read_event(cfs); } while (cfs->parent.real_timestamp < timestamp && ret == 0); /* Can return either EOF, 0, or error (> 0). */ return ret; } /* * Cannot find the timestamp within the stream packets, return * EOF. */ return EOF; } /* * seek_ctf_trace_by_timestamp : for each file stream, seek to the event with * the corresponding timestamp * * Return 0 on success. * If the timestamp is not part of any file stream, return EOF to inform the * user the timestamp is out of the scope. * On other errors, return positive value. */ static int seek_ctf_trace_by_timestamp(struct ctf_trace *tin, uint64_t timestamp, struct ptr_heap *stream_heap) { int i, j, ret; int found = 0; /* for each stream_class */ for (i = 0; i < tin->streams->len; i++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(tin->streams, i); if (!stream_class) continue; /* for each file_stream */ for (j = 0; j < stream_class->streams->len; j++) { struct ctf_stream_definition *stream; struct ctf_file_stream *cfs; stream = g_ptr_array_index(stream_class->streams, j); if (!stream) continue; cfs = container_of(stream, struct ctf_file_stream, parent); ret = seek_file_stream_by_timestamp(cfs, timestamp); if (ret == 0) { /* Add to heap */ ret = bt_heap_insert(stream_heap, cfs); if (ret) { /* Return positive error. */ return -ret; } found = 1; } else if (ret > 0) { /* * Error in seek (not EOF), failure. */ return ret; } /* on EOF just do not put stream into heap. */ } } return found ? 0 : EOF; } /* * Find timestamp of last event in the stream. * * Return value: 0 if OK, positive error value on error, EOF if no * events were found. */ static int find_max_timestamp_ctf_file_stream(struct ctf_file_stream *cfs, uint64_t *timestamp_end) { int ret, count = 0, i; uint64_t timestamp = 0; struct ctf_stream_pos *stream_pos; stream_pos = &cfs->pos; /* * We start by the last packet, and iterate backwards until we * either find at least one event, or we reach the first packet * (some packets can be empty). */ for (i = stream_pos->packet_index->len - 1; i >= 0; i--) { stream_pos->packet_seek(&stream_pos->parent, i, SEEK_SET); count = 0; /* read each event until we reach the end of the stream */ do { ret = stream_read_event(cfs); if (ret == 0) { count++; timestamp = cfs->parent.real_timestamp; } } while (ret == 0); /* Error */ if (ret > 0) goto end; assert(ret == EOF); if (count) break; } if (count) { *timestamp_end = timestamp; ret = 0; } else { /* Return EOF if no events were found */ ret = EOF; } end: return ret; } /* * Find the stream within a stream class that contains the event with * the largest timestamp, and save that timestamp. * * Return 0 if OK, EOF if no events were found in the streams, or * positive value on error. */ static int find_max_timestamp_ctf_stream_class( struct ctf_stream_declaration *stream_class, struct ctf_file_stream **cfsp, uint64_t *max_timestamp) { int ret = EOF, i, found = 0; for (i = 0; i < stream_class->streams->len; i++) { struct ctf_stream_definition *stream; struct ctf_file_stream *cfs; uint64_t current_max_ts = 0; stream = g_ptr_array_index(stream_class->streams, i); if (!stream) continue; cfs = container_of(stream, struct ctf_file_stream, parent); ret = find_max_timestamp_ctf_file_stream(cfs, ¤t_max_ts); if (ret == EOF) continue; if (ret != 0) break; if (current_max_ts >= *max_timestamp) { *max_timestamp = current_max_ts; *cfsp = cfs; found = 1; } } assert(ret >= 0 || ret == EOF); if (found) { return 0; } return ret; } /* * seek_last_ctf_trace_collection: seek trace collection to last event. * * Return 0 if OK, EOF if no events were found, or positive error value * on error. */ static int seek_last_ctf_trace_collection(struct trace_collection *tc, struct ctf_file_stream **cfsp) { int i, j, ret; int found = 0; uint64_t max_timestamp = 0; if (!tc) return 1; /* For each trace in the trace_collection */ for (i = 0; i < tc->array->len; i++) { struct ctf_trace *tin; struct bt_trace_descriptor *td_read; td_read = g_ptr_array_index(tc->array, i); if (!td_read) continue; tin = container_of(td_read, struct ctf_trace, parent); /* For each stream_class in the trace */ for (j = 0; j < tin->streams->len; j++) { struct ctf_stream_declaration *stream_class; stream_class = g_ptr_array_index(tin->streams, j); if (!stream_class) continue; ret = find_max_timestamp_ctf_stream_class(stream_class, cfsp, &max_timestamp); if (ret > 0) goto end; if (ret == 0) found = 1; assert(ret == EOF || ret == 0); } } /* * Now we know in which file stream the last event is located, * and we know its timestamp. */ if (!found) { ret = EOF; } else { ret = seek_file_stream_by_timestamp(*cfsp, max_timestamp); assert(ret == 0); } end: return ret; } int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *iter_pos) { struct trace_collection *tc; int i, ret; if (!iter || !iter_pos) return -EINVAL; switch (iter_pos->type) { case BT_SEEK_RESTORE: if (!iter_pos->u.restore) return -EINVAL; bt_heap_free(iter->stream_heap); ret = bt_heap_init(iter->stream_heap, 0, stream_compare); if (ret < 0) goto error_heap_init; for (i = 0; i < iter_pos->u.restore->stream_saved_pos->len; i++) { struct stream_saved_pos *saved_pos; struct ctf_stream_pos *stream_pos; struct ctf_stream_definition *stream; saved_pos = &g_array_index( iter_pos->u.restore->stream_saved_pos, struct stream_saved_pos, i); stream = &saved_pos->file_stream->parent; stream_pos = &saved_pos->file_stream->pos; stream_pos->packet_seek(&stream_pos->parent, saved_pos->cur_index, SEEK_SET); /* * the timestamp needs to be restored after * packet_seek, because this function resets * the timestamp to the beginning of the packet */ stream->real_timestamp = saved_pos->current_real_timestamp; stream->cycles_timestamp = saved_pos->current_cycles_timestamp; stream_pos->offset = saved_pos->offset; stream_pos->last_offset = LAST_OFFSET_POISON; stream->current.real.begin = 0; stream->current.real.end = 0; stream->current.cycles.begin = 0; stream->current.cycles.end = 0; stream->prev.real.begin = 0; stream->prev.real.end = 0; stream->prev.cycles.begin = 0; stream->prev.cycles.end = 0; printf_debug("restored to cur_index = %" PRId64 " and " "offset = %" PRId64 ", timestamp = %" PRIu64 "\n", stream_pos->cur_index, stream_pos->offset, stream->real_timestamp); ret = stream_read_event(saved_pos->file_stream); if (ret != 0) { goto error; } /* Add to heap */ ret = bt_heap_insert(iter->stream_heap, saved_pos->file_stream); if (ret) goto error; } return 0; case BT_SEEK_TIME: tc = iter->ctx->tc; bt_heap_free(iter->stream_heap); ret = bt_heap_init(iter->stream_heap, 0, stream_compare); if (ret < 0) goto error_heap_init; /* for each trace in the trace_collection */ for (i = 0; i < tc->array->len; i++) { struct ctf_trace *tin; struct bt_trace_descriptor *td_read; td_read = g_ptr_array_index(tc->array, i); if (!td_read) continue; tin = container_of(td_read, struct ctf_trace, parent); ret = seek_ctf_trace_by_timestamp(tin, iter_pos->u.seek_time, iter->stream_heap); /* * Positive errors are failure. Negative value * is EOF (for which we continue with other * traces). 0 is success. Note: on EOF, it just * means that no stream has been added to the * iterator for that trace, which is fine. */ if (ret != 0 && ret != EOF) goto error; } return 0; case BT_SEEK_BEGIN: tc = iter->ctx->tc; bt_heap_free(iter->stream_heap); ret = bt_heap_init(iter->stream_heap, 0, stream_compare); if (ret < 0) goto error_heap_init; for (i = 0; i < tc->array->len; i++) { struct ctf_trace *tin; struct bt_trace_descriptor *td_read; int stream_id; td_read = g_ptr_array_index(tc->array, i); if (!td_read) continue; tin = container_of(td_read, struct ctf_trace, parent); /* Populate heap with each stream */ for (stream_id = 0; stream_id < tin->streams->len; stream_id++) { struct ctf_stream_declaration *stream; int filenr; stream = g_ptr_array_index(tin->streams, stream_id); if (!stream) continue; for (filenr = 0; filenr < stream->streams->len; filenr++) { struct ctf_file_stream *file_stream; file_stream = g_ptr_array_index( stream->streams, filenr); if (!file_stream) continue; ret = babeltrace_filestream_seek( file_stream, iter_pos, stream_id); if (ret != 0 && ret != EOF) { goto error; } if (ret == EOF) { /* Do not add EOF streams */ continue; } ret = bt_heap_insert(iter->stream_heap, file_stream); if (ret) goto error; } } } break; case BT_SEEK_LAST: { struct ctf_file_stream *cfs = NULL; tc = iter->ctx->tc; ret = seek_last_ctf_trace_collection(tc, &cfs); if (ret != 0 || !cfs) goto error; /* remove all streams from the heap */ bt_heap_free(iter->stream_heap); /* Create a new empty heap */ ret = bt_heap_init(iter->stream_heap, 0, stream_compare); if (ret < 0) goto error; /* Insert the stream that contains the last event */ ret = bt_heap_insert(iter->stream_heap, cfs); if (ret) goto error; break; } default: /* not implemented */ return -EINVAL; } return 0; error: bt_heap_free(iter->stream_heap); error_heap_init: if (bt_heap_init(iter->stream_heap, 0, stream_compare) < 0) { bt_heap_free(iter->stream_heap); g_free(iter->stream_heap); iter->stream_heap = NULL; ret = -ENOMEM; } return ret; } struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter) { struct bt_iter_pos *pos; struct trace_collection *tc; struct ctf_file_stream *file_stream = NULL, *removed; struct ptr_heap iter_heap_copy; int ret; if (!iter) return NULL; tc = iter->ctx->tc; pos = g_new0(struct bt_iter_pos, 1); pos->type = BT_SEEK_RESTORE; pos->u.restore = g_new0(struct bt_saved_pos, 1); pos->u.restore->tc = tc; pos->u.restore->stream_saved_pos = g_array_new(FALSE, TRUE, sizeof(struct stream_saved_pos)); if (!pos->u.restore->stream_saved_pos) goto error; ret = bt_heap_copy(&iter_heap_copy, iter->stream_heap); if (ret < 0) goto error_heap; /* iterate over each stream in the heap */ file_stream = bt_heap_maximum(&iter_heap_copy); while (file_stream != NULL) { struct stream_saved_pos saved_pos; assert(file_stream->pos.last_offset != LAST_OFFSET_POISON); saved_pos.offset = file_stream->pos.last_offset; saved_pos.file_stream = file_stream; saved_pos.cur_index = file_stream->pos.cur_index; saved_pos.current_real_timestamp = file_stream->parent.real_timestamp; saved_pos.current_cycles_timestamp = file_stream->parent.cycles_timestamp; g_array_append_val( pos->u.restore->stream_saved_pos, saved_pos); printf_debug("stream : %" PRIu64 ", cur_index : %zd, " "offset : %zd, " "timestamp = %" PRIu64 "\n", file_stream->parent.stream_id, saved_pos.cur_index, saved_pos.offset, saved_pos.current_real_timestamp); /* remove the stream from the heap copy */ removed = bt_heap_remove(&iter_heap_copy); assert(removed == file_stream); file_stream = bt_heap_maximum(&iter_heap_copy); } bt_heap_free(&iter_heap_copy); return pos; error_heap: g_array_free(pos->u.restore->stream_saved_pos, TRUE); error: g_free(pos); return NULL; } struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp) { struct bt_iter_pos *pos; if (!iter) return NULL; pos = g_new0(struct bt_iter_pos, 1); pos->type = BT_SEEK_TIME; pos->u.seek_time = timestamp; return pos; } /* * babeltrace_filestream_seek: seek a filestream to given position. * * The stream_id parameter is only useful for BT_SEEK_RESTORE. */ static int babeltrace_filestream_seek(struct ctf_file_stream *file_stream, const struct bt_iter_pos *begin_pos, unsigned long stream_id) { int ret = 0; if (!file_stream || !begin_pos) return -EINVAL; switch (begin_pos->type) { case BT_SEEK_CUR: /* * just insert into the heap we should already know * the timestamps */ break; case BT_SEEK_BEGIN: file_stream->pos.packet_seek(&file_stream->pos.parent, 0, SEEK_SET); ret = stream_read_event(file_stream); break; case BT_SEEK_TIME: case BT_SEEK_RESTORE: default: assert(0); /* Not yet defined */ } return ret; } int bt_iter_add_trace(struct bt_iter *iter, struct bt_trace_descriptor *td_read) { struct ctf_trace *tin; int stream_id, ret = 0; tin = container_of(td_read, struct ctf_trace, parent); /* Populate heap with each stream */ for (stream_id = 0; stream_id < tin->streams->len; stream_id++) { struct ctf_stream_declaration *stream; int filenr; stream = g_ptr_array_index(tin->streams, stream_id); if (!stream) continue; for (filenr = 0; filenr < stream->streams->len; filenr++) { struct ctf_file_stream *file_stream; struct bt_iter_pos pos; file_stream = g_ptr_array_index(stream->streams, filenr); if (!file_stream) continue; pos.type = BT_SEEK_BEGIN; ret = babeltrace_filestream_seek(file_stream, &pos, stream_id); if (ret == EOF) { ret = 0; continue; } else if (ret != 0 && ret != EAGAIN) { goto error; } /* Add to heap */ ret = bt_heap_insert(iter->stream_heap, file_stream); if (ret) goto error; } } error: return ret; } int bt_iter_init(struct bt_iter *iter, struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos) { int i; int ret = 0; if (!iter || !ctx) return -EINVAL; if (ctx->current_iterator) { ret = -1; goto error_ctx; } iter->stream_heap = g_new(struct ptr_heap, 1); iter->end_pos = end_pos; bt_context_get(ctx); iter->ctx = ctx; ret = bt_heap_init(iter->stream_heap, 0, stream_compare); if (ret < 0) goto error_heap_init; for (i = 0; i < ctx->tc->array->len; i++) { struct bt_trace_descriptor *td_read; td_read = g_ptr_array_index(ctx->tc->array, i); if (!td_read) continue; ret = bt_iter_add_trace(iter, td_read); if (ret < 0) goto error; } ctx->current_iterator = iter; if (begin_pos && begin_pos->type != BT_SEEK_BEGIN) { ret = bt_iter_set_pos(iter, begin_pos); } return ret; error: bt_heap_free(iter->stream_heap); error_heap_init: g_free(iter->stream_heap); iter->stream_heap = NULL; error_ctx: return ret; } struct bt_iter *bt_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos) { struct bt_iter *iter; int ret; if (!ctx) return NULL; iter = g_new0(struct bt_iter, 1); ret = bt_iter_init(iter, ctx, begin_pos, end_pos); if (ret) { g_free(iter); return NULL; } return iter; } void bt_iter_fini(struct bt_iter *iter) { assert(iter); if (iter->stream_heap) { bt_heap_free(iter->stream_heap); g_free(iter->stream_heap); } iter->ctx->current_iterator = NULL; bt_context_put(iter->ctx); } void bt_iter_destroy(struct bt_iter *iter) { assert(iter); bt_iter_fini(iter); g_free(iter); } int bt_iter_next(struct bt_iter *iter) { struct ctf_file_stream *file_stream, *removed; int ret; if (!iter) return -EINVAL; file_stream = bt_heap_maximum(iter->stream_heap); if (!file_stream) { /* end of file for all streams */ ret = 0; goto end; } ret = stream_read_event(file_stream); if (ret == EOF) { removed = bt_heap_remove(iter->stream_heap); assert(removed == file_stream); ret = 0; goto end; } else if (ret == EAGAIN) { /* * Live streaming: the stream is inactive for now, we * just updated the timestamp_end to skip over this * stream up to a certain point in time. * * Since we can't guarantee that a stream will ever have * any activity, we can't rely on the fact that * bt_iter_next will be called for each stream and deal * with inactive streams. So instead, we return 0 here * to the caller and let the read API handle the * retry case. */ ret = 0; goto reinsert; } else if (ret) { goto end; } reinsert: /* Reinsert the file stream into the heap, and rebalance. */ removed = bt_heap_replace_max(iter->stream_heap, file_stream); assert(removed == file_stream); end: return ret; } babeltrace-1.2.1/lib/trace-handle.c0000644000175000017500000000613712304150543013765 00000000000000/* * trace_handle.c * * Babeltrace Library * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include struct bt_trace_handle *bt_trace_handle_create(struct bt_context *ctx) { struct bt_trace_handle *th; if (!ctx) return NULL; th = g_new0(struct bt_trace_handle, 1); th->id = ctx->last_trace_handle_id++; return th; } void bt_trace_handle_destroy(struct bt_trace_handle *th) { g_free(th); } const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id) { struct bt_trace_handle *handle; if (!ctx) return NULL; handle = g_hash_table_lookup(ctx->trace_handles, (gpointer) (unsigned long) handle_id); if (!handle) return NULL; return handle->path; } uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id, enum bt_clock_type type) { struct bt_trace_handle *handle; uint64_t ret; if (!ctx) return -1ULL; handle = g_hash_table_lookup(ctx->trace_handles, (gpointer) (unsigned long) handle_id); if (!handle) { ret = -1ULL; goto end; } if (type == BT_CLOCK_REAL) { ret = handle->real_timestamp_begin; } else if (type == BT_CLOCK_CYCLES) { ret = handle->cycles_timestamp_begin; } else { ret = -1ULL; } end: return ret; } uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id, enum bt_clock_type type) { struct bt_trace_handle *handle; uint64_t ret; if (!ctx) return -1ULL; handle = g_hash_table_lookup(ctx->trace_handles, (gpointer) (unsigned long) handle_id); if (!handle) { ret = -1ULL; goto end; } if (type == BT_CLOCK_REAL) { ret = handle->real_timestamp_end; } else if (type == BT_CLOCK_CYCLES) { ret = handle->cycles_timestamp_end; } else { ret = -1ULL; } end: return ret; } babeltrace-1.2.1/lib/prio_heap/0000755000175000017500000000000012306621157013317 500000000000000babeltrace-1.2.1/lib/prio_heap/Makefile.am0000644000175000017500000000020311725513332015265 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libprio_heap.la libprio_heap_la_SOURCES = prio_heap.c babeltrace-1.2.1/lib/prio_heap/Makefile.in0000644000175000017500000004121312306621104015275 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = lib/prio_heap DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libprio_heap_la_LIBADD = am_libprio_heap_la_OBJECTS = prio_heap.lo libprio_heap_la_OBJECTS = $(am_libprio_heap_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libprio_heap_la_SOURCES) DIST_SOURCES = $(libprio_heap_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libprio_heap.la libprio_heap_la_SOURCES = prio_heap.c all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/prio_heap/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign lib/prio_heap/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libprio_heap.la: $(libprio_heap_la_OBJECTS) $(libprio_heap_la_DEPENDENCIES) $(EXTRA_libprio_heap_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libprio_heap_la_OBJECTS) $(libprio_heap_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/prio_heap.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/lib/prio_heap/prio_heap.c0000644000175000017500000001243012272477052015356 00000000000000/* * prio_heap.c * * Static-sized priority heap containing pointers. Based on CLRS, * chapter 6. * * Copyright 2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #ifndef max_t #define max_t(type, a, b) \ ((type) (a) > (type) (b) ? (type) (a) : (type) (b)) #endif #ifdef DEBUG_HEAP void check_heap(const struct ptr_heap *heap) { size_t i; if (!heap->len) return; for (i = 1; i < heap->len; i++) assert(!heap->gt(heap->ptrs[i], heap->ptrs[0])); } #endif static size_t parent(size_t i) { return (i - 1) >> 1; } static size_t left(size_t i) { return (i << 1) + 1; } static size_t right(size_t i) { return (i << 1) + 2; } /* * Copy of heap->ptrs pointer is invalid after heap_grow. */ static int heap_grow(struct ptr_heap *heap, size_t new_len) { void **new_ptrs; if (likely(heap->alloc_len >= new_len)) return 0; heap->alloc_len = max_t(size_t, new_len, heap->alloc_len << 1); new_ptrs = calloc(heap->alloc_len, sizeof(void *)); if (unlikely(!new_ptrs)) return -ENOMEM; if (likely(heap->ptrs)) memcpy(new_ptrs, heap->ptrs, heap->len * sizeof(void *)); free(heap->ptrs); heap->ptrs = new_ptrs; return 0; } static int heap_set_len(struct ptr_heap *heap, size_t new_len) { int ret; ret = heap_grow(heap, new_len); if (unlikely(ret)) return ret; heap->len = new_len; return 0; } int bt_heap_init(struct ptr_heap *heap, size_t alloc_len, int gt(void *a, void *b)) { heap->ptrs = NULL; heap->len = 0; heap->alloc_len = 0; heap->gt = gt; /* * Minimum size allocated is 1 entry to ensure memory allocation * never fails within bt_heap_replace_max. */ return heap_grow(heap, max_t(size_t, 1, alloc_len)); } void bt_heap_free(struct ptr_heap *heap) { free(heap->ptrs); } static void heapify(struct ptr_heap *heap, size_t i) { void **ptrs = heap->ptrs; size_t l, r, largest; for (;;) { void *tmp; l = left(i); r = right(i); if (l < heap->len && heap->gt(ptrs[l], ptrs[i])) largest = l; else largest = i; if (r < heap->len && heap->gt(ptrs[r], ptrs[largest])) largest = r; if (unlikely(largest == i)) break; tmp = ptrs[i]; ptrs[i] = ptrs[largest]; ptrs[largest] = tmp; i = largest; } check_heap(heap); } void *bt_heap_replace_max(struct ptr_heap *heap, void *p) { void *res; if (unlikely(!heap->len)) { (void) heap_set_len(heap, 1); heap->ptrs[0] = p; check_heap(heap); return NULL; } /* Replace the current max and heapify */ res = heap->ptrs[0]; heap->ptrs[0] = p; heapify(heap, 0); return res; } int bt_heap_insert(struct ptr_heap *heap, void *p) { void **ptrs; size_t pos; int ret; ret = heap_set_len(heap, heap->len + 1); if (unlikely(ret)) return ret; ptrs = heap->ptrs; pos = heap->len - 1; while (pos > 0 && heap->gt(p, ptrs[parent(pos)])) { /* Move parent down until we find the right spot */ ptrs[pos] = ptrs[parent(pos)]; pos = parent(pos); } ptrs[pos] = p; check_heap(heap); return 0; } void *bt_heap_remove(struct ptr_heap *heap) { switch (heap->len) { case 0: return NULL; case 1: (void) heap_set_len(heap, 0); return heap->ptrs[0]; } /* Shrink, replace the current max by previous last entry and heapify */ heap_set_len(heap, heap->len - 1); /* len changed. previous last entry is at heap->len */ return bt_heap_replace_max(heap, heap->ptrs[heap->len]); } void *bt_heap_cherrypick(struct ptr_heap *heap, void *p) { size_t pos, len = heap->len; for (pos = 0; pos < len; pos++) if (unlikely(heap->ptrs[pos] == p)) goto found; return NULL; found: if (unlikely(heap->len == 1)) { (void) heap_set_len(heap, 0); check_heap(heap); return heap->ptrs[0]; } /* Replace p with previous last entry and heapify. */ heap_set_len(heap, heap->len - 1); /* len changed. previous last entry is at heap->len */ heap->ptrs[pos] = heap->ptrs[heap->len]; heapify(heap, pos); return p; } int bt_heap_copy(struct ptr_heap *dst, struct ptr_heap *src) { int ret; ret = bt_heap_init(dst, src->alloc_len, src->gt); if (ret < 0) goto end; ret = heap_set_len(dst, src->len); if (ret < 0) goto end; memcpy(dst->ptrs, src->ptrs, src->len * sizeof(void *)); end: return ret; } babeltrace-1.2.1/lib/babeltrace.c0000644000175000017500000000311112075630002013505 00000000000000/* * babeltrace.c * * Babeltrace Library * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include int babeltrace_verbose, babeltrace_debug; static void __attribute__((constructor)) init_babeltrace_lib(void) { if (getenv("BABELTRACE_VERBOSE")) babeltrace_verbose = 1; if (getenv("BABELTRACE_DEBUG")) babeltrace_debug = 1; } babeltrace-1.2.1/LICENSE0000644000175000017500000000121212075630002011514 00000000000000Common Trace Format - Licensing Mathieu Desnoyers September 26, 2010 * MIT license : This library is distributed under the MIT license. It is intended to allow use in both free and proprietary software. See mit-license.txt for details. * GPLv2 Library test code is distributed under the GPLv2 license, as specified in the per-file license. See gpl-2.0.txt for details. * LGPLv2.1 The file include/babeltrace/list.h is licensed under LGPLv2.1. It only contains trivial static inline functions and macros, and, therefore, including it does not make babeltrace a derivative work on this header. Please refer to the LGPLv2.1 license for details. babeltrace-1.2.1/Makefile.in0000644000175000017500000007131212306621105012565 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . DIST_COMMON = README $(am__configure_deps) $(dist_doc_DATA) \ $(dist_noinst_DATA) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/babeltrace-ctf.pc.in \ $(srcdir)/babeltrace.pc.in $(srcdir)/config.h.in \ $(top_srcdir)/configure ChangeLog config/config.guess \ config/config.sub config/depcomp config/install-sh \ config/ltmain.sh config/missing config/py-compile \ config/ylwrap ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = babeltrace.pc babeltrace-ctf.pc CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfigdir)" DATA = $(dist_doc_DATA) $(dist_noinst_DATA) $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" GZIP_ENV = --best DIST_ARCHIVES = $(distdir).tar.bz2 distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include ACLOCAL_AMFLAGS = -I m4 SUBDIRS = include types compat lib formats converter bindings tests doc extras dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \ std-ext-lib.txt dist_noinst_DATA = CodingStyle pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 babeltrace.pc: $(top_builddir)/config.status $(srcdir)/babeltrace.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ babeltrace-ctf.pc: $(top_builddir)/config.status $(srcdir)/babeltrace-ctf.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-dist_docDATA: $(dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod u+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dist_docDATA install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-dist_docDATA uninstall-pkgconfigDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-lzma dist-shar dist-tarZ dist-xz \ dist-zip distcheck distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-pkgconfigDATA install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am \ uninstall-dist_docDATA uninstall-pkgconfigDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/ChangeLog0000644000175000017500000007121412306621035012275 000000000000002014-03-08 Babeltrace 1.2.1 * Fix: Accept an input port in the live URL when no session is provided 2014-02-28 Babeltrace 1.2.0 * Fix: lttng-live parse url port check 2014-02-27 Babeltrace 1.2.0-rc2 * Fix: events discarded timing inaccuracy * Fix: Move offset endianness conversion to get_data_packet * Fix: Remove negative comparison to unsigned value * Fix: Uninitialized scalar variable * Fix: Don't assert on metadata generation failure * Fix: add missing SIGTERM and SIGINT handler * Fix: Reverse incorrect error message argument order * Cleanup: add brackets to lttng-live-plugin.c * Cleanup lttng-live: add brackets in lttng_live_read() * Cleanup lttng-live: 80 columns wrapping * Fix: handle new streams in get_data_packet() * Fix: accept empty metadata on append * Fix: lttng-live: 100ms active poll delay * Fix: lttng-live await metadata * Fix: lttng-live recv() and send() flags, partial recv() * Fix: missing little endian conversion for one index field * Cleanup: remove logically dead code * Fix: untrusted value as argument * Fix: off by one in lttng-live path length check * Fix: fclose return value unchecked * Fix: call to append metadata when new metadata is added * Fix: use memstream instead of tmp file for live metadata * Fix: assign a trace handle to every live trace * Fix: get_new_metadata receive all the metadata * Fix: Coverity warning CWE-457: Use of Uninitialized Variable * Revert "Fix: get_new_metadata receive all the metadata" * Revert "Fix: assign a trace handle to every live trace" * Fix: assign a trace handle to every live trace * Fix: get_new_metadata receive all the metadata * CTF: Support incremental metadata append * Fix: ctf.c fscanf missing integer length check * Bump soname version to 1.0.0 * Move scanner allocation/free outside of ctf_open_trace_metadata_read * CTF parser: prepare for incremental metadata parsing * Python bindings: return char arrays as strings in value() * Python bindings: sched_switch example clean-up * Fix: add missing test scripts to Makefile.am 2014-02-14 Babeltrace 1.2.0-rc1 * Cleanup: lttng-live: use perror() rather than fprintf for err msg * Fix: lttng-live: handle orderly shutdown * Fix: Unchecked array index when importing trace indexes * LTTng-live usage documentation * Fix: ctf: uninitialized packet_index, misuse of index * Cleanup: rename lttng live implementation files * Attach and list by session name and hostname * get_new_streams and multi-session * Create the live viewer session before attaching * Sync lttng live ABI with lttng-tools * Extract adding a trace to the iterator from bt_iter_init * Compute discarded events in live * Merge real index and cycles index into a single index * Fix: import index containing only a header * Remove outdated Python bindings test * Fix: replace assert with proper error handling * Fix: lttng-live: unbounded use of sscanf() in parse_url() * Fix: lttng-live should accept 0 in addresses * Remove default to display field names in live * Remove null checks on g_new0 * Cleanup: iterator unused pointer value * Fix: lttng-live: resource leak * Fix: lttng-live uninitialized scalar variable * Fix: lttng-live non NULL-terminated strings * lttng-live: fix unchecked mkdir return value * lttng-live input plugin * Live: let read API detect inactive streams, allow streams without fd * Add Jérémie Galarneau as co-maintainer * Fix: disallow re-using same event ID in same stream * Fix: check for unknown enum/variant fields * Fix: libbabeltrace lib build dependencies * Fixes in babeltrace core to support non-CTF traces * Add a private pointer to the ctf_stream_pos * Be more widely accepting for missing variant/enum fields * Cleanup: remove index_read (unused var) * Refuse 0 integer size * Fix ctf-writer: possible use after free * Fix data_offset when importing the indexes * Merge branch 'master' into bindings/python * Python-bindings fix: Out of tree build fails to find babeltrace.i * Test: Validate that enumeration mapping strings are properly escaped * Fix ctf-writer: Quote strings provided as enumeration mappings * Fix: read/write mode check * Cleanup: do not duplicate code in float fix * Fix: floats should set content size in tmp definition * Handle empty streams on iterator init * Handle packets containing only a header * Handle the inactive streams * Fix: test content size vs headers len * Fix: check packet index len * Fix: uncheck null pointer * Fix: test for less than 1 byte packets * Fix: reversed logic in packet vs content size * Fix: clarify end of packet error * Fix: string packet boundary handling, bits vs bytes * Fix: add stricter checks on packet boundaries * Parse CTF indexes * Cleanup: fix typo * Fix: fail when reading 0 byte event * Python-bindings fix: outdated dist target babeltrace.i * Python-bindings: Refactor the CTFWriter API * Fix: bt_ctf_field_generic_validate should return < 0 on error * Fix: Take the iterator's end position into account * Fix: Use the bt_iter_set_pos function to set the begin_pos * Python-bindings: Move declaration bindings out of the _Definition class * Python-bindings: Refactor the FieldDecl and EventDecl classes * Python-bindings: Move the _scopes array out of the Event class * Python-bindings: Refactor the Event class * Python-bindings: Refactor the TraceHandle class to use properties * Python-bindings: Refactor the Context class * Test ctf-writer: Verify that enumerations are validated before use * Fix ctf-writer: Reject enumerations containing no mappings * Fix lint warnings * Expose text arrays the same way as regular arrays * Don't generate Python bindings by default * Add a usage example for the CTF Writer Python bindings * Add CTF Writer Python bindings * Rename the ctf class to CTFReader * Fix: Python bindings array access functions write out of bounds * Add support for structure fields in the Python bindings * Add support for variant fields in the Python bindings * Add support for floating point fields in the Python bindings * Fix: Use of functions not provided by glib 2.22 * Fix: Throw a FieldError exception when get_value() fails * Remove Python 2 specific examples * Add a python bindings sequence test * Support for the sequence type * Add a generic get_value() implementation * Support getting the value of enums * Remove the unnecessary underscore prefix * Return event fields by field name * Merge branch 'master' into bindings/python * ctf writer BSD compatibily: remove O_DIRECTORY * Fix ctf writer lints * linter fix: comparison of fd >= 0 * test ctf writer: fix lints * ctf-writer: fix linter defects * ctf-writer: Coding style fix * Tests: Add a CTF Writer test * Add CTF Writer implementation * Add public CTF Writer API headers * Fix: Don't create a new packet if ctf_move_pos() seeks out of a packet * Fix: Uninitialized ctf_stream_pos structure in ctf_float_write() * Fix: Use the packet's final size when mmap-ing the next packet * Fix: Close traces on context destruction * gcc warning fix: -Wextra * Declare enum type to use from C++ * Fix: test_seek should only output one TAP plan * Revert "Add missing declaration of ssize_t as unsigned long for SWIG" * Add missing declaration of ssize_t as unsigned long for SWIG * Fix (python): use of braces in format strings * Add missing call to _bt_ctf_get_decl_from_def() when calling _bt_ctf_get_int_len(). * Merge branch 'master' into bindings/python * Fix: test_seek static linking * Tests: fix string octal encoding * Add missing Makefile.am * make check VPATH build * Add missing test files to make dist * Tests: Use Perl prove as the testsuite runner * Tests: Add trace reading test with babeltrace bin * Tests: Split lib tests in multiple standalone test scripts * Tests: Rename tests under lib with tests naming convention * Tests: Move TAP helpers to tests/utils/tap * Fix ctf_clock_declaration_visit returning an error when reading a boolean * Fix CTF parser hang with bison 3.0 * Add missing lex/bison generated files to make clean * Put the libbabeltrace-ctf specific parts of babeltrace.pc into a babeltrace-ctf.pc file * Test for presence of bison and flex when building from git * Fix: Unchecked asprintf/vasprintf return values * Missing NULL pointer init in tap.c * Add bt_unregister_format function support * Fix: libcompat should be noinst (statically linked) * Add MinGW definitions to endian.h * Add MinGW implementation of UUID functions * Add Windows exe files to .gitignore * Add MinGW32 libraries to executables * Move strerror_r to compat directory * Document: manpage: chronologically ordered events * Make python bindings compile with trunk * Merge branch 'master' into bindings/python * babeltrace-log: UTC timestamps * Cleanup: comment mismatch with code * Add unit test validating seeking to last event of a trace * Remove unused function bt_trace_handle_get_id * Cleanup: remove whitespaces at end of lines * Remove extra -I for python bindings 2013-06-18 Babeltrace 1.1.1 * Compare traces by stream path as secondary key * Fix: use index, not cur_index, for SEEK_SET validation * Fix: ctf-text irregular output with disabled field names * Support old compilers * Remove useless variable assignment * Fix: Remove extra quote after an include directive * Don't dereference before NULL check * eliminate dead code * fix babeltrace-log error checking * Fix resource leak on error path * Fix: handle error checking should compare against NULL * Remove unused array in bt_context_add_traces_recursive * Fix: Suppress a compiler warning (always-false condition) * Cleanup: remove trailing whitespaces * Move memstream.h and uuid.h to include/babeltrace/compat directory * Fix: handling of empty streams * Add new option --clock-offset-ns * Fix: add missing error return when create_event_definitions fails * Fix: ctf-text should link on libbabeltrace-ctf * Move clock to bt_trace_descriptor * Remove unused stream_heap * Move trace collection pointer to bt_trace_descriptor * Move bt_handle to bt_trace_descriptor * Move bt_context to bt_trace_descriptor * Privatize struct bt_trace descriptor, move trace path * Add backward ref from bt_stream_pos to bt_trace_descriptor * Fix kFreeBSD build * Fix: babeltrace-log timestamps should be in nsec * Use objstack for AST allocation * Remove unused gc field * Use objstack to store nodes * Use objstack for strings * Implement objstack for parser * Fix: octal and hex string handling * Simplify error node * Lexer cleanup * Fix: invalid integer suffix parsing * Test cleanup * Test cleanup * Test cleanup * Fix: bootstrap should call libtoolize * Fix bootstrap script * Use uint64_t for packet_map_len * Add smalltrace succeed/fail test cases * Support packets and trace files smaller than page size * Move ctf-metadata plugin into its own shared object * Implement ctf-metadata output plugin * Handle make_node errors with TLS dummy node * Remove nested expressions * Eliminate dead code * Fix: trace_collection_add() add after check * Handle integers in lexer rather than grammar * Implement perror printf * Support escape characters in metadata strings * Add error node to AST * Introduce macro to enforce matching enum to string for node types * Fix: add semantic check in grammar * Implement likely/unlikely ifdefs * Fix unary constant use after error * Use new print macros in ctf-parser.y * Print error on invalid token * Implement macros for error printout * Add line number to parser nodes * Fix: handle errors gracefully * Fix: memleak on error path * Add missing NULL pointer check * Show token in CTF parser error * Remove unused lineno from struct ctf_scanner * Show line numbers in CTF parser errors * Ignore Windows-style EOL character in metadata * Replace AM_PROG_MKDIR obsolete macro with AC_PROG_MKDIR_P 2013-03-23 Babeltrace 1.1.0 * Reinsert "at end of stream" message for discarded events * Improvement: Message from babeltrace concerning discarded events needs i * Cleanup: typo fix * Cleanup: add end of line at end of verbose message * Fix: misleading message from babeltrace --verbose * Fix: babeltrace --fields all overrides --no-delta * Add verbosity to stream id error message * Fix: Ensure the specified input format is CTF * Fix: Undefined behavior of double free on strlist in get_names_args * Fix: ctf-text: don't close stdout * Fix: warning message for unexpected trace byte order * Namespace the struct declaration * Namespace the struct definition * Namespace the struct format * Namespace the struct mmap_stream * Namespace the struct trace_descriptor * Namespace struct stream_pos * Namespace compliance for dependencies function * Cleanup error messages * Fix: babeltrace: make '-w' actually work * Convert the unit tests to the TAP format * Spelling cleanups within comments * Move the bitfield test to tests/lib/ * Fix: Added a null pointer check to bt_ctf_field_name * Add babeltrace.pc to gitignore * namespacing: place flex/bison symbols under bt_yy namespace * namespace the lookup_integer function * namespace the definition functions * namespace the variant functions * namespace the declaration functions * namespace the collection functions * namespace the heap functions * namespace the struct functions * namespace the string functions * namespace the sequence functions * namespace the int functions * namespace the enum functions * namespace definition_ref and definition_unref * namespace declaration_ref and declaration_unref * namespace the array functions * namespace the scope_path functions * Hide internal functions of libbabeltrace-ctf * Hide internal functions of ctf-text * BT_HIDDEN macro * Namespace the lookup_enum function 2012-01-24 Babeltrace 1.0.3 * Fix: Double free when calling bt_context_remove_trace() * Add missing runall.sh to dist packaging * Fix: alignment of compound types containing array field 2012-01-11 Babeltrace 1.0.2 * Fix: add tests/lib missing files to Makefile.am 2012-01-11 Babeltrace 1.0.1 * Provides a basic pkg-config file for libbabeltrace * Fix erroneous warning/error messages * Fix comment in context.h * Cleanup: Remove whitespace at EOL from mit-license.txt * Add missing permission notice in each source file * Adding a test which do a sequence of seek BEGIN, LAST, BEGIN, LAST * Run seek tests on a second trace file * Add #define _GNU_SOURCE to remove warning about asprintf * Include a test for SEEK_BEGIN and SEEK_LAST * Fix: Report success even if we find at least one valid stream in find_max_timestamp_ctf_stream_class * Fix SEEK_BEGIN for streams that do not contain any event 2012-10-27 Babeltrace 1.0.0 * tests: add test traces to distribution tarball * Document bash requirement for make check in README * Add tests to make check * Fix: add missing header size validation * callbacks.c: handle extract_ctf_stream_event return value * Cleanup: fix cppcheck warning * Cleanup: fix cppcheck warnings * fix double-free on error path 2012-10-18 Babeltrace 1.0.0-rc6 * Add valgrind suppression file for libpopt * Fix: unplug memory leak that causes popt-0.13 to segfault * Fix: test all close/fclose ret val, fix double close * Cleanup: add missing newline * Fix: fd leak on trace close * Fix memory leaks induced by lack of libpopt documentation * babeltrace: fix poptGetOptArg memleak * plugins: implement plugin unregister * Doc: valgrind with babeltrace (glib workaround) * callsites: fix memory leak * Fix: free all the metadata-related memory * Fix : Free the iterator callback arrays * Fix : cleanup teardown of context * Fix : protect static float and double declarations * callsite: support instruction pointer field * Document that list.h is LGPLv2.1, but entirely trivial * Fix: callsite support: list multiple callsites * Add callsite support * Fix: Allow 64-bit packet offset * Fix: emf uri: surround by " " * Handle model.emf.uri event info * Fix: Documentation cleanup * Fix: misplaced C++ ifdef * Fix babeltrace-log get big line when the input file last line don't have enter * API Fix: bt_ctf_iter_read_event_flags * Fix: get encoding for char arrays and sequences * Fix: access to declaration from declaration_field * Fix: get_declaration_* should not cast to field * Fix babeltrace-log uninitialized memory (v2) * Revert "Fix babeltrace-log uninitialized memory" * Fix babeltrace-log uninitialized memory * Fix: access field properties by declaration * Fix: check return value of get_char_array * Fix: C++ support to API header files 2012-08-27 Babeltrace 1.0.0-rc5 * Change default printout to add host, process names and vpid * Add support for trace:hostname field * Fix: allow specifying more than one input trace path * Fix: make warnings (partial errors) visible * Fix: --clock-force-correlate to handle trace collections gathered from v * Documentation: update API doc with enum functions * Fix: API: remove unsupported BT_SEEK_END from API * API documentation * Cleanup: shut up gcc uninitialized var warning * Fix: support large files on 32-bit systems * Fix: remove unused fts.h include * Fix: add missing enum support to API * Fix: handle clock offset with frequency different from 1GHz * Cleanup: update ifdef wrapper name * Fix: clarify bt_ctf_get_field_list * Fix trace-collection.h: No such file or directory that build code with l * Fix: check return value of bt_context_create * Fix: ensure mmap_base_offset is zeroed on initialization * Fix: Reswitch to FTW for add_traces_recursive * Fix: don't free unallocated index * Fix: don't close the metadata FD if a FP is passed * Add BT_SEEK_LAST type to bt_iter_pos * Fix: iterator.c BT_SEEK_RESTORE: check return value * Fix: complete error handling of babeltrace API * cleanup: protected -> hidden: cleanup symbol table * Fix: add mmap_base_offset to ctf_stream_pos * Fix: assign the current clock for mmap traces * Fix: libbabeltrace add missing static declaration * Fix: safety checks for opening mmap traces * Remove trace-collection.h from include_headers * Fix: protect visibility of ctf-parser functions * Fix: correct name of bt_ctf_field_get_error in comments and typo in man * Fix: wrong type in bt_ctf_get_uint64/int64 * API cleanup name get_timestamp and get_cycles * fix comment struct bt_saved_pos * Fix: Add missing clock-types.h * Get rid of clock-raw and use real clock * Cleanup (messages): Make the wording of the signedness warning clearer * Fix: error path if heap_init fails * Fix: Remove obsolete bt_iter_seek function * Make the signedness warning useful with the field name * Fix: Restore heap for SEEK_BEGIN * Fix: check if handle is valid * Fix: iterator set_pos * Fix: get rid of consumed flag * Fix: add missing heap_copy * Fix: babeltrace assert() triggered by directories within trace * Several fixes for bt_iter_pos related functions * Fix iterator: various fixes * Fix: remove duplicate yydebug var * Fix babeltrace iterator lib: seek at time 0 2012-05-30 Babeltrace 1.0.0-rc4 * Add CodingStyle to tarball * Add coding style document * Fix: babeltrace should use output format argument * Fix: accept traces which skip stream ids * Use mmap_align * align header: define PAGE_SIZE * Implement mmap alignment header * Cleanup: type warnings * Cleanup: do not overwrite const argv parameters 2012-05-29 Babeltrace 1.0.0-rc3 * Fix: converter error logic * Fix: report appropriate field in error message * Fix: support 64-bit events discarded counter types * Fix: add missing bt_ctf_get_int_len API * Fix bt_context_add_traces_recursive error code 2012-04-24 Babeltrace 1.0.0-rc2 * Fix: return an error if no trace can be opened * Fix: double destroy in context remove 2012-04-18 Babeltrace 1.0.0-rc1 * Fix: -n "field names" option should allow "none" * Fix: Show context field name by default * Manpage fix: babeltrace-log manpage should refer to lttng(1) * Clarify warning message for events discarded * Fix: babeltrace should skip erroneous traces * Fix: put explicit error messages and warnings when opening a trace * Fix: segfault on error handling * Fix: enum must use last value + 1 as next item value * Fix: warn, and don't assert, when reading a value outside enum range * API Fix : missing list fields of event decl * API fix : fill the values for timestamp begin and end * API : list of events in the trace * UUID field should be optional, as specified by CTF spec * Babeltrace ctf-text duplicated error message * API fix/breakage : reexporting bt_ctf_event * fix/breakage API : replace bt_ctf_event * add ctf_event_definition pointer to ctf_stream_definition * Rename ctf_event to ctf_event_declaration * Rename ctf_stream to ctf_stream_definition * Rename ctf_stream_event to ctf_event_definition * Rename ctf_stream_class to ctf_stream_declaration * Cleanup: Remove unneeded local variables from function * API Fix : give access to trace_handle and context * API Fix : handle id to use the public functions * Fix : add the missing seek begin 2012-03-16 Babeltrace 1.0.0-pre4 * fix : bt_ctf_iter_create defaults to BEGIN pos * Fix : only one iterator per context * Fix error checking in bt_context_add_traces_recursive * bt_context_add_trace, bt_iter_pos and bt_iter needed some more comments. * Fix API: add const qualifiers, privatize struct bt_ctf_event * Fix: split ctf/event.c * Fix: seek by timestamp * Fix: remove leftover code from seek begin (unimplemented for now) * Fix: seek error handling * Fix: callbacks.c: more explicit error msg * Fix: ctf/iterator.h bt_ctf_iter_read_event() comment * Add missing iterator.h into the git repo * API fix: Move ctf iterator API members to new babeltrace/ctf/iterator.h * API cleanup: Move bt_iter_create/destroy to internal header * Fix: update missing copyrights and ifdef protection mismatch * Clarify clock correlation error message * Fix build warning: set -lpopt as LDFLAGS rather than CFLAGS * Fix: add missing _GNU_SOURCE define to babeltrace-log.c * Fix: Add memstream.h dependency to Makefile.am * Implement fallback for systems lacking open_memstream and fopenmem * Fix: try to include endian.h by default 2012-03-02 Babeltrace 1.0.0-pre3 * Fix uuid in metadata * Babeltrace wrapper update * uuid wrapper: fix use in visitor * Endian wrapper use fix * FreeBSD uuid wrapper fixes * Fix missing uuid wrapper change * Add endian.h wrapper * Use standard __LONG_MAX__ instead of __WORDSIZE * Create BSD wrapper for uuid * fix API : deal with the optional underscore * Fix API : functions to access fields properties 2012-02-23 Babeltrace 1.0.0-pre2 * linker: privatize prio_heap and babeltrace_types * Linker: privatize libbabeltrace_types * Link statically to internal libraries * Combine duplicated API/pretty-print timestamp code * API : export the offsetted timestamp * Fix : segfault when printing timestamp on index * Fix : coherency in const parameters 2012-02-20 Babeltrace 1.0.0-pre1 * Generically print tracer version (and env) in verbose mode * Fix open_mmap_trace missing support * fix: context.h add missing documentation for packet_seek parameter * Cleanup iterator.h * Fix callback.h documentation * Cleanup: babeltrace.h does not need to include ctf/events.h * API fix: Move callbacks to CTF plugin * Removed unneeded ctf_* forward declarations from babeltrace.h * Remove unneeded forward declarations (ctf-specific) from iterator.h * fix: move read event from iterator to event.h * Fix: ctf specific events.c needs to be within CTF plugin * API fix: packet_seek should take an index rather than offset * Fix API: allow packet_seek override * Fix: add lib missing includes * Fix: packet_seek is local to plugins, but can be overridden * Fix API: rename unclear move_pos_slow to packet_seek * Fix: Check for unknown format * Fix: do not use ctf-specific struct in format.h * fix : callback type, doc and links to libbabeltrace * Fix : callback chain len 2012-02-16 Babeltrace 0.12 * Typedef bt_intern_str * Export the list header with a new namespace * API : add_trace return the trace_handle id * fix manpage: refer to lttng(1) * API : cleanup includes * API : Access CTF events fields * manpage: Add babeltrace-log.1 * API : seek by timestamp * Move the add_traces_recursive out of the library * manpage: use pp instead of PP 2012-02-13 Babeltrace 0.11.1 * Add trace-collection.h to the installed headers 2012-02-13 Babeltrace 0.11 * Add --clock-force-correlate option * lib: open trace error handling fix * Use default if there is no clock declaration * iterator: fix type warning on 32-bit build * Use 64-bit type for packet and content size * Fix context API * Add missing context-internal.h * struct bt_context is opaque * Update comment to match context API code * Print loglevel names * babeltrace lib cleanup, folded with open/remove trace functions * API : iterator get and set position 2012-02-09 Babeltrace 0.10 * Fix clock freq * clock: use freq field * Show env. in verbose mode * Remove all code that depends on trace collection directory structure * Use environment information for extra fields * Parse environment declarations from LTTng-modules and LTTng-UST * Fix typo * Add babeltrace.1 manpage * Update help * Install license files and dependency listing into the system doc * Add ChangeLog to doc install 2012-02-02 Babeltrace 0.9 * Allow signed values in get_signed. Cast unsigned into signed. * Show loglevel information only with value * env needs to be a keyword too * Add env {} warning test case * Add environment (env {}) parser-level support * Revert "Remove leading underscores from identifiers directly in lexer" * Remove leading underscores from identifiers directly in lexer * Fix: do not remove field names when adding fields * API : iterator namespace cleanup * Time offset: use trace offset average * API : trace_handle * Print event discarded at end of stream * Discarded event time range is between last packet event and timestamp_end * Print time range during which events have been dropped * Print events discarded * Add clock offset support * Warn user of clock offsets do not match * Add clocks to trace collection * clock: show as time of day * Implement clock mapping within integer type * Implement clock IR generation * Add warning tests * Relax unknown field handling: warn instead of error * Fix erroneous use of "-n" for additional fields, add "-f" * Output warnings and errors to stderr * Fix double typedef of bt_event_name * Parse clock descriptions * API : split iterator headers from babeltrace.h * Add missing context.h/context.c * Introduce contexts * Fix parallel build for lib/ * Organise libbabeltrace * Export the format.h header * Create the babeltrace include dir on install * callbacks: use correct type for element size * callbacks: Fix set size array size * Fix callback chain array usage * Add time delta to ctf-text * ctf-text: show timestamp in sec.nsec * Fix wrong variable error check * Use the generic call to move_pos_slow 2011-12-12 Babeltrace 0.8 * Add loglevel support * Update libpopt dependency to 1.13 * Document dependency on libpopt >= 1.8 * Describe libtool version dependency * AC_PROG_LIBTOOL is deprecated in favor of LT_INIT * Use realpath for path * Helper function to extract string from fields * Use realpath on trace collection path * allow printing domains when no procname are present, handle various / patterns * Add trace:domain,trace:procname,trace:pid support * Add "-n trace" option to print trace name * Do not install ctf-parser-test * Make ctf open errors more verbose * configure.ac: add check for popt library * Show field names by default, enhance --names option * Move opt_field_names/babeltrace_verbose/babeltrace_debug into lib * Add mmap trace reading * Pass stream pointer with callback caller data 2011-09-29 Babeltrace 0.7 * Add missing stdint.h * Use integer extraction functions * Extract int and char arrays from fields * Add parameters to callbacks * Fix float support * Fix type cast warning * Integer support: add missing signed casts * Remove underscore prefix from field names (pretty-print) * Fix sequence iteration * Fix sequence field name use after free * Fix support for empty streams * Optional file pointer to metadata * Specify callback to move packet in open_trace * Free the callbacks on iter_destroy * Add callback support * Basic seek support * Add callback API * Enhance babeltrace API with position save/restore * Remove unused structure forward declarations * Remove stale local .c struct declarations (unused) * Annotate branches in ctf.c event reading/writing code * Annotate prio heap likely branch * Annotate likely/unlikely branches in headers 2011-08-12 Babeltrace 0.6 * Introduce Babeltrace public API: babeltrace.h * Fix support for gold linker: inappropriate dep removal of plugins 2011-08-12 Babeltrace 0.5 * Initialize size to 0 to eliminate incorrect gcc uninitialized var warning * Fix non-matching packet context wrt last packet event read babeltrace-1.2.1/babeltrace-ctf.pc.in0000644000175000017500000000053612304150543014310 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: Babeltrace CTF parser Description: libbabeltrace-ctf provides the specific bits necessary to read a Common Trace Format (CTF) trace. Version: @PACKAGE_VERSION@ Requires: babeltrace Requires.private: Libs: -L${libdir} -lbabeltrace-ctf Cflags: -I${includedir} babeltrace-1.2.1/aclocal.m40000644000175000017500000016307312306621101012362 00000000000000# generated automatically by aclocal 1.11.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Configure paths for GLIB # Owen Taylor 1997-2001 dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject, dnl gthread, or gio is specified in MODULES, pass to pkg-config dnl AC_DEFUN([AM_PATH_GLIB_2_0], [dnl dnl Get the cflags and libraries from pkg-config dnl AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program], , enable_glibtest=yes) pkg_config_args=glib-2.0 for module in . $4 do case "$module" in gmodule) pkg_config_args="$pkg_config_args gmodule-2.0" ;; gmodule-no-export) pkg_config_args="$pkg_config_args gmodule-no-export-2.0" ;; gobject) pkg_config_args="$pkg_config_args gobject-2.0" ;; gthread) pkg_config_args="$pkg_config_args gthread-2.0" ;; gio*) pkg_config_args="$pkg_config_args $module-2.0" ;; esac done PKG_PROG_PKG_CONFIG([0.16]) no_glib="" if test "x$PKG_CONFIG" = x ; then no_glib=yes PKG_CONFIG=no fi min_glib_version=ifelse([$1], ,2.0.0,$1) AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) if test x$PKG_CONFIG != xno ; then ## don't try to run the test against uninstalled libtool libs if $PKG_CONFIG --uninstalled $pkg_config_args; then echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" enable_glibtest=no fi if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then : else no_glib=yes fi fi if test x"$no_glib" = x ; then GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable=glib_compile_resources gio-2.0` GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_glibtest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$GLIB_LIBS $LIBS" dnl dnl Now check if the installed GLIB is sufficiently new. (Also sanity dnl checks the results of pkg-config to some extent) dnl rm -f conf.glibtest AC_TRY_RUN([ #include #include #include int main () { unsigned int major, minor, micro; char *tmp_version; fclose (fopen ("conf.glibtest", "w")); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_glib_version"); if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_glib_version"); exit(1); } if ((glib_major_version != $glib_config_major_version) || (glib_minor_version != $glib_config_minor_version) || (glib_micro_version != $glib_config_micro_version)) { printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, glib_major_version, glib_minor_version, glib_micro_version); printf ("*** was found! If pkg-config was correct, then it is best\n"); printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); printf("*** required on your system.\n"); printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); printf("*** to point to the correct configuration files\n"); } else if ((glib_major_version != GLIB_MAJOR_VERSION) || (glib_minor_version != GLIB_MINOR_VERSION) || (glib_micro_version != GLIB_MICRO_VERSION)) { printf("*** GLIB header files (version %d.%d.%d) do not match\n", GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); printf("*** library (version %d.%d.%d)\n", glib_major_version, glib_minor_version, glib_micro_version); } else { if ((glib_major_version > major) || ((glib_major_version == major) && (glib_minor_version > minor)) || ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n", glib_major_version, glib_minor_version, glib_micro_version); printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n", major, minor, micro); printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); printf("*** correct copy of pkg-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } } return 1; } ],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_glib" = x ; then AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) if test "$PKG_CONFIG" = "no" ; then echo "*** A new enough version of pkg-config was not found." echo "*** See http://www.freedesktop.org/software/pkgconfig/" else if test -f conf.glibtest ; then : else echo "*** Could not run GLIB test program, checking why..." ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$LIBS $GLIB_LIBS" AC_TRY_LINK([ #include #include ], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding GLIB or finding the wrong" echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means GLIB is incorrectly installed."]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi GLIB_CFLAGS="" GLIB_LIBS="" GLIB_GENMARSHAL="" GOBJECT_QUERY="" GLIB_MKENUMS="" GLIB_COMPILE_RESOURCES="" ifelse([$3], , :, [$3]) fi AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) AC_SUBST(GLIB_GENMARSHAL) AC_SUBST(GOBJECT_QUERY) AC_SUBST(GLIB_MKENUMS) AC_SUBST(GLIB_COMPILE_RESOURCES) rm -f conf.glibtest ]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # 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. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.6], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.6])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, # 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # --------------------------------------------------------------------------- # Adds support for distributing Python modules and packages. To # install modules, copy them to $(pythondir), using the python_PYTHON # automake variable. To install a package with the same name as the # automake package, install to $(pkgpythondir), or use the # pkgpython_PYTHON automake variable. # # The variables $(pyexecdir) and $(pkgpyexecdir) are provided as # locations to install python extension modules (shared libraries). # Another macro is required to find the appropriate flags to compile # extension modules. # # If your package is configured with a different prefix to python, # users will have to add the install directory to the PYTHONPATH # environment variable, or create a .pth file (see the python # documentation for details). # # If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will # cause an error if the version of python installed on the system # doesn't meet the requirement. MINIMUM-VERSION should consist of # numbers and dots only. AC_DEFUN([AM_PATH_PYTHON], [ dnl Find a Python interpreter. Python versions prior to 2.0 are not dnl supported. (2.0 was released on October 16, 2000). m4_define_default([_AM_PYTHON_INTERPRETER_LIST], [python python2 python3 python3.2 python3.1 python3.0 python2.7 dnl python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0]) AC_ARG_VAR([PYTHON], [the Python interpreter]) m4_if([$1],[],[ dnl No version check is needed. # Find any Python interpreter. if test -z "$PYTHON"; then AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) fi am_display_PYTHON=python ], [ dnl A version check is needed. if test -n "$PYTHON"; then # If the user set $PYTHON, use it and don't search something else. AC_MSG_CHECKING([whether $PYTHON version >= $1]) AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], [AC_MSG_RESULT(yes)], [AC_MSG_ERROR(too old)]) am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. AC_CACHE_CHECK([for a Python interpreter with version >= $1], [am_cv_pathless_PYTHON],[ for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do test "$am_cv_pathless_PYTHON" = none && break AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) done]) # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. if test "$am_cv_pathless_PYTHON" = none; then PYTHON=: else AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) fi am_display_PYTHON=$am_cv_pathless_PYTHON fi ]) if test "$PYTHON" = :; then dnl Run any user-specified action, or abort. m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) else dnl Query Python for its version number. Getting [:3] seems to be dnl the best way to do this; it's what "site.py" does in the standard dnl library. AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`]) AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) dnl Use the values of $prefix and $exec_prefix for the corresponding dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made dnl distinct variables so they can be overridden if need be. However, dnl general consensus is that you shouldn't need this ability. AC_SUBST([PYTHON_PREFIX], ['${prefix}']) AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) dnl At times (like when building shared libraries) you may want dnl to know which OS platform Python thinks this is. AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`]) AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) dnl Set up 4 directories: dnl pythondir -- where to install python scripts. This is the dnl site-packages directory, not the python standard library dnl directory like in previous automake betas. This behavior dnl is more consistent with lispdir.m4 for example. dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON script directory], [am_cv_python_pythondir], [if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pythondir], [$am_cv_python_pythondir]) dnl pkgpythondir -- $PACKAGE directory under pythondir. Was dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is dnl more consistent with the rest of automake. AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) dnl pyexecdir -- directory for installing python extension modules dnl (shared libraries) dnl Query distutils for this directory. AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], [am_cv_python_pyexecdir], [if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac ]) AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) dnl Run any user-specified action. $2 fi ]) # AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) # --------------------------------------------------------------------------- # Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. # Run ACTION-IF-FALSE otherwise. # This test uses sys.hexversion instead of the string equivalent (first # word of sys.version), in order to cope with versions such as 2.2c1. # This supports Python 2.0 or higher. (2.0 was released on October 16, 2000). AC_DEFUN([AM_PYTHON_CHECK_VERSION], [prog="import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '$2'.split('.'))) + [[0, 0, 0]] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[[i]] sys.exit(sys.hexversion < minverhex)" AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2009, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # (`yes' being less verbose, `no' or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [ --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0')]) case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few `make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using `$V' instead of `$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/ax_pkg_swig.m4]) m4_include([m4/libtool.m4]) m4_include([m4/ltoptions.m4]) m4_include([m4/ltsugar.m4]) m4_include([m4/ltversion.m4]) m4_include([m4/lt~obsolete.m4]) babeltrace-1.2.1/configure0000755000175000017500000165412212306621103012434 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for babeltrace 1.2.1. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and mathieu dot $0: desnoyers at efficios dot com about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='babeltrace' PACKAGE_TARNAME='babeltrace' PACKAGE_VERSION='1.2.1' PACKAGE_STRING='babeltrace 1.2.1' PACKAGE_BUGREPORT='mathieu dot desnoyers at efficios dot com' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS babeltracectfwriterincludedir babeltracectfincludedir babeltraceincludedir PACKAGE_CFLAGS PACKAGE_LIBS GMODULE_LIBS GMODULE_CFLAGS PYTHON_CONFIG PYTHON_INCLUDE pkgpyexecdir pyexecdir pkgpythondir pythondir PYTHON_PLATFORM PYTHON_EXEC_PREFIX PYTHON_PREFIX PYTHON_VERSION PYTHON SWIG_LIB SWIG USE_PYTHON_FALSE USE_PYTHON_TRUE BABELTRACE_BUILD_WITH_LIBC_UUID_FALSE BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE BABELTRACE_BUILD_WITH_LIBUUID_FALSE BABELTRACE_BUILD_WITH_LIBUUID_TRUE BABELTRACE_BUILD_WITH_MINGW_FALSE BABELTRACE_BUILD_WITH_MINGW_TRUE LIBOBJS GLIB_COMPILE_RESOURCES GLIB_MKENUMS GOBJECT_QUERY GLIB_GENMARSHAL GLIB_LIBS GLIB_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG LEXLIB LEX_OUTPUT_ROOT LEX YFLAGS YACC CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED LIBTOOL am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build BABELTRACE_LIBRARY_VERSION target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_largefile enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_glibtest enable_python_bindings ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP YACC YFLAGS PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PYTHON PYTHON_INCLUDE PYTHON_CONFIG GMODULE_CFLAGS GMODULE_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures babeltrace 1.2.1 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/babeltrace] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of babeltrace 1.2.1:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') --disable-largefile omit support for large files --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --disable-glibtest do not try to compile and run a test GLIB program --enable-python-bindings generate Python bindings Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor YACC The `Yet Another Compiler Compiler' implementation to use. Defaults to the first program found out of: `bison -y', `byacc', `yacc'. YFLAGS The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given by some make applications. PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path PYTHON the Python interpreter PYTHON_INCLUDE Include flags for python, bypassing python-config PYTHON_CONFIG Path to python-config GMODULE_CFLAGS C compiler flags for GMODULE, overriding pkg-config GMODULE_LIBS linker flags for GMODULE, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF babeltrace configure 1.2.1 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## -------------------------------------------------------- ## ## Report this to mathieu dot desnoyers at efficios dot com ## ## -------------------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by babeltrace $as_me 1.2.1, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi as_fn_append ac_header_list " stdlib.h" as_fn_append ac_header_list " unistd.h" as_fn_append ac_header_list " sys/param.h" # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Following the numbering scheme proposed by libtool for the library version # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html BABELTRACE_LIBRARY_VERSION=1:0:0 ac_aux_dir= for ac_dir in config "$srcdir"/config; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='babeltrace' VERSION='1.2.1' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' ac_config_headers="$ac_config_headers config.h" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # Check whether --enable-largefile was given. if test "${enable_largefile+set}" = set; then : enableval=$enable_largefile; fi if test "$enable_largefile" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 $as_echo_n "checking for special C compiler options needed for large files... " >&6; } if ${ac_cv_sys_largefile_CC+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_sys_largefile_CC=no if test "$GCC" != yes; then ac_save_CC=$CC while :; do # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : break fi rm -f core conftest.err conftest.$ac_objext CC="$CC -n32" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_largefile_CC=' -n32'; break fi rm -f core conftest.err conftest.$ac_objext break done CC=$ac_save_CC rm -f conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 $as_echo "$ac_cv_sys_largefile_CC" >&6; } if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } if ${ac_cv_sys_file_offset_bits+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _FILE_OFFSET_BITS 64 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=64; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_file_offset_bits=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 $as_echo "$ac_cv_sys_file_offset_bits" >&6; } case $ac_cv_sys_file_offset_bits in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits _ACEOF ;; esac rm -rf conftest* if test $ac_cv_sys_file_offset_bits = unknown; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } if ${ac_cv_sys_large_files+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _LARGE_FILES 1 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=1; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_large_files=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 $as_echo "$ac_cv_sys_large_files" >&6; } case $ac_cv_sys_large_files in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _LARGE_FILES $ac_cv_sys_large_files _ACEOF ;; esac rm -rf conftest* fi fi # Checks for programs. case $ac_cv_prog_cc_stdc in #( no) : ac_cv_prog_cc_c99=no; ac_cv_prog_cc_c89=no ;; #( *) : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 else ac_cv_prog_cc_stdc=no fi fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO Standard C" >&5 $as_echo_n "checking for $CC option to accept ISO Standard C... " >&6; } if ${ac_cv_prog_cc_stdc+:} false; then : $as_echo_n "(cached) " >&6 fi case $ac_cv_prog_cc_stdc in #( no) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; #( '') : { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; #( *) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_stdc" >&5 $as_echo "$ac_cv_prog_cc_stdc" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ac_config_commands="$ac_config_commands libtool" # Only expand once: for ac_prog in 'bison -y' byacc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_YACC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_YACC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi YACC=$ac_cv_prog_YACC if test -n "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 $as_echo "$YACC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$YACC" && break done test -n "$YACC" || YACC="yacc" for ac_prog in flex lex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LEX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LEX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LEX=$ac_cv_prog_LEX if test -n "$LEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 $as_echo "$LEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test "x$LEX" != "x:"; then cat >conftest.l <<_ACEOF %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ yyless ((input () != 0)); } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int main (void) { return ! yylex () + ! yywrap (); } _ACEOF { { ac_try="$LEX conftest.l" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$LEX conftest.l") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5 $as_echo_n "checking lex output file root... " >&6; } if ${ac_cv_prog_lex_root+:} false; then : $as_echo_n "(cached) " >&6 else if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else as_fn_error $? "cannot find output from $LEX; giving up" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 $as_echo "$ac_cv_prog_lex_root" >&6; } LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root if test -z "${LEXLIB+set}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5 $as_echo_n "checking lex library... " >&6; } if ${ac_cv_lib_lex+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_LIBS=$LIBS ac_cv_lib_lex='none needed' for ac_lib in '' -lfl -ll; do LIBS="$ac_lib $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_lex=$ac_lib fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext test "$ac_cv_lib_lex" != 'none needed' && break done LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 $as_echo "$ac_cv_lib_lex" >&6; } test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 $as_echo_n "checking whether yytext is a pointer... " >&6; } if ${ac_cv_prog_lex_yytext_pointer+:} false; then : $as_echo_n "(cached) " >&6 else # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no ac_save_LIBS=$LIBS LIBS="$LEXLIB $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define YYTEXT_POINTER 1 `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_prog_lex_yytext_pointer=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 $as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; } if test $ac_cv_prog_lex_yytext_pointer = yes; then $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h fi rm -f conftest.l $LEX_OUTPUT_ROOT.c fi if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then if test x"$YACC" != "xbison -y"; then as_fn_error $? "bison not found and is required when building from git. Please install bison" "$LINENO" 5 fi fi if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then if test x"$LEX" != "xflex"; then as_fn_error $? "flex not found and is required when building from git. Please install flex" "$LINENO" 5 fi fi # Check whether --enable-glibtest was given. if test "${enable_glibtest+set}" = set; then : enableval=$enable_glibtest; else enable_glibtest=yes fi pkg_config_args=glib-2.0 for module in . gmodule do case "$module" in gmodule) pkg_config_args="$pkg_config_args gmodule-2.0" ;; gmodule-no-export) pkg_config_args="$pkg_config_args gmodule-no-export-2.0" ;; gobject) pkg_config_args="$pkg_config_args gobject-2.0" ;; gthread) pkg_config_args="$pkg_config_args gthread-2.0" ;; gio*) pkg_config_args="$pkg_config_args $module-2.0" ;; esac done if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.16 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi no_glib="" if test "x$PKG_CONFIG" = x ; then no_glib=yes PKG_CONFIG=no fi min_glib_version=2.22.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB - version >= $min_glib_version" >&5 $as_echo_n "checking for GLIB - version >= $min_glib_version... " >&6; } if test x$PKG_CONFIG != xno ; then ## don't try to run the test against uninstalled libtool libs if $PKG_CONFIG --uninstalled $pkg_config_args; then echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" enable_glibtest=no fi if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then : else no_glib=yes fi fi if test x"$no_glib" = x ; then GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable=glib_compile_resources gio-2.0` GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_glibtest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$GLIB_LIBS $LIBS" rm -f conf.glibtest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { unsigned int major, minor, micro; char *tmp_version; fclose (fopen ("conf.glibtest", "w")); /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = g_strdup("$min_glib_version"); if (sscanf(tmp_version, "%u.%u.%u", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_glib_version"); exit(1); } if ((glib_major_version != $glib_config_major_version) || (glib_minor_version != $glib_config_minor_version) || (glib_micro_version != $glib_config_micro_version)) { printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, glib_major_version, glib_minor_version, glib_micro_version); printf ("*** was found! If pkg-config was correct, then it is best\n"); printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); printf("*** required on your system.\n"); printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); printf("*** to point to the correct configuration files\n"); } else if ((glib_major_version != GLIB_MAJOR_VERSION) || (glib_minor_version != GLIB_MINOR_VERSION) || (glib_micro_version != GLIB_MICRO_VERSION)) { printf("*** GLIB header files (version %d.%d.%d) do not match\n", GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); printf("*** library (version %d.%d.%d)\n", glib_major_version, glib_minor_version, glib_micro_version); } else { if ((glib_major_version > major) || ((glib_major_version == major) && (glib_minor_version > minor)) || ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) { return 0; } else { printf("\n*** An old version of GLIB (%u.%u.%u) was found.\n", glib_major_version, glib_minor_version, glib_micro_version); printf("*** You need a version of GLIB newer than %u.%u.%u. The latest version of\n", major, minor, micro); printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); printf("*** correct copy of pkg-config. (In this case, you will have to\n"); printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } } return 1; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_glib=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_glib" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&5 $as_echo "yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$PKG_CONFIG" = "no" ; then echo "*** A new enough version of pkg-config was not found." echo "*** See http://www.freedesktop.org/software/pkgconfig/" else if test -f conf.glibtest ; then : else echo "*** Could not run GLIB test program, checking why..." ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$LIBS $GLIB_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding GLIB or finding the wrong" echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means GLIB is incorrectly installed." fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi GLIB_CFLAGS="" GLIB_LIBS="" GLIB_GENMARSHAL="" GOBJECT_QUERY="" GLIB_MKENUMS="" GLIB_COMPILE_RESOURCES="" as_fn_error $? "glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk" "$LINENO" 5 fi rm -f conf.glibtest # Checks for typedefs, structures, and compiler characteristics. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi # Checks for library functions. for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac $as_echo "#define malloc rpl_malloc" >>confdefs.h fi for ac_header in $ac_header_list do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getpagesize do : ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" if test "x$ac_cv_func_getpagesize" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETPAGESIZE 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 $as_echo_n "checking for working mmap... " >&6; } if ${ac_cv_func_mmap_fixed_mapped+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_mmap_fixed_mapped=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default /* malloc might have been renamed as rpl_malloc. */ #undef malloc /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the file system buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propagated back to all the places they're supposed to be. Grep wants private fixed already mapped. The main things grep needs to know about mmap are: * does it exist and is it safe to write into the mmap'd area * how to use it (BSD variants) */ #include #include #if !defined STDC_HEADERS && !defined HAVE_STDLIB_H char *malloc (); #endif /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE # ifdef _SC_PAGESIZE # define getpagesize() sysconf(_SC_PAGESIZE) # else /* no _SC_PAGESIZE */ # ifdef HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif /* no _SC_PAGESIZE */ #endif /* no HAVE_GETPAGESIZE */ int main () { char *data, *data2, *data3; const char *cdata2; int i, pagesize; int fd, fd2; pagesize = getpagesize (); /* First, make a file with some known garbage in it. */ data = (char *) malloc (pagesize); if (!data) return 1; for (i = 0; i < pagesize; ++i) *(data + i) = rand (); umask (0); fd = creat ("conftest.mmap", 0600); if (fd < 0) return 2; if (write (fd, data, pagesize) != pagesize) return 3; close (fd); /* Next, check that the tail of a page is zero-filled. File must have non-zero length, otherwise we risk SIGBUS for entire page. */ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); if (fd2 < 0) return 4; cdata2 = ""; if (write (fd2, cdata2, 1) != 1) return 5; data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); if (data2 == MAP_FAILED) return 6; for (i = 0; i < pagesize; ++i) if (*(data2 + i)) return 7; close (fd2); if (munmap (data2, pagesize)) return 8; /* Next, try to mmap the file at a fixed address which already has something else allocated at it. If we can, also make sure that we see the same garbage. */ fd = open ("conftest.mmap", O_RDWR); if (fd < 0) return 9; if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) return 10; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) return 11; /* Finally, make sure that changes to the mapped area do not percolate back to the file as seen by read(). (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = (char *) malloc (pagesize); if (!data3) return 12; if (read (fd, data3, pagesize) != pagesize) return 13; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) return 14; close (fd); return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_mmap_fixed_mapped=yes else ac_cv_func_mmap_fixed_mapped=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 $as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } if test $ac_cv_func_mmap_fixed_mapped = yes; then $as_echo "#define HAVE_MMAP 1" >>confdefs.h fi rm -f conftest.mmap conftest.txt for ac_func in bzero gettimeofday munmap strtoul do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # Check for MinGW32. MINGW32=no case $host in *-*-mingw*) MINGW32=yes;; esac if test "x$MINGW32" = "xyes"; then BABELTRACE_BUILD_WITH_MINGW_TRUE= BABELTRACE_BUILD_WITH_MINGW_FALSE='#' else BABELTRACE_BUILD_WITH_MINGW_TRUE='#' BABELTRACE_BUILD_WITH_MINGW_FALSE= fi # Check for libuuid { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_generate in -luuid" >&5 $as_echo_n "checking for uuid_generate in -luuid... " >&6; } if ${ac_cv_lib_uuid_uuid_generate+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-luuid $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uuid_generate (); int main () { return uuid_generate (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_uuid_uuid_generate=yes else ac_cv_lib_uuid_uuid_generate=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_generate" >&5 $as_echo "$ac_cv_lib_uuid_uuid_generate" >&6; } if test "x$ac_cv_lib_uuid_uuid_generate" = xyes; then : cat >>confdefs.h <<_ACEOF #define BABELTRACE_HAVE_LIBUUID 1 _ACEOF have_libuuid=yes else # libuuid not found, check for uuid_create in libc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_create in -lc" >&5 $as_echo_n "checking for uuid_create in -lc... " >&6; } if ${ac_cv_lib_c_uuid_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char uuid_create (); int main () { return uuid_create (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_c_uuid_create=yes else ac_cv_lib_c_uuid_create=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_uuid_create" >&5 $as_echo "$ac_cv_lib_c_uuid_create" >&6; } if test "x$ac_cv_lib_c_uuid_create" = xyes; then : cat >>confdefs.h <<_ACEOF #define BABELTRACE_HAVE_LIBC_UUID 1 _ACEOF have_libc_uuid=yes else # for MinGW32 we have our own internal implemenation of uuid using Windows functions. if test "x$MINGW32" = xno; then as_fn_error $? "Cannot find libuuid uuid_generate nor libc uuid_create. Use LDFLAGS=-Ldir to specify their location." "$LINENO" 5 fi fi fi if test "x$have_libuuid" = "xyes"; then BABELTRACE_BUILD_WITH_LIBUUID_TRUE= BABELTRACE_BUILD_WITH_LIBUUID_FALSE='#' else BABELTRACE_BUILD_WITH_LIBUUID_TRUE='#' BABELTRACE_BUILD_WITH_LIBUUID_FALSE= fi if test "x$have_libc_uuid" = "xyes"; then BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE= BABELTRACE_BUILD_WITH_LIBC_UUID_FALSE='#' else BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE='#' BABELTRACE_BUILD_WITH_LIBC_UUID_FALSE= fi # Check for fmemopen { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fmemopen in -lc" >&5 $as_echo_n "checking for fmemopen in -lc... " >&6; } if ${ac_cv_lib_c_fmemopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char fmemopen (); int main () { return fmemopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_c_fmemopen=yes else ac_cv_lib_c_fmemopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_fmemopen" >&5 $as_echo "$ac_cv_lib_c_fmemopen" >&6; } if test "x$ac_cv_lib_c_fmemopen" = xyes; then : cat >>confdefs.h <<_ACEOF #define BABELTRACE_HAVE_FMEMOPEN 1 _ACEOF fi # Check for open_memstream { $as_echo "$as_me:${as_lineno-$LINENO}: checking for open_memstream in -lc" >&5 $as_echo_n "checking for open_memstream in -lc... " >&6; } if ${ac_cv_lib_c_open_memstream+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char open_memstream (); int main () { return open_memstream (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_c_open_memstream=yes else ac_cv_lib_c_open_memstream=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_open_memstream" >&5 $as_echo "$ac_cv_lib_c_open_memstream" >&6; } if test "x$ac_cv_lib_c_open_memstream" = xyes; then : cat >>confdefs.h <<_ACEOF #define BABELTRACE_HAVE_OPEN_MEMSTREAM 1 _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for poptGetContext in -lpopt" >&5 $as_echo_n "checking for poptGetContext in -lpopt... " >&6; } if ${ac_cv_lib_popt_poptGetContext+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpopt $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char poptGetContext (); int main () { return poptGetContext (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_popt_poptGetContext=yes else ac_cv_lib_popt_poptGetContext=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_popt_poptGetContext" >&5 $as_echo "$ac_cv_lib_popt_poptGetContext" >&6; } if test "x$ac_cv_lib_popt_poptGetContext" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBPOPT 1 _ACEOF LIBS="-lpopt $LIBS" else as_fn_error $? "Cannot find popt." "$LINENO" 5 fi # For Python # SWIG version needed or newer: swig_version=2.0.0 # Check whether --enable-python-bindings was given. if test "${enable_python_bindings+set}" = set; then : enableval=$enable_python_bindings; enable_python=yes else enable_python=no fi if test "x${enable_python:-yes}" = xyes; then USE_PYTHON_TRUE= USE_PYTHON_FALSE='#' else USE_PYTHON_TRUE='#' USE_PYTHON_FALSE= fi if test "x${enable_python:-yes}" = xyes; then # Ubuntu has swig 2.0 as /usr/bin/swig2.0 for ac_prog in swig swig2.0 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_SWIG+:} false; then : $as_echo_n "(cached) " >&6 else case $SWIG in [\\/]* | ?:[\\/]*) ac_cv_path_SWIG="$SWIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_SWIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi SWIG=$ac_cv_path_SWIG if test -n "$SWIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SWIG" >&5 $as_echo "$SWIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$SWIG" && break done if test -z "$SWIG" ; then as_fn_error $? "SWIG $swig_version or newer is needed" "$LINENO" 5 elif test -n "$swig_version" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking SWIG version" >&5 $as_echo_n "checking SWIG version... " >&6; } swig_version=`$SWIG -version 2>&1 | grep 'SWIG Version' | sed 's/.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $swig_version" >&5 $as_echo "$swig_version" >&6; } if test -n "$swig_version" ; then # Calculate the required version number components required=$swig_version required_major=`echo $required | sed 's/[^0-9].*//'` if test -z "$required_major" ; then required_major=0 fi required=`echo $required | sed 's/[0-9]*[^0-9]//'` required_minor=`echo $required | sed 's/[^0-9].*//'` if test -z "$required_minor" ; then required_minor=0 fi required=`echo $required | sed 's/[0-9]*[^0-9]//'` required_patch=`echo $required | sed 's/[^0-9].*//'` if test -z "$required_patch" ; then required_patch=0 fi # Calculate the available version number components available=$swig_version available_major=`echo $available | sed 's/[^0-9].*//'` if test -z "$available_major" ; then available_major=0 fi available=`echo $available | sed 's/[0-9]*[^0-9]//'` available_minor=`echo $available | sed 's/[^0-9].*//'` if test -z "$available_minor" ; then available_minor=0 fi available=`echo $available | sed 's/[0-9]*[^0-9]//'` available_patch=`echo $available | sed 's/[^0-9].*//'` if test -z "$available_patch" ; then available_patch=0 fi # Convert the version tuple into a single number for easier comparison. # Using base 100 should be safe since SWIG internally uses BCD values # to encode its version number. required_swig_vernum=`expr $required_major \* 10000 \ \+ $required_minor \* 100 \+ $required_patch` available_swig_vernum=`expr $available_major \* 10000 \ \+ $available_minor \* 100 \+ $available_patch` if test $available_swig_vernum -lt $required_swig_vernum; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: SWIG version >= $swig_version is required. You have $swig_version." >&5 $as_echo "$as_me: WARNING: SWIG version >= $swig_version is required. You have $swig_version." >&2;} SWIG='' as_fn_error $? "SWIG $swig_version or newer is needed" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SWIG library" >&5 $as_echo_n "checking for SWIG library... " >&6; } SWIG_LIB=`$SWIG -swiglib` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SWIG_LIB" >&5 $as_echo "$SWIG_LIB" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cannot determine SWIG version" >&5 $as_echo "$as_me: WARNING: cannot determine SWIG version" >&2;} SWIG='' as_fn_error $? "SWIG $swig_version or newer is needed" "$LINENO" 5 fi fi # Find any Python interpreter. if test -z "$PYTHON"; then for ac_prog in python python2 python3 python3.2 python3.1 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PYTHON=$ac_cv_path_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PYTHON" && break done test -n "$PYTHON" || PYTHON=":" fi am_display_PYTHON=python if test "$PYTHON" = :; then as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5 $as_echo_n "checking for $am_display_PYTHON version... " >&6; } if ${am_cv_python_version+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5 $as_echo "$am_cv_python_version" >&6; } PYTHON_VERSION=$am_cv_python_version PYTHON_PREFIX='${prefix}' PYTHON_EXEC_PREFIX='${exec_prefix}' { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5 $as_echo_n "checking for $am_display_PYTHON platform... " >&6; } if ${am_cv_python_platform+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5 $as_echo "$am_cv_python_platform" >&6; } PYTHON_PLATFORM=$am_cv_python_platform { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5 $as_echo_n "checking for $am_display_PYTHON script directory... " >&6; } if ${am_cv_python_pythondir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$prefix" = xNONE then am_py_prefix=$ac_default_prefix else am_py_prefix=$prefix fi am_cv_python_pythondir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(0,0,prefix='$am_py_prefix'))" 2>/dev/null` case $am_cv_python_pythondir in $am_py_prefix*) am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'` am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"` ;; *) case $am_py_prefix in /usr|/System*) ;; *) am_cv_python_pythondir=$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5 $as_echo "$am_cv_python_pythondir" >&6; } pythondir=$am_cv_python_pythondir pkgpythondir=\${pythondir}/$PACKAGE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5 $as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; } if ${am_cv_python_pyexecdir+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$exec_prefix" = xNONE then am_py_exec_prefix=$am_py_prefix else am_py_exec_prefix=$exec_prefix fi am_cv_python_pyexecdir=`$PYTHON -c "import sys; from distutils import sysconfig; sys.stdout.write(sysconfig.get_python_lib(1,0,prefix='$am_py_exec_prefix'))" 2>/dev/null` case $am_cv_python_pyexecdir in $am_py_exec_prefix*) am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'` am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"` ;; *) case $am_py_exec_prefix in /usr|/System*) ;; *) am_cv_python_pyexecdir=$PYTHON_EXEC_PREFIX/lib/python$PYTHON_VERSION/site-packages ;; esac ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5 $as_echo "$am_cv_python_pyexecdir" >&6; } pyexecdir=$am_cv_python_pyexecdir pkgpyexecdir=\${pyexecdir}/$PACKAGE fi if test -z "$PYTHON_INCLUDE"; then : if test -z "$PYTHON_CONFIG"; then : for ac_prog in python$PYTHON_VERSION-config python-config do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PYTHON_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PYTHON_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PYTHON_CONFIG="$PYTHON_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in `dirname $PYTHON` do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PYTHON_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PYTHON_CONFIG=$ac_cv_path_PYTHON_CONFIG if test -n "$PYTHON_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_CONFIG" >&5 $as_echo "$PYTHON_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PYTHON_CONFIG" && break done test -n "$PYTHON_CONFIG" || PYTHON_CONFIG="no" if test "$PYTHON_CONFIG" = no; then : as_fn_error $? "cannot find python-config for $PYTHON. Do you have python-dev installed?" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking python include flags" >&5 $as_echo_n "checking python include flags... " >&6; } PYTHON_INCLUDE=`$PYTHON_CONFIG --includes` { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON_INCLUDE" >&5 $as_echo "$PYTHON_INCLUDE" >&6; } fi else { $as_echo "$as_me:${as_lineno-$LINENO}: You may configure with --enable-python-bindings if you want Python bindings." >&5 $as_echo "$as_me: You may configure with --enable-python-bindings if you want Python bindings." >&6;} fi pkg_modules="gmodule-2.0 >= 2.0.0" pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GMODULE" >&5 $as_echo_n "checking for GMODULE... " >&6; } if test -n "$GMODULE_CFLAGS"; then pkg_cv_GMODULE_CFLAGS="$GMODULE_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "$pkg_modules" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GMODULE_LIBS"; then pkg_cv_GMODULE_LIBS="$GMODULE_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$pkg_modules\""; } >&5 ($PKG_CONFIG --exists --print-errors "$pkg_modules") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "$pkg_modules" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GMODULE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$pkg_modules" 2>&1` else GMODULE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$pkg_modules" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GMODULE_PKG_ERRORS" >&5 as_fn_error $? "Package requirements ($pkg_modules) were not met: $GMODULE_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables GMODULE_CFLAGS and GMODULE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables GMODULE_CFLAGS and GMODULE_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS GMODULE_LIBS=$pkg_cv_GMODULE_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi LIBS="$LIBS $GMODULE_LIBS" PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h" babeltraceincludedir="${includedir}/babeltrace" babeltracectfincludedir="${includedir}/babeltrace/ctf" babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer" ac_config_files="$ac_config_files Makefile types/Makefile compat/Makefile formats/Makefile formats/ctf/Makefile formats/ctf/types/Makefile formats/ctf-text/Makefile formats/ctf-text/types/Makefile formats/ctf-metadata/Makefile formats/bt-dummy/Makefile formats/lttng-live/Makefile formats/ctf/metadata/Makefile formats/ctf/writer/Makefile converter/Makefile doc/Makefile lib/Makefile lib/prio_heap/Makefile include/Makefile bindings/Makefile bindings/python/Makefile tests/Makefile tests/bin/Makefile tests/lib/Makefile tests/utils/Makefile tests/utils/tap/Makefile extras/Makefile extras/valgrind/Makefile babeltrace.pc babeltrace-ctf.pc" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BABELTRACE_BUILD_WITH_MINGW_TRUE}" && test -z "${BABELTRACE_BUILD_WITH_MINGW_FALSE}"; then as_fn_error $? "conditional \"BABELTRACE_BUILD_WITH_MINGW\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BABELTRACE_BUILD_WITH_LIBUUID_TRUE}" && test -z "${BABELTRACE_BUILD_WITH_LIBUUID_FALSE}"; then as_fn_error $? "conditional \"BABELTRACE_BUILD_WITH_LIBUUID\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BABELTRACE_BUILD_WITH_LIBC_UUID_TRUE}" && test -z "${BABELTRACE_BUILD_WITH_LIBC_UUID_FALSE}"; then as_fn_error $? "conditional \"BABELTRACE_BUILD_WITH_LIBC_UUID\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_PYTHON_TRUE}" && test -z "${USE_PYTHON_FALSE}"; then as_fn_error $? "conditional \"USE_PYTHON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by babeltrace $as_me 1.2.1, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ babeltrace config.status 1.2.1 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "types/Makefile") CONFIG_FILES="$CONFIG_FILES types/Makefile" ;; "compat/Makefile") CONFIG_FILES="$CONFIG_FILES compat/Makefile" ;; "formats/Makefile") CONFIG_FILES="$CONFIG_FILES formats/Makefile" ;; "formats/ctf/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf/Makefile" ;; "formats/ctf/types/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf/types/Makefile" ;; "formats/ctf-text/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf-text/Makefile" ;; "formats/ctf-text/types/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf-text/types/Makefile" ;; "formats/ctf-metadata/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf-metadata/Makefile" ;; "formats/bt-dummy/Makefile") CONFIG_FILES="$CONFIG_FILES formats/bt-dummy/Makefile" ;; "formats/lttng-live/Makefile") CONFIG_FILES="$CONFIG_FILES formats/lttng-live/Makefile" ;; "formats/ctf/metadata/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf/metadata/Makefile" ;; "formats/ctf/writer/Makefile") CONFIG_FILES="$CONFIG_FILES formats/ctf/writer/Makefile" ;; "converter/Makefile") CONFIG_FILES="$CONFIG_FILES converter/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; "lib/prio_heap/Makefile") CONFIG_FILES="$CONFIG_FILES lib/prio_heap/Makefile" ;; "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; "bindings/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/Makefile" ;; "bindings/python/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/python/Makefile" ;; "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; "tests/bin/Makefile") CONFIG_FILES="$CONFIG_FILES tests/bin/Makefile" ;; "tests/lib/Makefile") CONFIG_FILES="$CONFIG_FILES tests/lib/Makefile" ;; "tests/utils/Makefile") CONFIG_FILES="$CONFIG_FILES tests/utils/Makefile" ;; "tests/utils/tap/Makefile") CONFIG_FILES="$CONFIG_FILES tests/utils/tap/Makefile" ;; "extras/Makefile") CONFIG_FILES="$CONFIG_FILES extras/Makefile" ;; "extras/valgrind/Makefile") CONFIG_FILES="$CONFIG_FILES extras/valgrind/Makefile" ;; "babeltrace.pc") CONFIG_FILES="$CONFIG_FILES babeltrace.pc" ;; "babeltrace-ctf.pc") CONFIG_FILES="$CONFIG_FILES babeltrace-ctf.pc" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="" # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi babeltrace-1.2.1/compat/0000755000175000017500000000000012306621157012066 500000000000000babeltrace-1.2.1/compat/Makefile.am0000644000175000017500000000035312304150543014035 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libcompat.la libcompat_la_SOURCES = libcompat_la_LDFLAGS = \ -Wl,--no-as-needed if BABELTRACE_BUILD_WITH_MINGW libcompat_la_SOURCES += compat_uuid.c endif babeltrace-1.2.1/compat/Makefile.in0000644000175000017500000004177012306621104014054 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ @BABELTRACE_BUILD_WITH_MINGW_TRUE@am__append_1 = compat_uuid.c subdir = compat DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libcompat_la_LIBADD = am__libcompat_la_SOURCES_DIST = compat_uuid.c @BABELTRACE_BUILD_WITH_MINGW_TRUE@am__objects_1 = compat_uuid.lo am_libcompat_la_OBJECTS = $(am__objects_1) libcompat_la_OBJECTS = $(am_libcompat_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent libcompat_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libcompat_la_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libcompat_la_SOURCES) DIST_SOURCES = $(am__libcompat_la_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libcompat.la libcompat_la_SOURCES = $(am__append_1) libcompat_la_LDFLAGS = \ -Wl,--no-as-needed all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign compat/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign compat/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libcompat.la: $(libcompat_la_OBJECTS) $(libcompat_la_DEPENDENCIES) $(EXTRA_libcompat_la_DEPENDENCIES) $(AM_V_CCLD)$(libcompat_la_LINK) $(libcompat_la_OBJECTS) $(libcompat_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compat_uuid.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/compat/compat_uuid.c0000644000175000017500000000555612304150543014470 00000000000000/* * compat/compat_uuid.h * * Copyright (C) 2013 Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ /* This file is only built under MINGW32 */ #include #include #include /* MinGW does not provide byteswap - implement our own version. */ static void swap(unsigned char *ptr, unsigned int i, unsigned int j) { unsigned char tmp; tmp = ptr[i]; ptr[i] = ptr[j]; ptr[j] = tmp; } static void fix_uuid_endian(unsigned char * ptr) { swap(ptr, 0, 3) swap(ptr, 1, 2) swap(ptr, 4, 5) swap(ptr, 6, 7) } int babeltrace_uuid_generate(unsigned char *uuid_out) { RPC_STATUS status; status = UuidCreate((struct UUID *)uuid_out); if (status == RPC_S_OK) return 0; else return -1; } int babeltrace_uuid_unparse(const unsigned char *uuid_in, char *str_out) { RPC_STATUS status; unsigned char *alloc_str; int ret; unsigned char copy_of_uuid_in[BABELTRACE_UUID_LEN]; /* make a modifyable copy of uuid_in */ memcpy(copy_of_uuid_in, uuid_in, BABELTRACE_UUID_LEN); fix_uuid_endian(copy_of_uuid_in); status = UuidToString((struct UUID *) copy_of_uuid_in, &alloc_str); if (status == RPC_S_OK) { strncpy(str_out, (char *) alloc_str, BABELTRACE_UUID_STR_LEN); str_out[BABELTRACE_UUID_STR_LEN - 1] = '\0'; ret = 0; } else { ret = -1; } RpcStringFree(&alloc_str); return ret; } int babeltrace_uuid_parse(const char *str_in, unsigned char *uuid_out) { RPC_STATUS status; status = UuidFromString((unsigned char *) str_in, (struct UUID *) uuid_out); fix_uuid_endian(uuid_out); if (status == RPC_S_OK) return 0; else return -1; } int babeltrace_uuid_compare(const unsigned char *uuid_a, const unsigned char *uuid_b) { RPC_STATUS status; if (!UuidCompare((struct UUID *) uuid_a, (struct UUID *) uuid_b, &status)) { return 0; } else { return -1; } } babeltrace-1.2.1/CodingStyle0000644000175000017500000000062511761415752012703 00000000000000Babeltrace Coding Style The coding style used for this project follows the the Linux kernel guide lines, except that brackets "{", "}" should typically be used even for single-line if/else statements. Please refer to: - Linux kernel Documentation/CodingStyle document for details, - Linux kernel scripts/checkpatch.pl for a script which verify the patch coding style. Mathieu Desnoyers, May 30, 2012 babeltrace-1.2.1/config.h.in0000644000175000017500000000660412306621137012552 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Has fmemopen support. */ #undef BABELTRACE_HAVE_FMEMOPEN /* Has libc uuid support. */ #undef BABELTRACE_HAVE_LIBC_UUID /* Has libuuid support. */ #undef BABELTRACE_HAVE_LIBUUID /* Has open_memstream support. */ #undef BABELTRACE_HAVE_OPEN_MEMSTREAM /* Define to 1 if you have the `bzero' function. */ #undef HAVE_BZERO /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the `getpagesize' function. */ #undef HAVE_GETPAGESIZE /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `popt' library (-lpopt). */ #undef HAVE_LIBPOPT /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have a working `mmap' system call. */ #undef HAVE_MMAP /* Define to 1 if you have the `munmap' function. */ #undef HAVE_MUNMAP /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strtoul' function. */ #undef HAVE_STRTOUL /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PARAM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a `char[]'. */ #undef YYTEXT_POINTER /* Enable large inode numbers on Mac OS X 10.5. */ #ifndef _DARWIN_USE_64_BIT_INODE # define _DARWIN_USE_64_BIT_INODE 1 #endif /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS /* Define for large files, on AIX-style hosts. */ #undef _LARGE_FILES /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `int' if does not define. */ #undef pid_t /* Define to `unsigned int' if does not define. */ #undef size_t babeltrace-1.2.1/tests/0000755000175000017500000000000012306621160011737 500000000000000babeltrace-1.2.1/tests/run.sh0000755000175000017500000000154612304150543013030 00000000000000#!/bin/bash # # Copyright (C) 2013 - Christian Babeux # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; only version 2 # of the License. # # 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. # [ -z "$1" ] && echo "Error: No testlist. Please specify a testlist to run." && exit 1 prove --merge --exec '' - < $1 babeltrace-1.2.1/tests/Makefile.am0000644000175000017500000000067512304150543013723 00000000000000SUBDIRS = utils bin lib EXTRA_DIST = ctf-traces/** tests SCRIPT_LIST = run.sh dist_noinst_SCRIPTS = $(SCRIPT_LIST) all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi check-am: ./run.sh tests babeltrace-1.2.1/tests/lib/0000755000175000017500000000000012306621160012505 500000000000000babeltrace-1.2.1/tests/lib/test_seek_empty_packet0000755000175000017500000000162512304150543017112 00000000000000#!/bin/sh # # Copyright (C) 2013 - Christian Babeux # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; only version 2 # of the License. # # 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. # CURDIR=$(dirname $0)/ TESTDIR=$CURDIR/../ CTF_TRACES=$TESTDIR/ctf-traces $CURDIR/test_seek $CTF_TRACES/succeed/wk-heartbeat-u/ 1351532897586558519 1351532897591331194 babeltrace-1.2.1/tests/lib/Makefile.am0000644000175000017500000000247112304150543014465 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils noinst_LIBRARIES = libtestcommon.a LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la libtestcommon_a_SOURCES = common.c common.h # -Wl,--no-as-needed is needed for recent gold linker who seems to think # it knows better and considers libraries with constructors having # side-effects as dead code. test_seek_LDFLAGS = -Wl,--no-as-needed test_seek_LDADD = $(LIBTAP) libtestcommon.a \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la test_bitfield_LDADD = $(LIBTAP) libtestcommon.a test_ctf_writer_LDADD = $(LIBTAP) \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la noinst_PROGRAMS = test_seek test_bitfield test_ctf_writer test_seek_SOURCES = test_seek.c test_bitfield_SOURCES = test_bitfield.c test_ctf_writer_SOURCES = test_ctf_writer.c SCRIPT_LIST = test_seek_big_trace \ test_seek_empty_packet \ test_ctf_writer_complete dist_noinst_SCRIPTS = $(SCRIPT_LIST) all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi babeltrace-1.2.1/tests/lib/Makefile.in0000644000175000017500000005016512306621104014477 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ noinst_PROGRAMS = test_seek$(EXEEXT) test_bitfield$(EXEEXT) \ test_ctf_writer$(EXEEXT) subdir = tests/lib DIST_COMMON = $(dist_noinst_SCRIPTS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ libtestcommon_a_AR = $(AR) $(ARFLAGS) libtestcommon_a_LIBADD = am_libtestcommon_a_OBJECTS = common.$(OBJEXT) libtestcommon_a_OBJECTS = $(am_libtestcommon_a_OBJECTS) PROGRAMS = $(noinst_PROGRAMS) am_test_bitfield_OBJECTS = test_bitfield.$(OBJEXT) test_bitfield_OBJECTS = $(am_test_bitfield_OBJECTS) test_bitfield_DEPENDENCIES = $(LIBTAP) libtestcommon.a AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am_test_ctf_writer_OBJECTS = test_ctf_writer.$(OBJEXT) test_ctf_writer_OBJECTS = $(am_test_ctf_writer_OBJECTS) test_ctf_writer_DEPENDENCIES = $(LIBTAP) \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la am_test_seek_OBJECTS = test_seek.$(OBJEXT) test_seek_OBJECTS = $(am_test_seek_OBJECTS) test_seek_DEPENDENCIES = $(LIBTAP) libtestcommon.a \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la test_seek_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(test_seek_LDFLAGS) $(LDFLAGS) -o $@ SCRIPTS = $(dist_noinst_SCRIPTS) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libtestcommon_a_SOURCES) $(test_bitfield_SOURCES) \ $(test_ctf_writer_SOURCES) $(test_seek_SOURCES) DIST_SOURCES = $(libtestcommon_a_SOURCES) $(test_bitfield_SOURCES) \ $(test_ctf_writer_SOURCES) $(test_seek_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils noinst_LIBRARIES = libtestcommon.a LIBTAP = $(top_builddir)/tests/utils/tap/libtap.la libtestcommon_a_SOURCES = common.c common.h # -Wl,--no-as-needed is needed for recent gold linker who seems to think # it knows better and considers libraries with constructors having # side-effects as dead code. test_seek_LDFLAGS = -Wl,--no-as-needed test_seek_LDADD = $(LIBTAP) libtestcommon.a \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la test_bitfield_LDADD = $(LIBTAP) libtestcommon.a test_ctf_writer_LDADD = $(LIBTAP) \ $(top_builddir)/lib/libbabeltrace.la \ $(top_builddir)/formats/ctf/libbabeltrace-ctf.la test_seek_SOURCES = test_seek.c test_bitfield_SOURCES = test_bitfield.c test_ctf_writer_SOURCES = test_ctf_writer.c SCRIPT_LIST = test_seek_big_trace \ test_seek_empty_packet \ test_ctf_writer_complete dist_noinst_SCRIPTS = $(SCRIPT_LIST) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tests/lib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) libtestcommon.a: $(libtestcommon_a_OBJECTS) $(libtestcommon_a_DEPENDENCIES) $(EXTRA_libtestcommon_a_DEPENDENCIES) $(AM_V_at)-rm -f libtestcommon.a $(AM_V_AR)$(libtestcommon_a_AR) libtestcommon.a $(libtestcommon_a_OBJECTS) $(libtestcommon_a_LIBADD) $(AM_V_at)$(RANLIB) libtestcommon.a clean-noinstPROGRAMS: @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list test_bitfield$(EXEEXT): $(test_bitfield_OBJECTS) $(test_bitfield_DEPENDENCIES) $(EXTRA_test_bitfield_DEPENDENCIES) @rm -f test_bitfield$(EXEEXT) $(AM_V_CCLD)$(LINK) $(test_bitfield_OBJECTS) $(test_bitfield_LDADD) $(LIBS) test_ctf_writer$(EXEEXT): $(test_ctf_writer_OBJECTS) $(test_ctf_writer_DEPENDENCIES) $(EXTRA_test_ctf_writer_DEPENDENCIES) @rm -f test_ctf_writer$(EXEEXT) $(AM_V_CCLD)$(LINK) $(test_ctf_writer_OBJECTS) $(test_ctf_writer_LDADD) $(LIBS) test_seek$(EXEEXT): $(test_seek_OBJECTS) $(test_seek_DEPENDENCIES) $(EXTRA_test_seek_DEPENDENCIES) @rm -f test_seek$(EXEEXT) $(AM_V_CCLD)$(test_seek_LINK) $(test_seek_OBJECTS) $(test_seek_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitfield.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_ctf_writer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_seek.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(SCRIPTS) all-local installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-local \ clean-noinstLIBRARIES clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am all-local check check-am clean \ clean-generic clean-libtool clean-local clean-noinstLIBRARIES \ clean-noinstPROGRAMS ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/tests/lib/test_ctf_writer_complete0000755000175000017500000000160212304150543017451 00000000000000#!/bin/sh # # Copyright (C) 2013 - Jérémie Galarneau # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; only version 2 # of the License. # # 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. # CURDIR=$(dirname $0)/ ROOTDIR=$CURDIR/../.. $CURDIR/test_ctf_writer $ROOTDIR/formats/ctf/metadata/ctf-parser-test $ROOTDIR/converter/babeltrace babeltrace-1.2.1/tests/lib/common.h0000644000175000017500000000172312075630002014067 00000000000000/* * common.h * * Lib BabelTrace - Common function to all tests * * Copyright 2012 - Yannick Brosseau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 2 of the License. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _TESTS_COMMON_H #define _TESTS_COMMON_H struct bt_context; struct bt_context *create_context_with_path(const char *path); #endif /* _TESTS_COMMON_H */ babeltrace-1.2.1/tests/lib/test_bitfield.c0000644000175000017500000002114212304150543015412 00000000000000/* * test-bitfield.c * * BabelTrace - bitfield test program * * Copyright 2010 - Mathieu Desnoyers * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 2 of the License. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _GNU_SOURCE #include #include #include #include #include unsigned int glob; /* * This function is only declared to show the size of a bitfield write in * objdump. */ void fct(void) { bt_bitfield_write(&glob, unsigned int, 12, 15, 0x12345678); } /* Test array size, in bytes */ #define TEST_LEN 128 #define NR_TESTS 10 #define SIGNED_TEST_DESC_FMT_STR "Writing and reading back 0x%X, signed" #define UNSIGNED_TEST_DESC_FMT_STR "Writing and reading back 0x%X, unsigned" #define DIAG_FMT_STR "Failed reading value written \"%s\"-wise, with start=%i" \ " and length=%i. Read %llX" unsigned int srcrand; #if defined(__i386) || defined(__x86_64) static inline int fls(int x) { int r; asm("bsrl %1,%0\n\t" "cmovzl %2,%0" : "=&r" (r) : "rm" (x), "rm" (-1)); return r + 1; } #elif defined(__PPC__) static __inline__ int fls(unsigned int x) { int lz; asm ("cntlzw %0,%1" : "=r" (lz) : "r" (x)); return 32 - lz; } #else static int fls(unsigned int x) { int r = 32; if (!x) return 0; if (!(x & 0xFFFF0000U)) { x <<= 16; r -= 16; } if (!(x & 0xFF000000U)) { x <<= 8; r -= 8; } if (!(x & 0xF0000000U)) { x <<= 4; r -= 4; } if (!(x & 0xC0000000U)) { x <<= 2; r -= 2; } if (!(x & 0x80000000U)) { x <<= 1; r -= 1; } return r; } #endif #define print_byte_array(c, len) \ do { \ unsigned long i; \ \ for (i = 0; i < (len); i++) { \ printf("0x%X", (c)[i]); \ if (i != (len) - 1) \ printf(" "); \ } \ printf("\n"); \ } while (0) #define init_byte_array(c, len, val) \ do { \ unsigned long i; \ \ for (i = 0; i < (len); i++) \ (c)[i] = (val); \ } while (0) #define check_result(ref, val, buffer, typename, start, len, \ desc_fmt_str) \ ({ \ if ((val) != (ref)) { \ fail(desc_fmt_str, ref); \ diag(DIAG_FMT_STR, #typename, start, len, val); \ printf("# "); \ print_byte_array(buffer, TEST_LEN); \ } \ (val) != (ref); \ }) void run_test_unsigned(void) { unsigned int src, nrbits; union { unsigned char c[TEST_LEN]; unsigned short s[TEST_LEN/sizeof(unsigned short)]; unsigned int i[TEST_LEN/sizeof(unsigned int)]; unsigned long l[TEST_LEN/sizeof(unsigned long)]; unsigned long long ll[TEST_LEN/sizeof(unsigned long long)]; } target; unsigned long long readval; unsigned int s, l; src = srcrand; nrbits = fls(src); for (s = 0; s < CHAR_BIT * TEST_LEN; s++) { for (l = nrbits; l < (CHAR_BIT * TEST_LEN) - s; l++) { init_byte_array(target.c, TEST_LEN, 0xFF); bt_bitfield_write(target.c, unsigned char, s, l, src); bt_bitfield_read(target.c, unsigned char, s, l, &readval); if (check_result(src, readval, target.c, unsigned char, s, l, UNSIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0xFF); bt_bitfield_write(target.s, unsigned short, s, l, src); bt_bitfield_read(target.c, unsigned char, s, l, &readval); if (check_result(src, readval, target.c, unsigned short, s, l, UNSIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0xFF); bt_bitfield_write(target.i, unsigned int, s, l, src); bt_bitfield_read(target.c, unsigned char, s, l, &readval); if (check_result(src, readval, target.c, unsigned int, s, l, UNSIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0xFF); bt_bitfield_write(target.l, unsigned long, s, l, src); bt_bitfield_read(target.c, unsigned char, s, l, &readval); if (check_result(src, readval, target.c, unsigned long, s, l, UNSIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0xFF); bt_bitfield_write(target.ll, unsigned long long, s, l, src); bt_bitfield_read(target.c, unsigned char, s, l, &readval); if (check_result(src, readval, target.c, unsigned long long, s, l, UNSIGNED_TEST_DESC_FMT_STR)) { return; } } } pass(UNSIGNED_TEST_DESC_FMT_STR, src); } void run_test_signed(void) { int src, nrbits; union { signed char c[TEST_LEN]; short s[TEST_LEN/sizeof(short)]; int i[TEST_LEN/sizeof(int)]; long l[TEST_LEN/sizeof(long)]; long long ll[TEST_LEN/sizeof(long long)]; } target; long long readval; unsigned int s, l; src = srcrand; if (src & 0x80000000U) nrbits = fls(~src) + 1; /* Find least significant bit conveying sign */ else nrbits = fls(src) + 1; /* Keep sign at 0 */ for (s = 0; s < CHAR_BIT * TEST_LEN; s++) { for (l = nrbits; l < (CHAR_BIT * TEST_LEN) - s; l++) { init_byte_array(target.c, TEST_LEN, 0x0); bt_bitfield_write(target.c, signed char, s, l, src); bt_bitfield_read(target.c, signed char, s, l, &readval); if (check_result(src, readval, target.c, signed char, s, l, SIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0x0); bt_bitfield_write(target.s, short, s, l, src); bt_bitfield_read(target.c, signed char, s, l, &readval); if (check_result(src, readval, target.c, short, s, l, SIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0x0); bt_bitfield_write(target.i, int, s, l, src); bt_bitfield_read(target.c, signed char, s, l, &readval); if (check_result(src, readval, target.c, int, s, l, SIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0x0); bt_bitfield_write(target.l, long, s, l, src); bt_bitfield_read(target.c, signed char, s, l, &readval); if (check_result(src, readval, target.c, long, s, l, SIGNED_TEST_DESC_FMT_STR)) { return; } init_byte_array(target.c, TEST_LEN, 0x0); bt_bitfield_write(target.ll, long long, s, l, src); bt_bitfield_read(target.c, signed char, s, l, &readval); if (check_result(src, readval, target.c, long long, s, l, SIGNED_TEST_DESC_FMT_STR)) { return; } } } pass(SIGNED_TEST_DESC_FMT_STR, src); } void run_test(void) { int i; plan_tests(NR_TESTS * 2 + 6); srand(time(NULL)); srcrand = 0; run_test_unsigned(); srcrand = 0; run_test_signed(); srcrand = 1; run_test_unsigned(); srcrand = ~0U; run_test_unsigned(); srcrand = -1; run_test_signed(); srcrand = (int)0x80000000U; run_test_signed(); for (i = 0; i < NR_TESTS; i++) { srcrand = rand(); run_test_unsigned(); run_test_signed(); } } static int print_encodings(unsigned long src, unsigned int shift, unsigned int len) { union { unsigned char c[8]; unsigned short s[4]; unsigned int i[2]; unsigned long l[2]; unsigned long long ll[1]; } target; unsigned long long readval; init_byte_array(target.c, 8, 0xFF); bt_bitfield_write(target.c, unsigned char, shift, len, src); printf("bytewise\n"); print_byte_array(target.c, 8); init_byte_array(target.c, 8, 0xFF); bt_bitfield_write(target.s, unsigned short, shift, len, src); printf("shortwise\n"); print_byte_array(target.c, 8); init_byte_array(target.c, 8, 0xFF); bt_bitfield_write(target.i, unsigned int, shift, len, src); printf("intwise\n"); print_byte_array(target.c, 8); init_byte_array(target.c, 8, 0xFF); bt_bitfield_write(target.l, unsigned long, shift, len, src); printf("longwise\n"); print_byte_array(target.c, 8); init_byte_array(target.c, 8, 0xFF); bt_bitfield_write(target.ll, unsigned long long, shift, len, src); printf("lluwise\n"); print_byte_array(target.c, 8); bt_bitfield_read(target.c, unsigned char, shift, len, &readval); printf("read: %llX\n", readval); print_byte_array(target.c, 8); return 0; } int main(int argc, char **argv) { if (argc > 1) { /* Print encodings */ unsigned long src; unsigned int shift, len; src = atoi(argv[1]); if (argc > 2) shift = atoi(argv[2]); else shift = 12; if (argc > 3) len = atoi(argv[3]); else len = 40; return print_encodings(src, shift, len); } /* Run tap-formated tests */ run_test(); return exit_status(); } babeltrace-1.2.1/tests/lib/test_seek_big_trace0000755000175000017500000000162312304150543016342 00000000000000#!/bin/sh # # Copyright (C) 2013 - Christian Babeux # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; only version 2 # of the License. # # 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. # CURDIR=$(dirname $0)/ TESTDIR=$CURDIR/../ CTF_TRACES=$TESTDIR/ctf-traces $CURDIR/test_seek $CTF_TRACES/succeed/lttng-modules-2.0-pre5/ 61334174524234 61336381998396 babeltrace-1.2.1/tests/lib/test_seek.c0000644000175000017500000001732612304150543014570 00000000000000/* * test-seeks.c * * Lib BabelTrace - Seeks test program * * Copyright 2012 - Yannick Brosseau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 2 of the License. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _GNU_SOURCE #include #include #include #include #include /* For symbol side-effects */ #include #include #include #include #include #include "common.h" #define NR_TESTS 29 void run_seek_begin(char *path, uint64_t expected_begin) { struct bt_context *ctx; struct bt_ctf_iter *iter; struct bt_ctf_event *event; struct bt_iter_pos newpos; int ret; uint64_t timestamp_begin; uint64_t timestamp_seek_begin; unsigned int nr_seek_begin_test; nr_seek_begin_test = 5; /* Open the trace */ ctx = create_context_with_path(path); if (!ctx) { skip(nr_seek_begin_test, "Cannot create valid context"); return; } /* Create iterator with null begin and end */ iter = bt_ctf_iter_create(ctx, NULL, NULL); if (!iter) { skip(nr_seek_begin_test, "Cannot create valid iterator"); return; } event = bt_ctf_iter_read_event(iter); ok(event, "Event valid"); /* Validate that the first timestamp is right */ timestamp_begin = bt_ctf_get_timestamp(event); ok1(timestamp_begin == expected_begin); /* Validate that we get the same value after a seek begin */ newpos.type = BT_SEEK_BEGIN; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek begin retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid"); timestamp_seek_begin = bt_ctf_get_timestamp(event); ok1(timestamp_begin == timestamp_seek_begin); bt_context_put(ctx); } void run_seek_last(char *path, uint64_t expected_last) { struct bt_context *ctx; struct bt_ctf_iter *iter; struct bt_ctf_event *event; struct bt_iter_pos newpos; int ret; uint64_t timestamp_last; unsigned int nr_seek_last_tests; nr_seek_last_tests = 6; /* Open the trace */ ctx = create_context_with_path(path); if (!ctx) { skip(nr_seek_last_tests, "Cannot create valid context"); return; } /* Create iterator with null last and end */ iter = bt_ctf_iter_create(ctx, NULL, NULL); if (!iter) { skip(nr_seek_last_tests, "Cannot create valid iterator"); return; } event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at beginning"); /* Seek to last */ newpos.type = BT_SEEK_LAST; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek last retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at last position"); timestamp_last = bt_ctf_get_timestamp(event); ok1(timestamp_last == expected_last); /* Try to read next event */ ret = bt_iter_next(bt_ctf_get_iter(iter)); ok(ret == 0, "iter next should return an error"); event = bt_ctf_iter_read_event(iter); ok(event == 0, "Event after last should be invalid"); bt_context_put(ctx); } void run_seek_time_at_last(char *path, uint64_t expected_last) { struct bt_context *ctx; struct bt_ctf_iter *iter; struct bt_ctf_event *event; struct bt_iter_pos newpos; int ret; uint64_t timestamp_last; unsigned int nr_seek_time_at_last_tests; nr_seek_time_at_last_tests = 6; /* Open the trace */ ctx = create_context_with_path(path); if (!ctx) { skip(nr_seek_time_at_last_tests, "Cannot create valid context"); return; } /* Create iterator with null last and end */ iter = bt_ctf_iter_create(ctx, NULL, NULL); if (!iter) { skip(nr_seek_time_at_last_tests, "Cannot create valid iterator"); return; } event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at beginning"); /* Seek to last */ newpos.type = BT_SEEK_TIME; newpos.u.seek_time = expected_last; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek time at last retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at last position"); timestamp_last = bt_ctf_get_timestamp(event); ok1(timestamp_last == expected_last); /* Try to read next event */ ret = bt_iter_next(bt_ctf_get_iter(iter)); ok(ret == 0, "iter next should return an error"); event = bt_ctf_iter_read_event(iter); ok(event == 0, "Event after last should be invalid"); bt_context_put(ctx); } void run_seek_cycles(char *path, uint64_t expected_begin, uint64_t expected_last) { struct bt_context *ctx; struct bt_ctf_iter *iter; struct bt_ctf_event *event; struct bt_iter_pos newpos; int ret; uint64_t timestamp; unsigned int nr_seek_cycles_tests; nr_seek_cycles_tests = 12; /* Open the trace */ ctx = create_context_with_path(path); if (!ctx) { skip(nr_seek_cycles_tests, "Cannot create valid context"); return; } /* Create iterator with null last and end */ iter = bt_ctf_iter_create(ctx, NULL, NULL); if (!iter) { skip(nr_seek_cycles_tests, "Cannot create valid iterator"); return; } event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at beginning"); /* Seek to last */ newpos.type = BT_SEEK_LAST; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek last retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at last position"); timestamp = bt_ctf_get_timestamp(event); ok1(timestamp == expected_last); /* Try to read next event */ ret = bt_iter_next(bt_ctf_get_iter(iter)); ok(ret == 0, "iter next should return an error"); event = bt_ctf_iter_read_event(iter); ok(event == 0, "Event after last should be invalid"); /* Seek to BEGIN */ newpos.type = BT_SEEK_BEGIN; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek begin retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at first position"); timestamp = bt_ctf_get_timestamp(event); ok1(timestamp == expected_begin); /* Seek last again */ newpos.type = BT_SEEK_LAST; ret = bt_iter_set_pos(bt_ctf_get_iter(iter), &newpos); ok(ret == 0, "Seek last retval %d", ret); event = bt_ctf_iter_read_event(iter); ok(event, "Event valid at last position"); timestamp = bt_ctf_get_timestamp(event); ok1(timestamp == expected_last); bt_context_put(ctx); } int main(int argc, char **argv) { char *path; uint64_t expected_begin; uint64_t expected_last; /* * Side-effects ensuring libs are not optimized away by static * linking. */ babeltrace_debug = 0; /* libbabeltrace.la */ opt_clock_offset = 0; /* libbabeltrace-ctf.la */ if (argc < 4) { plan_skip_all("Invalid arguments: need a trace path and the start and last timestamp"); } /* Parse arguments (Trace, begin timestamp) */ path = argv[1]; expected_begin = strtoull(argv[2], NULL, 0); if (ULLONG_MAX == expected_begin && errno == ERANGE) { plan_skip_all("Invalid value for begin timestamp"); } expected_last = strtoull(argv[3], NULL, 0); if (ULLONG_MAX == expected_last && errno == ERANGE) { plan_skip_all("Invalid value for last timestamp"); } plan_tests(NR_TESTS); run_seek_begin(path, expected_begin); run_seek_time_at_last(path, expected_last); run_seek_last(path, expected_last); run_seek_cycles(path, expected_begin, expected_last); return exit_status(); } babeltrace-1.2.1/tests/lib/test_ctf_writer.c0000644000175000017500000007143012304150543016005 00000000000000/* * test-ctf-writer.c * * CTF Writer test * * Copyright 2013 - Jérémie Galarneau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 2 of the License. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "tap/tap.h" #define METADATA_LINE_SIZE 512 #define SEQUENCE_TEST_LENGTH 10 #define PACKET_RESIZE_TEST_LENGTH 100000 static uint64_t current_time; void validate_metadata(char *parser_path, char *metadata_path) { int ret = 0; char parser_output_path[] = "/tmp/parser_output_XXXXXX"; int parser_output_fd = -1, metadata_fd = -1; if (!metadata_path) { ret = -1; goto result; } parser_output_fd = mkstemp(parser_output_path); metadata_fd = open(metadata_path, O_RDONLY); unlink(parser_output_path); if (parser_output_fd == -1 || metadata_fd == -1) { diag("Failed create temporary files for metadata parsing."); ret = -1; goto result; } pid_t pid = fork(); if (pid) { int status = 0; waitpid(pid, &status, 0); ret = WIFEXITED(status) ? WEXITSTATUS(status) : -1; } else { /* ctf-parser-test expects a metadata string on stdin. */ ret = dup2(metadata_fd, STDIN_FILENO); if (ret < 0) { perror("# dup2 metadata_fd to STDIN"); goto result; } ret = dup2(parser_output_fd, STDOUT_FILENO); if (ret < 0) { perror("# dup2 parser_output_fd to STDOUT"); goto result; } ret = dup2(parser_output_fd, STDERR_FILENO); if (ret < 0) { perror("# dup2 parser_output_fd to STDERR"); goto result; } execl(parser_path, "ctf-parser-test", NULL); perror("# Could not launch the ctf metadata parser process"); exit(-1); } result: ok(ret == 0, "Metadata string is valid"); if (ret && metadata_fd >= 0 && parser_output_fd >= 0) { char *line; size_t len = METADATA_LINE_SIZE; FILE *metadata_fp = NULL, *parser_output_fp = NULL; metadata_fp = fdopen(metadata_fd, "r"); if (!metadata_fp) { perror("fdopen on metadata_fd"); goto close_fp; } metadata_fd = -1; parser_output_fp = fdopen(parser_output_fd, "r"); if (!parser_output_fp) { perror("fdopen on parser_output_fd"); goto close_fp; } parser_output_fd = -1; line = malloc(len); if (!line) { diag("malloc failure"); } rewind(metadata_fp); /* Output the metadata and parser output as diagnostic */ while (getline(&line, &len, metadata_fp) > 0) { diag("%s", line); } rewind(parser_output_fp); while (getline(&line, &len, parser_output_fp) > 0) { diag("%s", line); } free(line); close_fp: if (metadata_fp) { if (fclose(metadata_fp)) { diag("fclose failure"); } } if (parser_output_fp) { if (fclose(parser_output_fp)) { diag("fclose failure"); } } } if (parser_output_fd >= 0) { if (close(parser_output_fd)) { diag("close error"); } } if (metadata_fd >= 0) { if (close(metadata_fd)) { diag("close error"); } } } void validate_trace(char *parser_path, char *trace_path) { int ret = 0; char babeltrace_output_path[] = "/tmp/babeltrace_output_XXXXXX"; int babeltrace_output_fd = -1; if (!trace_path) { ret = -1; goto result; } babeltrace_output_fd = mkstemp(babeltrace_output_path); unlink(babeltrace_output_path); if (babeltrace_output_fd == -1) { diag("Failed to create a temporary file for trace parsing."); ret = -1; goto result; } pid_t pid = fork(); if (pid) { int status = 0; waitpid(pid, &status, 0); ret = WIFEXITED(status) ? WEXITSTATUS(status) : -1; } else { ret = dup2(babeltrace_output_fd, STDOUT_FILENO); if (ret < 0) { perror("# dup2 babeltrace_output_fd to STDOUT"); goto result; } ret = dup2(babeltrace_output_fd, STDERR_FILENO); if (ret < 0) { perror("# dup2 babeltrace_output_fd to STDERR"); goto result; } execl(parser_path, "babeltrace", trace_path, NULL); perror("# Could not launch the babeltrace process"); exit(-1); } result: ok(ret == 0, "Babeltrace could read the resulting trace"); if (ret && babeltrace_output_fd >= 0) { char *line; size_t len = METADATA_LINE_SIZE; FILE *babeltrace_output_fp = NULL; babeltrace_output_fp = fdopen(babeltrace_output_fd, "r"); if (!babeltrace_output_fp) { perror("fdopen on babeltrace_output_fd"); goto close_fp; } babeltrace_output_fd = -1; line = malloc(len); if (!line) { diag("malloc error"); } rewind(babeltrace_output_fp); while (getline(&line, &len, babeltrace_output_fp) > 0) { diag("%s", line); } free(line); close_fp: if (babeltrace_output_fp) { if (fclose(babeltrace_output_fp)) { diag("fclose error"); } } } if (babeltrace_output_fd >= 0) { if (close(babeltrace_output_fd)) { diag("close error"); } } } void append_simple_event(struct bt_ctf_stream_class *stream_class, struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) { /* Create and add a simple event class */ struct bt_ctf_event_class *simple_event_class = bt_ctf_event_class_create("Simple Event"); struct bt_ctf_field_type *uint_12_type = bt_ctf_field_type_integer_create(12); struct bt_ctf_field_type *float_type = bt_ctf_field_type_floating_point_create(); struct bt_ctf_field_type *enum_type = bt_ctf_field_type_enumeration_create(uint_12_type); struct bt_ctf_event *simple_event; struct bt_ctf_field *integer_field; struct bt_ctf_field *float_field; struct bt_ctf_field *enum_field; struct bt_ctf_field *enum_container_field; bt_ctf_field_type_set_alignment(float_type, 32); bt_ctf_field_type_floating_point_set_exponent_digits(float_type, 11); bt_ctf_field_type_floating_point_set_mantissa_digits(float_type, 53); ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, "escaping; \"test\"", 0, 0) == 0, "Accept enumeration mapping strings containing quotes"); ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, "\tanother \'escaping\'\n test\"", 1, 4) == 0, "Accept enumeration mapping strings containing special characters"); ok(bt_ctf_field_type_enumeration_add_mapping(enum_type, "event clock int float", 5, 22) == 0, "Accept enumeration mapping strings containing reserved keywords"); ok(bt_ctf_event_class_add_field(simple_event_class, enum_type, "enum_field") == 0, "Add enumeration field to event"); ok(uint_12_type, "Create an unsigned integer type"); bt_ctf_event_class_add_field(simple_event_class, uint_12_type, "integer_field"); bt_ctf_event_class_add_field(simple_event_class, float_type, "float_field"); bt_ctf_stream_class_add_event_class(stream_class, simple_event_class); simple_event = bt_ctf_event_create(simple_event_class); ok(simple_event, "Instantiate an event containing a single integer field"); integer_field = bt_ctf_field_create(uint_12_type); bt_ctf_field_unsigned_integer_set_value(integer_field, 42); ok(bt_ctf_event_set_payload(simple_event, "integer_field", integer_field) == 0, "Use bt_ctf_event_set_payload to set a manually allocated field"); float_field = bt_ctf_event_get_payload(simple_event, "float_field"); bt_ctf_field_floating_point_set_value(float_field, 3.1415); enum_field = bt_ctf_field_create(enum_type); enum_container_field = bt_ctf_field_enumeration_get_container( enum_field); ok(bt_ctf_field_unsigned_integer_set_value( enum_container_field, 1) == 0, "Set enumeration container value"); bt_ctf_event_set_payload(simple_event, "enum_field", enum_field); ok(bt_ctf_clock_set_time(clock, current_time) == 0, "Set clock time"); ok(bt_ctf_stream_append_event(stream, simple_event) == 0, "Append simple event to trace stream"); ok(bt_ctf_stream_flush(stream) == 0, "Flush trace stream with one event"); bt_ctf_event_class_put(simple_event_class); bt_ctf_event_put(simple_event); bt_ctf_field_type_put(uint_12_type); bt_ctf_field_type_put(float_type); bt_ctf_field_type_put(enum_type); bt_ctf_field_put(integer_field); bt_ctf_field_put(float_field); bt_ctf_field_put(enum_field); bt_ctf_field_put(enum_container_field); } void append_complex_event(struct bt_ctf_stream_class *stream_class, struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) { int i; struct bt_ctf_field_type *uint_35_type = bt_ctf_field_type_integer_create(35); struct bt_ctf_field_type *int_16_type = bt_ctf_field_type_integer_create(16); struct bt_ctf_field_type *uint_3_type = bt_ctf_field_type_integer_create(3); struct bt_ctf_field_type *enum_variant_type = bt_ctf_field_type_enumeration_create(uint_3_type); struct bt_ctf_field_type *variant_type = bt_ctf_field_type_variant_create(enum_variant_type, "variant_selector"); struct bt_ctf_field_type *string_type = bt_ctf_field_type_string_create(); struct bt_ctf_field_type *sequence_type; struct bt_ctf_field_type *inner_structure_type = bt_ctf_field_type_structure_create(); struct bt_ctf_field_type *complex_structure_type = bt_ctf_field_type_structure_create(); struct bt_ctf_event_class *event_class; struct bt_ctf_event *event; struct bt_ctf_field *uint_35_field, *int_16_field, *a_string_field, *inner_structure_field, *complex_structure_field, *a_sequence_field, *enum_variant_field, *enum_container_field, *variant_field; bt_ctf_field_type_set_alignment(int_16_type, 32); bt_ctf_field_type_integer_set_signed(int_16_type, 1); bt_ctf_field_type_integer_set_base(uint_35_type, BT_CTF_INTEGER_BASE_HEXADECIMAL); sequence_type = bt_ctf_field_type_sequence_create(int_16_type, "seq_len"); bt_ctf_field_type_structure_add_field(inner_structure_type, uint_35_type, "seq_len"); bt_ctf_field_type_structure_add_field(inner_structure_type, sequence_type, "a_sequence"); bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, "UINT3_TYPE", 0, 0); bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, "INT16_TYPE", 1, 1); bt_ctf_field_type_enumeration_add_mapping(enum_variant_type, "UINT35_TYPE", 2, 7); ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type, "An unknown entry"), "Reject a variant field based on an unknown tag value"); ok(bt_ctf_field_type_variant_add_field(variant_type, uint_3_type, "UINT3_TYPE") == 0, "Add a field to a variant"); bt_ctf_field_type_variant_add_field(variant_type, int_16_type, "INT16_TYPE"); bt_ctf_field_type_variant_add_field(variant_type, uint_35_type, "UINT35_TYPE"); bt_ctf_field_type_structure_add_field(complex_structure_type, enum_variant_type, "variant_selector"); bt_ctf_field_type_structure_add_field(complex_structure_type, string_type, "a_string"); bt_ctf_field_type_structure_add_field(complex_structure_type, variant_type, "variant_value"); bt_ctf_field_type_structure_add_field(complex_structure_type, inner_structure_type, "inner_structure"); ok(bt_ctf_event_class_create("clock") == NULL, "Reject creation of an event class with an illegal name"); event_class = bt_ctf_event_class_create("Complex Test Event"); ok(event_class, "Create an event class"); ok(bt_ctf_event_class_add_field(event_class, uint_35_type, ""), "Reject addition of a field with an empty name to an event"); ok(bt_ctf_event_class_add_field(event_class, NULL, "an_integer"), "Reject addition of a field with a NULL type to an event"); ok(bt_ctf_event_class_add_field(event_class, uint_35_type, "int"), "Reject addition of a type with an illegal name to an event"); ok(bt_ctf_event_class_add_field(event_class, uint_35_type, "uint_35") == 0, "Add field of type unsigned integer to an event"); ok(bt_ctf_event_class_add_field(event_class, int_16_type, "int_16") == 0, "Add field of type signed integer to an event"); ok(bt_ctf_event_class_add_field(event_class, complex_structure_type, "complex_structure") == 0, "Add composite structure to an event"); /* Add event class to the stream class */ ok(bt_ctf_stream_class_add_event_class(stream_class, NULL), "Reject addition of NULL event class to a stream class"); ok(bt_ctf_stream_class_add_event_class(stream_class, event_class) == 0, "Add an event class to stream class"); event = bt_ctf_event_create(event_class); ok(event, "Instanciate a complex event"); uint_35_field = bt_ctf_event_get_payload(event, "uint_35"); ok(uint_35_field, "Use bt_ctf_event_get_payload to get a field instance "); bt_ctf_field_unsigned_integer_set_value(uint_35_field, 0x0DDF00D); bt_ctf_field_put(uint_35_field); int_16_field = bt_ctf_event_get_payload(event, "int_16"); bt_ctf_field_signed_integer_set_value(int_16_field, -12345); bt_ctf_field_put(int_16_field); complex_structure_field = bt_ctf_event_get_payload(event, "complex_structure"); inner_structure_field = bt_ctf_field_structure_get_field( complex_structure_field, "inner_structure"); a_string_field = bt_ctf_field_structure_get_field( complex_structure_field, "a_string"); enum_variant_field = bt_ctf_field_structure_get_field( complex_structure_field, "variant_selector"); variant_field = bt_ctf_field_structure_get_field( complex_structure_field, "variant_value"); uint_35_field = bt_ctf_field_structure_get_field( inner_structure_field, "seq_len"); a_sequence_field = bt_ctf_field_structure_get_field( inner_structure_field, "a_sequence"); enum_container_field = bt_ctf_field_enumeration_get_container( enum_variant_field); bt_ctf_field_unsigned_integer_set_value(enum_container_field, 1); int_16_field = bt_ctf_field_variant_get_field(variant_field, enum_variant_field); bt_ctf_field_signed_integer_set_value(int_16_field, -200); bt_ctf_field_put(int_16_field); bt_ctf_field_string_set_value(a_string_field, "Test string"); bt_ctf_field_unsigned_integer_set_value(uint_35_field, SEQUENCE_TEST_LENGTH); ok(bt_ctf_field_sequence_set_length(a_sequence_field, uint_35_field) == 0, "Set a sequence field's length"); for (i = 0; i < SEQUENCE_TEST_LENGTH; i++) { int_16_field = bt_ctf_field_sequence_get_field( a_sequence_field, i); bt_ctf_field_signed_integer_set_value(int_16_field, 4 - i); bt_ctf_field_put(int_16_field); } bt_ctf_clock_set_time(clock, ++current_time); ok(bt_ctf_stream_append_event(stream, event) == 0, "Append a complex event to a stream"); ok(bt_ctf_stream_flush(stream) == 0, "Flush a stream containing a complex event"); bt_ctf_field_put(uint_35_field); bt_ctf_field_put(a_string_field); bt_ctf_field_put(inner_structure_field); bt_ctf_field_put(complex_structure_field); bt_ctf_field_put(a_sequence_field); bt_ctf_field_put(enum_variant_field); bt_ctf_field_put(enum_container_field); bt_ctf_field_put(variant_field); bt_ctf_field_type_put(uint_35_type); bt_ctf_field_type_put(int_16_type); bt_ctf_field_type_put(string_type); bt_ctf_field_type_put(sequence_type); bt_ctf_field_type_put(inner_structure_type); bt_ctf_field_type_put(complex_structure_type); bt_ctf_field_type_put(uint_3_type); bt_ctf_field_type_put(enum_variant_type); bt_ctf_field_type_put(variant_type); bt_ctf_event_class_put(event_class); bt_ctf_event_put(event); } void type_field_tests() { struct bt_ctf_field *uint_12; struct bt_ctf_field *int_16; struct bt_ctf_field *string; struct bt_ctf_field *enumeration; struct bt_ctf_field_type *composite_structure_type; struct bt_ctf_field_type *structure_seq_type; struct bt_ctf_field_type *string_type; struct bt_ctf_field_type *sequence_type; struct bt_ctf_field_type *uint_8_type; struct bt_ctf_field_type *int_16_type; struct bt_ctf_field_type *uint_12_type = bt_ctf_field_type_integer_create(12); struct bt_ctf_field_type *enumeration_type; struct bt_ctf_field_type *enumeration_sequence_type; struct bt_ctf_field_type *enumeration_array_type; ok(uint_12_type, "Create an unsigned integer type"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_BINARY) == 0, "Set integer type's base as binary"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_DECIMAL) == 0, "Set integer type's base as decimal"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_UNKNOWN), "Reject integer type's base set as unknown"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_OCTAL) == 0, "Set integer type's base as octal"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_HEXADECIMAL) == 0, "Set integer type's base as hexadecimal"); ok(bt_ctf_field_type_integer_set_base(uint_12_type, 457417), "Reject unknown integer base value"); ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 952835) == 0, "Set integer type signedness to signed"); ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0) == 0, "Set integer type signedness to unsigned"); int_16_type = bt_ctf_field_type_integer_create(16); bt_ctf_field_type_integer_set_signed(int_16_type, 1); uint_8_type = bt_ctf_field_type_integer_create(8); sequence_type = bt_ctf_field_type_sequence_create(int_16_type, "seq_len"); ok(sequence_type, "Create a sequence of int16_t type"); string_type = bt_ctf_field_type_string_create(); ok(string_type, "Create a string type"); ok(bt_ctf_field_type_string_set_encoding(string_type, CTF_STRING_NONE), "Reject invalid \"None\" string encoding"); ok(bt_ctf_field_type_string_set_encoding(string_type, 42), "Reject invalid string encoding"); ok(bt_ctf_field_type_string_set_encoding(string_type, CTF_STRING_ASCII) == 0, "Set string encoding to ASCII"); structure_seq_type = bt_ctf_field_type_structure_create(); ok(structure_seq_type, "Create a structure type"); ok(bt_ctf_field_type_structure_add_field(structure_seq_type, uint_8_type, "seq_len") == 0, "Add a uint8_t type to a structure"); ok(bt_ctf_field_type_structure_add_field(structure_seq_type, sequence_type, "a_sequence") == 0, "Add a sequence type to a structure"); composite_structure_type = bt_ctf_field_type_structure_create(); ok(bt_ctf_field_type_structure_add_field(composite_structure_type, string_type, "a_string") == 0, "Add a string type to a structure"); ok(bt_ctf_field_type_structure_add_field(composite_structure_type, structure_seq_type, "inner_structure") == 0, "Add a structure type to a structure"); int_16 = bt_ctf_field_create(int_16_type); ok(int_16, "Instanciate a signed 16-bit integer"); uint_12 = bt_ctf_field_create(uint_12_type); ok(uint_12, "Instanciate an unsigned 12-bit integer"); /* Can't modify types after instanciating them */ ok(bt_ctf_field_type_integer_set_base(uint_12_type, BT_CTF_INTEGER_BASE_DECIMAL), "Check an integer type' base can't be modified after instanciation"); ok(bt_ctf_field_type_integer_set_signed(uint_12_type, 0), "Check an integer type's signedness can't be modified after instanciation"); /* Check signed property is checked */ ok(bt_ctf_field_signed_integer_set_value(uint_12, -52), "Check bt_ctf_field_signed_integer_set_value is not allowed on an unsigned integer"); ok(bt_ctf_field_unsigned_integer_set_value(int_16, 42), "Check bt_ctf_field_unsigned_integer_set_value is not allowed on a signed integer"); /* Check overflows are properly tested for */ ok(bt_ctf_field_signed_integer_set_value(int_16, -32768) == 0, "Check -32768 is allowed for a signed 16-bit integer"); ok(bt_ctf_field_signed_integer_set_value(int_16, 32767) == 0, "Check 32767 is allowed for a signed 16-bit integer"); ok(bt_ctf_field_signed_integer_set_value(int_16, 32768), "Check 32768 is not allowed for a signed 16-bit integer"); ok(bt_ctf_field_signed_integer_set_value(int_16, -32769), "Check -32769 is not allowed for a signed 16-bit integer"); ok(bt_ctf_field_signed_integer_set_value(int_16, -42) == 0, "Check -42 is allowed for a signed 16-bit integer"); ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 4095) == 0, "Check 4095 is allowed for an unsigned 12-bit integer"); ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 4096), "Check 4096 is not allowed for a unsigned 12-bit integer"); ok(bt_ctf_field_unsigned_integer_set_value(uint_12, 0) == 0, "Check 0 is allowed for an unsigned 12-bit integer"); string = bt_ctf_field_create(string_type); ok(string, "Instanciate a string field"); ok(bt_ctf_field_string_set_value(string, "A value") == 0, "Set a string's value"); enumeration_type = bt_ctf_field_type_enumeration_create(uint_12_type); ok(enumeration_type, "Create an enumeration type with an unsigned 12-bit integer as container"); enumeration_sequence_type = bt_ctf_field_type_sequence_create( enumeration_type, "count"); ok(!enumeration_sequence_type, "Check enumeration types are validated when creating a sequence"); enumeration_array_type = bt_ctf_field_type_array_create( enumeration_type, 10); ok(!enumeration_array_type, "Check enumeration types are validated when creating an array"); ok(bt_ctf_field_type_structure_add_field(composite_structure_type, enumeration_type, "enumeration") == 0, "Check enumeration types are validated when adding them as structure members"); enumeration = bt_ctf_field_create(enumeration_type); ok(!enumeration, "Check enumeration types are validated before instantiation"); bt_ctf_field_put(string); bt_ctf_field_put(uint_12); bt_ctf_field_put(int_16); bt_ctf_field_put(enumeration); bt_ctf_field_type_put(composite_structure_type); bt_ctf_field_type_put(structure_seq_type); bt_ctf_field_type_put(string_type); bt_ctf_field_type_put(sequence_type); bt_ctf_field_type_put(uint_8_type); bt_ctf_field_type_put(int_16_type); bt_ctf_field_type_put(uint_12_type); bt_ctf_field_type_put(enumeration_type); bt_ctf_field_type_put(enumeration_sequence_type); bt_ctf_field_type_put(enumeration_array_type); } void packet_resize_test(struct bt_ctf_stream_class *stream_class, struct bt_ctf_stream *stream, struct bt_ctf_clock *clock) { /* * Append enough events to force the underlying packet to be resized. * Also tests that a new event can be declared after a stream has been * instantiated and used/flushed. */ int ret = 0; int i; struct bt_ctf_event_class *event_class = bt_ctf_event_class_create( "Spammy_Event"); struct bt_ctf_field_type *integer_type = bt_ctf_field_type_integer_create(17); struct bt_ctf_field_type *string_type = bt_ctf_field_type_string_create(); ret |= bt_ctf_event_class_add_field(event_class, integer_type, "field_1"); ret |= bt_ctf_event_class_add_field(event_class, string_type, "a_string"); ret |= bt_ctf_stream_class_add_event_class(stream_class, event_class); ok(ret == 0, "Add a new event class to a stream class after writing an event"); if (ret) { goto end; } for (i = 0; i < PACKET_RESIZE_TEST_LENGTH; i++) { struct bt_ctf_event *event = bt_ctf_event_create(event_class); struct bt_ctf_field *integer = bt_ctf_field_create(integer_type); struct bt_ctf_field *string = bt_ctf_field_create(string_type); ret |= bt_ctf_clock_set_time(clock, ++current_time); ret |= bt_ctf_field_unsigned_integer_set_value(integer, i); ret |= bt_ctf_event_set_payload(event, "field_1", integer); bt_ctf_field_put(integer); ret |= bt_ctf_field_string_set_value(string, "This is a test"); ret |= bt_ctf_event_set_payload(event, "a_string", string); bt_ctf_field_put(string); ret |= bt_ctf_stream_append_event(stream, event); bt_ctf_event_put(event); if (ret) { break; } } end: ok(ret == 0, "Append 100 000 events to a stream"); ok(bt_ctf_stream_flush(stream) == 0, "Flush a stream that forces a packet resize"); bt_ctf_field_type_put(integer_type); bt_ctf_field_type_put(string_type); bt_ctf_event_class_put(event_class); } int main(int argc, char **argv) { char trace_path[] = "/tmp/ctfwriter_XXXXXX"; char metadata_path[sizeof(trace_path) + 9]; const char *clock_name = "test_clock"; const char *clock_description = "This is a test clock"; const uint64_t frequency = 1000000000; const uint64_t offset_s = 1351530929945824323; const uint64_t offset = 1234567; const uint64_t precision = 10; char *metadata_string; struct bt_ctf_writer *writer; struct utsname name; char hostname[HOST_NAME_MAX]; struct bt_ctf_clock *clock; struct bt_ctf_stream_class *stream_class; struct bt_ctf_stream *stream1; if (argc < 3) { printf("Usage: tests-ctf-writer path_to_ctf_parser_test path_to_babeltrace\n"); exit(-1); } plan_no_plan(); if (!mkdtemp(trace_path)) { perror("# perror"); } strcpy(metadata_path, trace_path); strcat(metadata_path + sizeof(trace_path) - 1, "/metadata"); writer = bt_ctf_writer_create(trace_path); ok(writer, "bt_ctf_create succeeds in creating trace with path"); /* Add environment context to the trace */ gethostname(hostname, HOST_NAME_MAX); ok(bt_ctf_writer_add_environment_field(writer, "host", hostname) == 0, "Add host (%s) environment field to writer instance", hostname); ok(bt_ctf_writer_add_environment_field(NULL, "test_field", "test_value"), "bt_ctf_writer_add_environment_field error with NULL writer"); ok(bt_ctf_writer_add_environment_field(writer, NULL, "test_value"), "bt_ctf_writer_add_environment_field error with NULL field name"); ok(bt_ctf_writer_add_environment_field(writer, "test_field", NULL), "bt_ctf_writer_add_environment_field error with NULL field value"); if (uname(&name)) { perror("uname"); return -1; } ok(bt_ctf_writer_add_environment_field(writer, "sysname", name.sysname) == 0, "Add sysname (%s) environment field to writer instance", name.sysname); ok(bt_ctf_writer_add_environment_field(writer, "nodename", name.nodename) == 0, "Add nodename (%s) environment field to writer instance", name.nodename); ok(bt_ctf_writer_add_environment_field(writer, "release", name.release) == 0, "Add release (%s) environment field to writer instance", name.release); ok(bt_ctf_writer_add_environment_field(writer, "version", name.version) == 0, "Add version (%s) environment field to writer instance", name.version); ok(bt_ctf_writer_add_environment_field(writer, "machine", name.machine) == 0, "Add machine (%s) environment field to writer istance", name.machine); /* Define a clock and add it to the trace */ ok(bt_ctf_clock_create("signed") == NULL, "Illegal clock name rejected"); ok(bt_ctf_clock_create(NULL) == NULL, "NULL clock name rejected"); clock = bt_ctf_clock_create(clock_name); ok(clock, "Clock created sucessfully"); bt_ctf_clock_set_description(clock, clock_description); ok(bt_ctf_clock_set_frequency(clock, frequency) == 0, "Set clock frequency"); ok(bt_ctf_clock_set_offset_s(clock, offset_s) == 0, "Set clock offset (seconds)"); ok(bt_ctf_clock_set_offset(clock, offset) == 0, "Set clock offset"); ok(bt_ctf_clock_set_precision(clock, precision) == 0, "Set clock precision"); ok(bt_ctf_clock_set_is_absolute(clock, 0xFF) == 0, "Set clock absolute property"); ok(bt_ctf_writer_add_clock(writer, clock) == 0, "Add clock to writer instance"); ok(bt_ctf_writer_add_clock(writer, clock), "Verify a clock can't be added twice to a writer instance"); /* Define a stream class */ stream_class = bt_ctf_stream_class_create("test_stream"); ok(stream_class, "Create stream class"); ok(bt_ctf_stream_class_set_clock(stream_class, clock) == 0, "Set a stream class' clock"); /* Test the event fields and event types APIs */ type_field_tests(); /* Instantiate a stream and append events */ stream1 = bt_ctf_writer_create_stream(writer, stream_class); ok(stream1, "Instanciate a stream class from writer"); /* Should fail after instanciating a stream (locked)*/ ok(bt_ctf_stream_class_set_clock(stream_class, clock), "Changes to a stream class that was already instantiated fail"); append_simple_event(stream_class, stream1, clock); packet_resize_test(stream_class, stream1, clock); append_complex_event(stream_class, stream1, clock); metadata_string = bt_ctf_writer_get_metadata_string(writer); ok(metadata_string, "Get metadata string"); bt_ctf_writer_flush_metadata(writer); validate_metadata(argv[1], metadata_path); validate_trace(argv[2], trace_path); bt_ctf_clock_put(clock); bt_ctf_stream_class_put(stream_class); bt_ctf_writer_put(writer); bt_ctf_stream_put(stream1); free(metadata_string); /* Remove all trace files and delete temporary trace directory */ DIR *trace_dir = opendir(trace_path); if (!trace_dir) { perror("# opendir"); return -1; } struct dirent *entry; while ((entry = readdir(trace_dir))) { if (entry->d_type == DT_REG) { unlinkat(dirfd(trace_dir), entry->d_name, 0); } } rmdir(trace_path); closedir(trace_dir); return 0; } babeltrace-1.2.1/tests/lib/common.c0000644000175000017500000000226112075630002014060 00000000000000/* * common.c * * Lib BabelTrace - Common function to all tests * * Copyright 2012 - Yannick Brosseau * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 2 of the License. * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _GNU_SOURCE #include #include struct bt_context *create_context_with_path(const char *path) { struct bt_context *ctx; int ret; ctx = bt_context_create(); if (!ctx) { return NULL; } ret = bt_context_add_trace(ctx, path, "ctf", NULL, NULL, NULL); if (ret < 0) { bt_context_put(ctx); return NULL; } return ctx; } babeltrace-1.2.1/tests/Makefile.in0000644000175000017500000004605512306621104013734 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = tests DIST_COMMON = $(dist_noinst_SCRIPTS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SCRIPTS = $(dist_noinst_SCRIPTS) AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = utils bin lib EXTRA_DIST = ctf-traces/** tests SCRIPT_LIST = run.sh dist_noinst_SCRIPTS = $(SCRIPT_LIST) all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tests/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(SCRIPTS) all-local installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am all-local check check-am clean clean-generic \ clean-libtool clean-local ctags ctags-recursive distclean \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi check-am: ./run.sh tests # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/tests/bin/0000755000175000017500000000000012306621160012507 500000000000000babeltrace-1.2.1/tests/bin/Makefile.am0000644000175000017500000000056012304150543014464 00000000000000SCRIPT_LIST = test_trace_read dist_noinst_SCRIPTS = $(SCRIPT_LIST) all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi babeltrace-1.2.1/tests/bin/Makefile.in0000644000175000017500000002775612306621104014513 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = tests/bin DIST_COMMON = $(dist_noinst_SCRIPTS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SCRIPTS = $(dist_noinst_SCRIPTS) AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SCRIPT_LIST = test_trace_read dist_noinst_SCRIPTS = $(SCRIPT_LIST) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/bin/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tests/bin/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(SCRIPTS) all-local installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am all-local check check-am clean clean-generic \ clean-libtool clean-local distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ uninstall uninstall-am all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/tests/bin/test_trace_read0000755000175000017500000000265612304150543015516 00000000000000#!/bin/bash # # Copyright (C) - 2013 Christian Babeux # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License, version 2 only, 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., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. CURDIR=$(dirname $0) TESTDIR=$CURDIR/.. BABELTRACE_BIN=$CURDIR/../../converter/babeltrace CTF_TRACES=$TESTDIR/ctf-traces source $TESTDIR/utils/tap/tap.sh SUCCESS_TRACES=(${CTF_TRACES}/succeed/*) FAIL_TRACES=(${CTF_TRACES}/fail/*) NUM_TESTS=$((${#SUCCESS_TRACES[@]} + ${#FAIL_TRACES[@]})) plan_tests $NUM_TESTS for path in ${SUCCESS_TRACES[@]}; do trace=$(basename ${path}) $BABELTRACE_BIN ${path} > /dev/null 2>&1 ok $? "Run babeltrace with trace ${trace}" done for path in ${FAIL_TRACES[@]}; do trace=$(basename ${path}) $BABELTRACE_BIN ${path} > /dev/null 2>&1 if [ $? -eq 0 ]; then fail "Run babeltrace with invalid trace ${trace}" else pass "Run babeltrace with invalid trace ${trace}" fi done babeltrace-1.2.1/tests/utils/0000755000175000017500000000000012306621160013077 500000000000000babeltrace-1.2.1/tests/utils/Makefile.am0000644000175000017500000000001612304150543015050 00000000000000SUBDIRS = tap babeltrace-1.2.1/tests/utils/Makefile.in0000644000175000017500000004504012306621104015065 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = tests/utils DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = tap all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/utils/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tests/utils/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/tests/utils/tap/0000755000175000017500000000000012306621160013663 500000000000000babeltrace-1.2.1/tests/utils/tap/tap.sh0000755000175000017500000002126712304150543014736 00000000000000#!/bin/bash # # Copyright 2010 Patrick LeBoutillier # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # 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, see . _version='1.01' _plan_set=0 _no_plan=0 _skip_all=0 _test_died=0 _expected_tests=0 _executed_tests=0 _failed_tests=0 TODO= usage(){ cat <<'USAGE' tap-functions: A TAP-producing BASH library PLAN: plan_no_plan plan_skip_all [REASON] plan_tests NB_TESTS TEST: ok RESULT [NAME] okx COMMAND is RESULT EXPECTED [NAME] isnt RESULT EXPECTED [NAME] like RESULT PATTERN [NAME] unlike RESULT PATTERN [NAME] pass [NAME] fail [NAME] SKIP: skip [CONDITION] [REASON] [NB_TESTS=1] skip $feature_not_present "feature not present" 2 || { is $a "a" is $b "b" } TODO: Specify TODO mode by setting $TODO: TODO="not implemented yet" ok $result "some not implemented test" unset TODO OTHER: diag MSG EXAMPLE: #!/bin/bash . tap-functions plan_tests 7 me=$USER is $USER $me "I am myself" like $HOME $me "My home is mine" like "`id`" $me "My id matches myself" /bin/ls $HOME 1>&2 ok $? "/bin/ls $HOME" # Same thing using okx shortcut okx /bin/ls $HOME [[ "`id -u`" != "0" ]] i_am_not_root=$? skip $i_am_not_root "Must be root" || { okx ls /root } TODO="figure out how to become root..." okx [ "$HOME" == "/root" ] unset TODO USAGE exit } opt= set_u= while getopts ":sx" opt ; do case $_opt in u) set_u=1 ;; *) usage ;; esac done shift $(( OPTIND - 1 )) # Don't allow uninitialized variables if requested [[ -n "$set_u" ]] && set -u unset opt set_u # Used to call _cleanup on shell exit trap _exit EXIT plan_no_plan(){ (( _plan_set != 0 )) && "You tried to plan twice!" _plan_set=1 _no_plan=1 return 0 } plan_skip_all(){ local reason=${1:-''} (( _plan_set != 0 )) && _die "You tried to plan twice!" _print_plan 0 "Skip $reason" _skip_all=1 _plan_set=1 _exit 0 return 0 } plan_tests(){ local tests=${1:?} (( _plan_set != 0 )) && _die "You tried to plan twice!" (( tests == 0 )) && _die "You said to run 0 tests! You've got to run something." _print_plan $tests _expected_tests=$tests _plan_set=1 return $tests } _print_plan(){ local tests=${1:?} local directive=${2:-''} echo -n "1..$tests" [[ -n "$directive" ]] && echo -n " # $directive" echo } pass(){ local name=$1 ok 0 "$name" } fail(){ local name=$1 ok 1 "$name" } # This is the workhorse method that actually # prints the tests result. ok(){ local result=${1:?} local name=${2:-''} (( _plan_set == 0 )) && _die "You tried to run a test without a plan! Gotta have a plan." _executed_tests=$(( $_executed_tests + 1 )) if [[ -n "$name" ]] ; then if _matches "$name" "^[0-9]+$" ; then diag " You named your test '$name'. You shouldn't use numbers for your test names." diag " Very confusing." fi fi if (( result != 0 )) ; then echo -n "not " _failed_tests=$(( _failed_tests + 1 )) fi echo -n "ok $_executed_tests" if [[ -n "$name" ]] ; then local ename=${name//\#/\\#} echo -n " - $ename" fi if [[ -n "$TODO" ]] ; then echo -n " # TODO $TODO" ; if (( result != 0 )) ; then _failed_tests=$(( _failed_tests - 1 )) fi fi echo if (( result != 0 )) ; then local file='tap-functions' local func= local line= local i=0 local bt=$(caller $i) while _matches "$bt" "tap-functions$" ; do i=$(( $i + 1 )) bt=$(caller $i) done local backtrace= eval $(caller $i | (read line func file ; echo "backtrace=\"$file:$func() at line $line.\"")) local t= [[ -n "$TODO" ]] && t="(TODO) " if [[ -n "$name" ]] ; then diag " Failed ${t}test '$name'" diag " in $backtrace" else diag " Failed ${t}test in $backtrace" fi fi return $result } okx(){ local command="$@" local line= diag "Output of '$command':" "$@" | while read line ; do diag "$line" done ok ${PIPESTATUS[0]} "$command" } _equals(){ local result=${1:?} local expected=${2:?} if [[ "$result" == "$expected" ]] ; then return 0 else return 1 fi } # Thanks to Aaron Kangas for the patch to allow regexp matching # under bash < 3. _bash_major_version=${BASH_VERSION%%.*} _matches(){ local result=${1:?} local pattern=${2:?} if [[ -z "$result" || -z "$pattern" ]] ; then return 1 else if (( _bash_major_version >= 3 )) ; then [[ "$result" =~ "$pattern" ]] else echo "$result" | egrep -q "$pattern" fi fi } _is_diag(){ local result=${1:?} local expected=${2:?} diag " got: '$result'" diag " expected: '$expected'" } is(){ local result=${1:?} local expected=${2:?} local name=${3:-''} _equals "$result" "$expected" (( $? == 0 )) ok $? "$name" local r=$? (( r != 0 )) && _is_diag "$result" "$expected" return $r } isnt(){ local result=${1:?} local expected=${2:?} local name=${3:-''} _equals "$result" "$expected" (( $? != 0 )) ok $? "$name" local r=$? (( r != 0 )) && _is_diag "$result" "$expected" return $r } like(){ local result=${1:?} local pattern=${2:?} local name=${3:-''} _matches "$result" "$pattern" (( $? == 0 )) ok $? "$name" local r=$? (( r != 0 )) && diag " '$result' doesn't match '$pattern'" return $r } unlike(){ local result=${1:?} local pattern=${2:?} local name=${3:-''} _matches "$result" "$pattern" (( $? != 0 )) ok $? "$name" local r=$? (( r != 0 )) && diag " '$result' matches '$pattern'" return $r } skip(){ local condition=${1:?} local reason=${2:-''} local n=${3:-1} if (( condition == 0 )) ; then local i= for (( i=0 ; i<$n ; i++ )) ; do _executed_tests=$(( _executed_tests + 1 )) echo "ok $_executed_tests # skip: $reason" done return 0 else return fi } diag(){ local msg=${1:?} if [[ -n "$msg" ]] ; then echo "# $msg" fi return 1 } _die(){ local reason=${1:-''} echo "$reason" >&2 _test_died=1 _exit 255 } BAIL_OUT(){ local reason=${1:-''} echo "Bail out! $reason" >&2 _exit 255 } _cleanup(){ local rc=0 if (( _plan_set == 0 )) ; then diag "Looks like your test died before it could output anything." return $rc fi if (( _test_died != 0 )) ; then diag "Looks like your test died just after $_executed_tests." return $rc fi if (( _skip_all == 0 && _no_plan != 0 )) ; then _print_plan $_executed_tests fi local s= if (( _no_plan == 0 && _expected_tests < _executed_tests )) ; then s= ; (( _expected_tests > 1 )) && s=s local extra=$(( _executed_tests - _expected_tests )) diag "Looks like you planned $_expected_tests test$s but ran $extra extra." rc=1 ; fi if (( _no_plan == 0 && _expected_tests > _executed_tests )) ; then s= ; (( _expected_tests > 1 )) && s=s diag "Looks like you planned $_expected_tests test$s but only ran $_executed_tests." fi if (( _failed_tests > 0 )) ; then s= ; (( _failed_tests > 1 )) && s=s diag "Looks like you failed $_failed_tests test$s of $_executed_tests." fi return $rc } _exit_status(){ if (( _no_plan != 0 || _plan_set == 0 )) ; then return $_failed_tests fi if (( _expected_tests < _executed_tests )) ; then return $(( _executed_tests - _expected_tests )) fi return $(( _failed_tests + ( _expected_tests - _executed_tests ))) } _exit(){ local rc=${1:-''} if [[ -z "$rc" ]] ; then _exit_status rc=$? fi _cleanup local alt_rc=$? (( alt_rc != 0 )) && rc=$alt_rc trap - EXIT exit $rc } babeltrace-1.2.1/tests/utils/tap/Makefile.am0000644000175000017500000000064712304150543015646 00000000000000noinst_LTLIBRARIES = libtap.la libtap_la_SOURCES = tap.c tap.h SCRIPT_LIST = tap.sh dist_noinst_SCRIPTS = $(SCRIPT_LIST) all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi babeltrace-1.2.1/tests/utils/tap/Makefile.in0000644000175000017500000004172712306621104015661 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = tests/utils/tap DIST_COMMON = $(dist_noinst_SCRIPTS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libtap_la_LIBADD = am_libtap_la_OBJECTS = tap.lo libtap_la_OBJECTS = $(am_libtap_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent SCRIPTS = $(dist_noinst_SCRIPTS) DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libtap_la_SOURCES) DIST_SOURCES = $(libtap_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libtap.la libtap_la_SOURCES = tap.c tap.h SCRIPT_LIST = tap.sh dist_noinst_SCRIPTS = $(SCRIPT_LIST) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/utils/tap/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tests/utils/tap/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libtap.la: $(libtap_la_OBJECTS) $(libtap_la_DEPENDENCIES) $(EXTRA_libtap_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libtap_la_OBJECTS) $(libtap_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tap.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(SCRIPTS) all-local installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-local \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am all-local check check-am clean \ clean-generic clean-libtool clean-local \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags uninstall uninstall-am all-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ cp -f $(srcdir)/$$script $(builddir); \ done; \ fi clean-local: @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for script in $(SCRIPT_LIST); do \ rm -f $(builddir)/$$script; \ done; \ fi # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/tests/utils/tap/tap.c0000644000175000017500000002101212304150543014527 00000000000000/*- * Copyright (c) 2004 Nik Clayton * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #define _GNU_SOURCE #include #include #include #include #include "tap.h" static int no_plan = 0; static int skip_all = 0; static int have_plan = 0; static unsigned int test_count = 0; /* Number of tests that have been run */ static unsigned int e_tests = 0; /* Expected number of tests to run */ static unsigned int failures = 0; /* Number of tests that failed */ static char *todo_msg = NULL; static char *todo_msg_fixed = "libtap malloc issue"; static int todo = 0; static int test_died = 0; /* Encapsulate the pthread code in a conditional. In the absence of libpthread the code does nothing */ #ifdef HAVE_LIBPTHREAD #include static pthread_mutex_t M = PTHREAD_MUTEX_INITIALIZER; # define LOCK pthread_mutex_lock(&M); # define UNLOCK pthread_mutex_unlock(&M); #else # define LOCK # define UNLOCK #endif static void _expected_tests(unsigned int); static void _tap_init(void); static void _cleanup(void); /* * Generate a test result. * * ok -- boolean, indicates whether or not the test passed. * test_name -- the name of the test, may be NULL * test_comment -- a comment to print afterwards, may be NULL */ unsigned int _gen_result(int ok, const char *func, char *file, unsigned int line, char *test_name, ...) { va_list ap; char *local_test_name = NULL; char *c; int name_is_digits; LOCK; test_count++; /* Start by taking the test name and performing any printf() expansions on it */ if(test_name != NULL) { va_start(ap, test_name); if (vasprintf(&local_test_name, test_name, ap) == -1) { local_test_name = NULL; } va_end(ap); /* Make sure the test name contains more than digits and spaces. Emit an error message and exit if it does */ if(local_test_name) { name_is_digits = 1; for(c = local_test_name; *c != '\0'; c++) { if(!isdigit(*c) && !isspace(*c)) { name_is_digits = 0; break; } } if(name_is_digits) { diag(" You named your test '%s'. You shouldn't use numbers for your test names.", local_test_name); diag(" Very confusing."); } } } if(!ok) { printf("not "); failures++; } printf("ok %d", test_count); if(test_name != NULL) { printf(" - "); /* Print the test name, escaping any '#' characters it might contain */ if(local_test_name != NULL) { flockfile(stdout); for(c = local_test_name; *c != '\0'; c++) { if(*c == '#') fputc('\\', stdout); fputc((int)*c, stdout); } funlockfile(stdout); } else { /* vasprintf() failed, use a fixed message */ printf("%s", todo_msg_fixed); } } /* If we're in a todo_start() block then flag the test as being TODO. todo_msg should contain the message to print at this point. If it's NULL then asprintf() failed, and we should use the fixed message. This is not counted as a failure, so decrement the counter if the test failed. */ if(todo) { printf(" # TODO %s", todo_msg ? todo_msg : todo_msg_fixed); if(!ok) failures--; } printf("\n"); if(!ok) { if(getenv("HARNESS_ACTIVE") != NULL) fputs("\n", stderr); diag(" Failed %stest (%s:%s() at line %d)", todo ? "(TODO) " : "", file, func, line); } free(local_test_name); UNLOCK; /* We only care (when testing) that ok is positive, but here we specifically only want to return 1 or 0 */ return ok ? 1 : 0; } /* * Initialise the TAP library. Will only do so once, however many times it's * called. */ void _tap_init(void) { static int run_once = 0; if(!run_once) { atexit(_cleanup); /* stdout needs to be unbuffered so that the output appears in the same place relative to stderr output as it does with Test::Harness */ setbuf(stdout, 0); run_once = 1; } } /* * Note that there's no plan. */ int plan_no_plan(void) { LOCK; _tap_init(); if(have_plan != 0) { fprintf(stderr, "You tried to plan twice!\n"); test_died = 1; UNLOCK; exit(255); } have_plan = 1; no_plan = 1; UNLOCK; return 1; } /* * Note that the plan is to skip all tests */ int plan_skip_all(char *reason) { LOCK; _tap_init(); skip_all = 1; printf("1..0"); if(reason != NULL) printf(" # Skip %s", reason); printf("\n"); UNLOCK; exit(0); } /* * Note the number of tests that will be run. */ int plan_tests(unsigned int tests) { LOCK; _tap_init(); if(have_plan != 0) { fprintf(stderr, "You tried to plan twice!\n"); test_died = 1; UNLOCK; exit(255); } if(tests == 0) { fprintf(stderr, "You said to run 0 tests! You've got to run something.\n"); test_died = 1; UNLOCK; exit(255); } have_plan = 1; _expected_tests(tests); UNLOCK; return e_tests; } unsigned int diag(char *fmt, ...) { va_list ap; fputs("# ", stderr); va_start(ap, fmt); vfprintf(stderr, fmt, ap); va_end(ap); fputs("\n", stderr); return 0; } void _expected_tests(unsigned int tests) { printf("1..%d\n", tests); e_tests = tests; } int skip(unsigned int n, char *fmt, ...) { va_list ap; char *skip_msg = NULL; LOCK; va_start(ap, fmt); if (asprintf(&skip_msg, fmt, ap) == -1) { skip_msg = NULL; } va_end(ap); while(n-- > 0) { test_count++; printf("ok %d # skip %s\n", test_count, skip_msg != NULL ? skip_msg : "libtap():malloc() failed"); } free(skip_msg); UNLOCK; return 1; } void todo_start(char *fmt, ...) { va_list ap; LOCK; va_start(ap, fmt); if (vasprintf(&todo_msg, fmt, ap) == -1) { todo_msg = NULL; } va_end(ap); todo = 1; UNLOCK; } void todo_end(void) { LOCK; todo = 0; free(todo_msg); UNLOCK; } int exit_status(void) { int r; LOCK; /* If there's no plan, just return the number of failures */ if(no_plan || !have_plan) { UNLOCK; return failures; } /* Ran too many tests? Return the number of tests that were run that shouldn't have been */ if(e_tests < test_count) { r = test_count - e_tests; UNLOCK; return r; } /* Return the number of tests that failed + the number of tests that weren't run */ r = failures + e_tests - test_count; UNLOCK; return r; } /* * Cleanup at the end of the run, produce any final output that might be * required. */ void _cleanup(void) { LOCK; /* If plan_no_plan() wasn't called, and we don't have a plan, and we're not skipping everything, then something happened before we could produce any output */ if(!no_plan && !have_plan && !skip_all) { diag("Looks like your test died before it could output anything."); UNLOCK; return; } if(test_died) { diag("Looks like your test died just after %d.", test_count); UNLOCK; return; } /* No plan provided, but now we know how many tests were run, and can print the header at the end */ if(!skip_all && (no_plan || !have_plan)) { printf("1..%d\n", test_count); } if((have_plan && !no_plan) && e_tests < test_count) { diag("Looks like you planned %d %s but ran %d extra.", e_tests, e_tests == 1 ? "test" : "tests", test_count - e_tests); UNLOCK; return; } if((have_plan || !no_plan) && e_tests > test_count) { diag("Looks like you planned %d %s but only ran %d.", e_tests, e_tests == 1 ? "test" : "tests", test_count); UNLOCK; return; } if(failures) diag("Looks like you failed %d %s of %d.", failures, failures == 1 ? "test" : "tests", test_count); UNLOCK; } babeltrace-1.2.1/tests/utils/tap/tap.h0000644000175000017500000000617612304150543014552 00000000000000/*- * Copyright (c) 2004 Nik Clayton * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* '## __VA_ARGS__' is a gcc'ism. C99 doesn't allow the token pasting and requires the caller to add the final comma if they've ommitted the optional arguments */ #ifdef __GNUC__ # define ok(e, test, ...) ((e) ? \ _gen_result(1, __func__, __FILE__, __LINE__, \ test, ## __VA_ARGS__) : \ _gen_result(0, __func__, __FILE__, __LINE__, \ test, ## __VA_ARGS__)) # define ok1(e) ((e) ? \ _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \ _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e)) # define pass(test, ...) ok(1, test, ## __VA_ARGS__); # define fail(test, ...) ok(0, test, ## __VA_ARGS__); # define skip_start(test, n, fmt, ...) \ do { \ if((test)) { \ skip(n, fmt, ## __VA_ARGS__); \ continue; \ } #elif __STDC_VERSION__ >= 199901L /* __GNUC__ */ # define ok(e, ...) ((e) ? \ _gen_result(1, __func__, __FILE__, __LINE__, \ __VA_ARGS__) : \ _gen_result(0, __func__, __FILE__, __LINE__, \ __VA_ARGS__)) # define ok1(e) ((e) ? \ _gen_result(1, __func__, __FILE__, __LINE__, "%s", #e) : \ _gen_result(0, __func__, __FILE__, __LINE__, "%s", #e)) # define pass(...) ok(1, __VA_ARGS__); # define fail(...) ok(0, __VA_ARGS__); # define skip_start(test, n, ...) \ do { \ if((test)) { \ skip(n, __VA_ARGS__); \ continue; \ } #else /* __STDC_VERSION__ */ # error "Needs gcc or C99 compiler for variadic macros." #endif /* __STDC_VERSION__ */ #define skip_end() } while(0); unsigned int _gen_result(int, const char *, char *, unsigned int, char *, ...); int plan_no_plan(void); int plan_skip_all(char *); int plan_tests(unsigned int); unsigned int diag(char *, ...); int skip(unsigned int, char *, ...); void todo_start(char *, ...); void todo_end(void); int exit_status(void); babeltrace-1.2.1/tests/ctf-traces/0000755000175000017500000000000012306621160013772 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/0000755000175000017500000000000012272477052014720 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/fail2/0000755000175000017500000000000012272477052015715 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/fail2/metadata0000644000175000017500000001603212272477052017342 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; test = "\""; test2 = "?\x20\o040?"; test3 = '\n'; /* Handle metadata with NULL byte within string (error) */ test4 = "abcaabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc"; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/fail/smalltrace/0000755000175000017500000000000012272477052017047 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/smalltrace/metadata0000644000175000017500000000064112272477052020473 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/fail/smalltrace/dummystream-fail0000644000175000017500000000000612272477052022166 00000000000000ÁüÁ*dbabeltrace-1.2.1/tests/ctf-traces/fail/fail1/0000755000175000017500000000000011616300315015700 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/fail1/dummystream0000644000175000017500000004000011563340006020106 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d4Vxªªªª»»»»ÌÌÝÝîÿîÿababeltrace-1.2.1/tests/ctf-traces/fail/fail1/metadata0000644000175000017500000000171011616300315017322 00000000000000/* CTF 1.8 * * Architecture with 32-bit pointers, 32-bit integers, 32-bit longs. */ typealias integer { size = 1; align = 1; signed = false; } := uint1_t; typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 63; align = 1; signed = false; } := timestamp_t; typealias integer { size = 32; align = 32; signed = false; base = 10; } := uint32_t; typealias integer { size = 32; align = 32; signed = false; } := void *; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; stream { event.header := struct { uint1_t id; timestamp_t timestamp; }; event.context := struct { uint32_t thread_id; uint32_t event_count; }; }; event { name = func_enter; id = 0; fields := struct { void *func_called; void *called_from; }; }; event { name = func_exit; id = 1; }; babeltrace-1.2.1/tests/ctf-traces/fail/lttng-modules-2.0-pre1/0000755000175000017500000000000012272477052020660 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/lttng-modules-2.0-pre1/metadata0000755000175000017500000007000011614565235022303 00000000000000WÑuÀÌÛ%ÿèD—„"ƉA›€€typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; } := uint16_t; typealias integer { size = 32; align = 8; signed = false; } := uint32_t; typealias integer { size = 64; align = 8; signed = false; } := uint64_t; typealias integer { size = 5; align = 1; signed = false; } := uint5_t; typealias integer { size = 27; align = 1; signed = false; } := uint27_t; trace { major = 0; minor = 1; uuid = "1fc0ccdb-25ff-e844-9784-22c689419b0f"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; struct packet_context { uint64_t timestamp_begin; uint64_t timestamp_end; uint32_t events_discarded; uint32_t content_size; uint32_t packet_size; uint32_t cpu_id; }; struct event_header_compact { enum : uint5_t { compact = 0 ... 30, extended = 31 } id; variant { struct { uint27_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); struct event_header_large { enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id; variant { struct { uint32_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); stream { id = 0; event.header := struct event_header_large; packet.context := struct packet_context; event.context := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } nice; }; }; event { name = block_rq_remap; id = 52; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_remap; id = 51; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_split; id = 50; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } new_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_unplug; id = 49; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } nr_rq; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_plug; id = 48; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_sleeprq; id = 47; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0;WÑuÀÌÛ%ÿèD—„"ƉA›€€ encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_getrq; id = 46; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_queue; id = 45; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_frontmerge; id = 44; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_backmerge; id = 43; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_complete; id = 42; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } error; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_bounce; id = 41; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_rq_issue; id = 40; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_insert; id = 39; stream_id = 0; fields := struct { integer { size = 32; align = 8; sWÑuÀÌÛ%ÿèD—„"ƉA›€€igned = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_complete; id = 38; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_requeue; id = 37; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_abort; id = 36; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = softirq_raise; id = 35; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_exit; id = 34; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_entry; id = 33; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = irq_handler_exit; id = 32; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = irq_handler_entry; id = 31; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; string name; }; }; event { name = kvm_async_pf_completed; id = 30; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } pfn; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_ready; id = 29; streaWÑuÀÌÛ%ÿèD—„"ƉA›€€m_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_not_present; id = 28; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_doublefault; id = 27; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_try_async_get_page; id = 26; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_age_page; id = 25; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } hva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } referenced; }; }; event { name = kvm_fpu; id = 24; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } load; }; }; event { name = kvm_mmio; id = 23; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } type; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } len; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gpa; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } val; }; }; event { name = kvm_ack_irq; id = 22; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } irqchip; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } pin; }; }; event { name = kvm_msi_set_irq; id = 21; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } data; }; }; event { name = kvm_ioapic_set_irq; id = 20; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } e; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } pin; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } coalesced; }; }; event { name = kvm_set_irq; id = 19; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } gsi; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } level; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq_source_id; }; }; event { name = kvm_userspace_exit; id = 18; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } reason; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errno; }; }; event { name = sched_pi_setprio; id = 17; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } oldprio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } newprio; }; }; event { name = sched_stat_runtime; id = 16; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } runtWÑuÀÌÛ%ÿèD—„"ƉA›€€ime; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } vruntime; }; }; event { name = sched_stat_iowait; id = 15; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_sleep; id = 14; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_wait; id = 13; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_process_fork; id = 12; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } parent_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } parent_tid; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } child_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } child_tid; }; }; event { name = sched_process_wait; id = 11; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_wait_task; id = 10; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_exit; id = 9; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_free; id = 8; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_migrate_task; id = 7; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } orig_cpu; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } dest_cpu; }; }; event { name = sched_switch; id = 6; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } prev_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_prio; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } prev_state; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } next_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } next_tid; integer { size = 32; align = 8; signed = 1;WÑuÀÌÛ%ÿèD—„"ƉA›Ø>€ encoding = none; base = 10; } next_prio; }; }; event { name = sched_wakeup_new; id = 5; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_wakeup; id = 4; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_kthread_stop_ret; id = 3; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sched_kthread_stop; id = 2; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; }; }; event { name = sys_exit; id = 1; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sys_enter; id = 0; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } args[6]; }; }; WÑuÀÌÛ%ÿèD—„"ƉA›€babeltrace-1.2.1/tests/ctf-traces/fail/packet-based-metadata/0000755000175000017500000000000012272477052021021 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/packet-based-metadata/metadata0000644000175000017500000000117411613356205022441 00000000000000WÑu¹?DÂHNAÄ®¸©·¸]à€typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; } := uint32_t; trace { major = 0; minor = 1; uuid = "b93f44c2-484e-41c4-aeb8-05a9b7b81f5d"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; typealias integer { size = 64; align = 64; signed = false; } := uint64_t; event.header := struct { uint64_t timestamp; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/fail/integer-range/0000755000175000017500000000000012272477052017447 500000000000000babeltrace-1.2.1/tests/ctf-traces/fail/integer-range/metadata0000644000175000017500000000113112272477052021066 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; } := uint32_t; trace { /* Integer out of range */ major = 23452397856348975623897562893746589237465289374658923764598237645897234658723648579236; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/0000755000175000017500000000000012304150543015405 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/succeed4/0000755000175000017500000000000012272477052017117 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/succeed4/metadata0000644000175000017500000000123712272477052020545 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; } := uint32_t; trace { major = 0; minor = 1; test = 0xABC234; /* hexadecimal */ test1 = 06534; /* octal */ test2 = 1234; /* decimal */ test3 = +1234; /* decimal with + unary op */ test4 = -1234; /* decimal (negated) */ uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/succeed2/0000755000175000017500000000000012127273113017104 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/succeed2/dummystream0000644000175000017500000050000011561113741021312 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d¨ÿakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8ÁüÁ*d"ÐlîàŒË׳¥dxÿlibpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0ÁüÁ*d"ÐlîàŒË׳¥dàÿlibgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonÁüÁ*d"ÐlîàŒË׳¥dàÿenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4ÁüÁ*d"ÐlîàŒË׳¥dpëlibplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsbabeltrace-1.2.1/tests/ctf-traces/succeed/succeed2/metadata0000644000175000017500000000077712127273113020542 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/smalltrace/0000755000175000017500000000000012272477052017547 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/smalltrace/dummystream0000644000175000017500000000010512272477052021755 00000000000000ÁüÁ*d"ÐlîàŒË׳¥dThis is a test tracewith only two small events.babeltrace-1.2.1/tests/ctf-traces/succeed/smalltrace/metadata0000644000175000017500000000064112272477052021173 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/0000755000175000017500000000000011616325072021357 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_10000755000175000017500000017000011616325072023133 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÔœÈ7k+f„È7Ø€ÿÿ#pBØyÈ7#áLØy !mTØy"ÝVØy!9XØy "°\Øy #a# z# & z # * z!y, z"e. z!g/ z"?9 z!2: z "> z #»þ=z#a>z ! >z"³>z!£>z "Ž >z #ŒÛpz#Þpz #,ápz!„ãpz"våpz!]æpz"Úðpz!Íñpz "–õpz [£szuhci_hcd:usb4 רsz¶«szeth0#Ô±sz ñ²sz!@µsz"DÌsz#¾¹£z#ë¼£z !ˆÂ£z"nÄ£z!gÅ£z "yÈ£z #U–Öz#RœÖz!¡žÖz"œ Öz!˜¡Öz" «Öz#ìg {!xu {"7w {¦»{ahci#9È{ RÊ{¤Ì{uhci_hcd:usb3 0Ñ{(Ó{eth1 ç×{!îÙ{ó{kworker/1:0,&x(&{€ºð0+kworker/0:0" { {kworker/0:0kworker/1:0,&‰&{kworker/1:0,&d5`RQ¾ê4{kworker/1:0,&kworker/0:0#P<{#\R<{ #¹U<{!õX<{"[<{! \<{"7e<{!*f<{ "ÿi<{ #Ë!o{#u,o{ !d1o{"ü2o{!æ3o{ "†6o{ #ñ ¢{#¡¢{!¢{"»¢{!Ÿ¢{"±¢{#‡âÔ{#׿Ô{ !£êÔ{"GìÔ{!.íÔ{ "}ïÔ{ #®Å|#ŽÇ| #rË|!îÍ|"¿Ï|!¸Ð|"—Ù|!Ú| "0Ý| ›´#|ahci 2Ã#|yÄ#|uhci_hcd:usb3 ùÈ#|XÊ#|eth1 Ï#|#9Ÿ:|#š¡:| !4§:|"D©:|!Cª:| "Ѭ:| N<|ahci ®!<| #<|uhci_hcd:usb3 ¢'<|ã(<|eth1 “-<|]$U|ahci r0U|Ñ1U|uhci_hcd:usb3 c6U|›7U|eth1 fÓ|"¯?Ó|!@Ó|"ÈJÓ|!»KÓ| "RNÓ| #ÿ}!Ð}"ƒ}#þî8}#ò8} #Xõ8}!­÷8}"6ù8}!ú8}"‰9}!9} "[9} #¿Ák}!«Ík}"jÏk}#´žž}#O¬ž}!…¯ž}"\±ž}!a²ž}"µ»ž}#ñ„Ñ}!ߊÑ}"ïŒÑ}ÞÜ}ahci P%Ü}ˆ&Ü}uhci_hcd:usb3 ä*Ü},Ü}eth1 À0Ü}#!a~#5e~!Æg~"ši~!œj~"kt~#+57~!/@7~"ßA7~#Aj~#"j~!×!j~"Z#j~!_$j~"U.j~#î÷œ~!2üœ~"Üýœ~#’ÓÏ~#®ØÏ~! ÛÏ~"˜ÜÏ~!ˆÝÏ~"æÏ~#Ʋ!`¸""º#*5#­‘5!&”5"ñ•5!ó–5"rŸ5#?bh!nh"·oh#ÁF›#/K›!–M›":O›!'P›"µX›#Ö$Î!—*Î"J,Î#Ø€#¹€!J €"Ê €!· €"€#6Ý3€!€á3€"!ã3€#Ù¼f€#Áf€!uÃf€"Åf€!6Æf€" Ïf€#;–™€!Öš™€"wœ™€#©sÌ€#êwÌ€!BzÌ€"Â{Ì€!¯|Ì€"ñ…Ì€#¬Qÿ€!¸Wÿ€"qYÿ€#‚%2#P42!Ò62"R82!<92"8C2#e!Òe"Ùe#ê—#“î—!ñ—"ó—!ô—"þþ—#¡ÃÊ!ÉÊ"¬ÊÊ#טý#*¦ý!‚¨ý"ªý!ûªý"9µý#‘0‚!Ά0‚"‡ˆ0‚#›Rc‚#8^c‚!À`c‚"Ibc‚!Qcc‚"Ølc‚#T;–‚!lA–‚" C–‚#tÉ‚#?É‚!£É‚"J É‚!O!É‚"+É‚#òû‚!$÷û‚"Èøû‚#Ï.ƒ#âÓ.ƒ! Ö.ƒ“Ú.ƒkworker/1:0,&x"›Þ.ƒ!Íß.ƒ"·é.ƒàí.ƒkworker/0:0kworker/1:0,&û.ƒkworker/1:0,&!~sQ¾Þ/ƒkworker/1:0,&kworker/0:0#c®aƒ!ü´aƒ"Q·aƒ#Ɖ”ƒ#Ÿ”ƒ! ’”ƒ"È“”ƒ!Ê””ƒ"tŸ”ƒ#äeǃ!ølǃ"·nǃ#‚Búƒ#|Húƒ!ÎJúƒ"QLúƒ!>Múƒ"œXúƒ# -„!5%-„"'-„#íò_„#Gý_„!¥ÿ_„"+`„!`„" `„óf„ahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽ)f„È7ÞE”È7Ø€ )f„Y.f„uhci_hcd:usb3 è2f„54f„eth1 9f„#AÐ’„!òÝ’„"ê’„#í¶Å„#[»Å„!˽ń"x¿Å„!eÀÅ„"°ÌÅ„#Y‰ø„!Ä™ø„"w›ø„#4o+…#Žr+…!×t+…"Šv+…!w+…"„+…#8C^…!9Q^…"US^…#Å'‘…#Ë*‘…!>-‘…"å.‘…!í/‘…"è:‘…#zÄ…!ä Ä…"—Ä…#‰âö…#õåö…!Vèö…"Óéö…!Ãêö…"öö…C†ahci º††uhci_hcd:usb3 Ÿ†Ô†eth1 І#&¿)†!¿Å)†"È)†#\†#§ \†!ç¢\†"²¤\†!œ¥\†"ë³\†#{†!€†"2‚†#ÆS†#Y†!”[†"S]†!U^†"'k†#ž2õ†! 8õ†"²9õ†#Ò(‡#Ã(‡!3(‡"ò(‡!ú(‡"C&(‡#BìZ‡!¸ñZ‡"ƒóZ‡#³Ê‡#œÏ‡!ñч"wÓ‡!aÔ‡"¬à‡#øœÀ‡!¿«À‡"i­À‡#)„ó‡#aˆó‡!¶Šó‡"xŒó‡!zó‡"K˜ó‡#·^&ˆ!_e&ˆ"îf&ˆ#p;Yˆ#µ>Yˆ!%AYˆ"½BYˆ!ªCYˆ"OYˆ#ÃŒˆ!ÓŒˆ"¤!Œˆ#4ö¾ˆ#îù¾ˆ!:ü¾ˆ"Àý¾ˆ!°þ¾ˆ"d¿ˆ#§Òñˆ!§Øñˆ"TÚñˆ#ɦ$‰#µ$‰!‚·$‰"D¹$‰!Cº$‰"YÅ$‰#Š‹W‰!ßW‰"‰’W‰#»hЉ#¶mЉ!&pЉ"ÙqЉ!ÛrЉ"é|Љ#yF½‰!uM½‰"vO½‰#Ù$ð‰#l+ð‰!ë-ð‰"n/ð‰!d0ð‰"ú9ð‰#Ä#Š!f#Š"( #Š#ÌÓUŠ#¼àUŠ!AãUŠ"ÇäUŠ!´åUŠ"•ïUŠf^Šahci Û+^Š7-^Šuhci_hcd:usb3 º1^Šs3^Šeth1 )8^Š#š¼ˆŠ!éÁˆŠ"ÉÈŠ#­—»Š#*œ»Š!Êž»Š"† »Š!s¡»Š"J¬»Š#trîŠ!äwîŠ"ÐyîŠ#ˆQ!‹#U!‹!ôW!‹"˜Y!‹!‚Z!‹"0d!‹#$T‹!(2T‹"Ì3T‹#Î ‡‹#؇‹!$‡‹"O‡‹!]‡‹"õ!‡‹#Žç¹‹!í¹‹"É#âÁì‹#EÈì‹!ýÊì‹"•Ìì‹!‚Íì‹"Ì×ì‹#á Œ! ¨Œ"穌#Æ|RŒ#RŒ!°ƒRŒ"N…RŒ!;†RŒ"ÑRŒ#ì[…Œ!›a…Œ"¸Œ"Ô?¸Œ!¾@¸Œ"áJ¸Œ#³ ëŒ!*ëŒ"ãëŒ#•ç#pò!Fõ"Ìö!¹÷"å#™ÍP!âÕP"CØP#¶©ƒ#¾­ƒ!¦°ƒ"³ƒ!´ƒ"®½ƒ=ˆahci …œˆóˆuhci_hcd:usb3 ˆ¢ˆÌ£ˆeth1 ¨ˆ#戶!û޶"Û¶#cé#Ÿhé!îjé"nlé!ymé"uwé#­7Ž!­DŽ"ZFŽ#OŽ#R#OŽ!&OŽ"Ò'OŽ!Ô(OŽ"¸2OŽ#ˆúŽ!§ÿŽ"i‚Ž#Ù´Ž#ÜÝ´Ž!%à´Ž"Àá´Ž!°â´Ž"ì´Ž#ö°çŽ!l¶çŽ"g¸çŽ#æ#Ï•!Q˜"+š!-›"W¤#wnM!8tM"îuM#}I€#£M€!…P€"/R€!S€"']€#*³!ý.³"ª0³#Rûå#V æ!Õ æ"æ!´æ"žæ#|ß!õä"“æ#ÊÀK# ÅK!ŠÇK" ÉK!÷ÉK"gÒK#Áœ~!õ¤~"À¦~#“u±#’y±!|±"…}±!o~±"퇱#dKä!›Zä"H\ä#\(‘#ß3‘!y6‘"S8‘!U9‘"+B‘# J‘!1J‘"äJ‘#£á|‘#Šë|‘!»í|‘"}ï|‘!gð|‘"ú|‘#ŠÉ¯‘!ϯ‘"dѯ‘#{›â‘#Ú©â‘!5¬â‘"Ó­â‘!É®â‘"F¹â‘#\x’!e„’" †’#<^H’#rdH’!ÖfH’"}hH’!‚iH’"„sH’#2{’!€={’"?{’#®’#®’!Ù!®’"ž#®’! $®’"þ,®’#!öà’!àúà’"¢üà’#ŽÓ“#Û“!!Ý“"ìÞ“!ñß“"¯è“#p¬F“!¨°F“"X²F“#šŠy“#y“!–‘y“"p“y“!u”y“"-y“#æg¬“!8m¬“"÷n¬“#Bß“#™Gß“!Jß“"¶Kß“!¦Lß“"½Vß“:²ä“ahci 9¿ä“Àä“uhci_hcd:usb3 Åä“MÆä“eth1 Ëä“#Ñ ”!é&”"ö(”#¥üD”#ûE”!ME”ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ E”È7à™žÈ7ð€" E”!3E”"«E”#8Ýw”!Tåw”¡ìw”ltt-kconsumerd2öñw”ltt-kconsumerd2x"Žöw”úw”kworker/0:0ltt-kconsumerd2‹&x”H-x”ö·0x”Ç2x”ö€@ŽK=¿P4x”Ÿ6x”HŽK=¿=Dx”MFx” +˜x”%›x” -V¦x”ˆ0 ltt-kconsumerdåÅx”Èx” šÍx”’Ïx”Ý ÚÞx”ÝAáx”öÞãx”òçx”°Ä@ ÿÿÿÿÿÿÿÿ]õx”ltt-kconsumerd2@0¿<y”ltt-kconsumerd2kworker/0:0# ºª”#!Cª”"§Äª”!¯Åª”"ÃϪ”#‹•Ý”!"›Ý”"çœÝ”#…s•#›x•!üz•"ˆ|•!–}•"®†•#°PC•!KUC•"WC•#Ñ+v•#$0v•!33v•"¿4v•!¯5v•"y>v•#Ω•! ©•"p©•#äÛ•#†èÛ•!ÛêÛ•"”ìÛ•!–íÛ•"*öÛ•#(Á–!'Å–"æÆ–#!žA–#¢A–!¤A–"d¦A–!Q§A–"l°A–)#G–ahci 1G–È2G–uhci_hcd:usb3 l7G–¿8G–eth1 {=G–#òzt–!f‚t–"‹„t–#|Y§–#¢]§–!`§–"ìa§–!Ùb§–"œl§–#Ó4Ú–!&<Ú–"è=Ú–#< —#ƒ —!ä —"j —!T —"!! —#gñ?—!#ö?—"Ç÷?—#óÍr—#‚Òr—!×Ôr—"™Ör—!à×r—"Eâr—#'©¥—!ý®¥—"°¥—#†|Ø—#‡Ø—!s‰Ø—"S‹Ø—!=ŒØ—"í–Ø—#Ãb ˜!½h ˜"j ˜#¦?>˜#PD>˜!ÛF>˜"dH>˜!QI>˜"SS>˜#q˜!ø!q˜"¥#q˜#½ú£˜#%ÿ£˜!‰¤˜"i¤˜!k¤˜"[¤˜#ÙÖ˜!VâÖ˜"äÖ˜#I³ ™#ü· ™!]º ™"Ý» ™!ʼ ™"$Ì ™íº™ahci GÊ™úË™uhci_hcd:usb3 SЙ Ñ™eth1 }Ö™#‚Ž<™!9•<™"d—<™#ºmo™#"ro™!›to™"ovo™!\wo™"„o™#¼I¢™#KN¢™!åP¢™"ÑR¢™!»S¢™"[¢™#ò#Õ™#'Õ™!ª)Õ™"H+Õ™!5,Õ™"0Õ™#”š#Ë š!5 š"Ð š!½š" š#,ß:š#â:š!kä:š"Kæ:š!Mç:š"¼ê:š#m»mš#€Àmš!áÂmš"…Ämš!rÅmš"òÌmš#e˜ š#þ› š!>ž š"ÄŸ š!´  š"¤ š#qvÓš#À{Óš!-~Óš"¿Óš! Óš"‰Óš#¹Q›#tT›!ÉV›"^X›!‡Y›"œ\›½6›ahci ‡E›¼F›uhci_hcd:usb3 NK›éL›eth1 Q›#é19›#?69›!µ89›"æ:9›!è;9›"•C9›#« l›#Ñl›!5l›"¾l›!«l›"l›#Ñçž›#6ìž›!}ïž›"Eñž›!/òž›"‘ùž›#%ÆÑ›#þÈÑ›!GËÑ›"*ÍÑ›!ÎÑ›" ÒÑ›#ü™œ#䥜!$¨œ"Ωœ!»ªœ"ù±œ#^‚7œ#ˆ7œ!DŠ7œ"Ó‹7œ!½Œ7œ"n7œ#k\jœ#I`jœ!¡bjœ"3djœ!2ejœ"„mjœ#¿6œ#»:œ!^=œ"ê>œ!ã?œ""Cœ#† М#½М!М"ûМ!èМ"’%М#ê#ïõ!Jø"ú!û"ßþ#'Ï5#zÓ5!äÕ5"—×5!‡Ø5"à5#ɪh#ž®h!M±h"Ù²h!À³h"·h#Š›#ÞŽ›!N‘›"æ’›!Ê“›"››#}gÎ#mÎ!coÎ"øpÎ!ÜqÎ"ôtÎ#ƒBž#rGž!µIž"AKž!"Lž"‡Sž#ã"4ž#Â%4ž!A(4ž"Í)4ž!±*4ž" /4ž# ôfž#yýfž!Èÿfž"Zgž!;gž"î gž#ªØ™žÁüÁõ©‹à‡îØF²ÿbÊ™HŽUß™žÈ7öÃRªÈ7€€#Uß™ž!d䙞".ó™ž!'ô™ž"{÷™ž#ö»Ìž#÷ÀÌž!mÃÌž"JÅÌž!+ÆÌž"ÏÍÌž¬Ñžahci âºÑž5¼Ñžuhci_hcd:usb3 µÀÑžðÁÑžeth1 ¬ÆÑž#¤”ÿž#šÿž!œÿž"ˆžÿž!iŸÿž"£ÿž#¢q2Ÿ#ªu2Ÿ!x2Ÿ"—y2Ÿ!{z2Ÿ"×2Ÿ#4DeŸ#œc #¯£c !ަc "ƒ¨c !|©c "¢°c #q– # |– !Ð~– "– !ú– "-…– #›UÉ #YÉ !Ñ[É "l]É !V^É "úeÉ #î6ü #À:ü !=ü "§>ü !—?ü "¬Bü |'¡ahci õ5¡H7¡uhci_hcd:usb3 Î;¡=¡eth1 ÑA¡#h/¡#d/¡!Î/¡"½/¡!¡/¡"V!/¡#käa¡#ña¡!óa¡"ˆõa¡!oöa¡"Gúa¡#°É”¡#Δ¡!XД¡"íÑ”¡!ÑÒ”¡"Ú”¡#üÇ¡#’ªÇ¡!­Ç¡"¯Ç¡!ö¯Ç¡"³Ç¡#u„ú¡#§ˆú¡!\‹ú¡"<ú¡! Žú¡"s•ú¡#z`-¢#f-¢!h-¢"j-¢!3k-¢"÷m-¢#Ù;`¢#‰@`¢!öB`¢"…D`¢!ÏE`¢"ìL`¢#“¢#É“¢!-"“¢"¹#“¢!¸$“¢" (“¢­Ã™¢ahci PÒ™¢¦Ó™¢uhci_hcd:usb3 Ø™¢^Ù™¢eth1 ,Þ™¢#ŒùÅ¢#¤ÿÅ¢!ÞÆ¢"ÖÆ¢!·Æ¢"> Æ¢#Ëø¢#mÕø¢!Øø¢"öÙø¢!ÚÚø¢"‘Þø¢#‡±+£#m¶+£!¹+£"»+£!ò»+£"®Ã+£L0£ahci @ž0£œŸ0£uhci_hcd:usb3 ¤0£i¥0£eth1 "ª0£#¥^£#õ“^£!e–^£"f˜^£!G™^£"O^£#cj‘£#çm‘£!¿¦"a@¿¦!ZA¿¦"I¿¦#Cò¦#\ò¦!Ûò¦"mò¦!Qò¦"¢!ò¦# ð$§#Æô$§!0÷$§"¹ø$§!£ù$§"?%§#sÎW§#`ÒW§!¯ÔW§"8ÖW§!×W§"aÚW§#)¢Š§#•®Š§!󰊧"²Š§!³Š§"¸»Š§#5½§#¹½§!’½§"哽§!Þ”½§"M˜½§Й§ahci <©Â§’ªÂ§uhci_hcd:usb3 ¯Â§P°Â§eth1 µÂ§#Ÿcð§#hð§!˜jð§"Òlð§!³mð§"\vð§#Î8#¨#NC#¨!ÁE#¨"ÚG#¨!ÓH#¨"HL#¨#M!V¨#Ü%V¨!.(V¨"Õ)V¨!¼*V¨"Û2V¨#êüˆ¨#.‰¨!†‰¨"Q‰¨!G‰¨"ß ‰¨#YÛ»¨#Uß»¨!ËỨ"l㻨!‰ä»¨"í»¨#î´î¨#J¹î¨!·»î¨"^½î¨!{¾î¨"çÁî¨#…•!©#Jš!©!´œ!©"”ž!©!ŠŸ!©"ާ!©#•eT©#špT©!jsT©"8uT©!1vT©"±zT©#PL‡©#FP‡©!³R‡©"iT‡©!MU‡©"Ì]‡©#ø&º©#‚-º©!ò/º©"1º©!t2º©"E7º©#í©#& í©!;í©"ñí©!Òí©"yí©#¶ãª#cèª!Äêª"_ìª!Cíª"©ðª#ïµRª#ÀRª!ÂRªÁüÁõ©‹à‡îØF²ÿbÊ™HެËRªÈ7ü«³È7Ѐ¬ËRªltt-kconsumerd2{ÒRªltt-kconsumerd2x"U×Rª!~ØRª"îàRªÆäRªkworker/0:0ltt-kconsumerd2¨SªÜSªöuSªISªö€@ŽK=¿ºSªâSªHŽK=¿#*Sª,Sª ÁjSªamSª 0-˜uSª˜0 ltt-kconsumerdcŽSªsSª œ”Sªj–SªÝ .¥SªÝ8§Sªöl©Sª ­Sª°Ä@ ÿÿÿÿÿÿÿÿºSªltt-kconsumerd2ÔèÙ¿BÄSªltt-kconsumerd2kworker/0:0#©…ª#¤…ª!̧…ª"$ª…ª!«…ª"¯…ª#åx¸ª#Ò|¸ª!'¸ª"¶€¸ª!£¸ª"LЏª#1Uëª#uYëª!Ÿ\ëª"U^ëª!Q_ëª"&cëª#þ(«#¶4«!ê6«"p8«!W9«"0B«#½Q«#Q«!`Q«"ìQ«!ÐQ«"ŠQ«# 샫#eñƒ«!äóƒ«" õƒ«!„öƒ«"Qÿƒ«#¢¿¶«#³É¶«!ç˶«"vͶ«!Wζ«"rѶ«#Pªé«#+®é«!›°é«"'²é«! ³é«"dºé«##p‰¬!‹¬"T¬!>ެ"Ž’¬ë1(¬ahci ‹C(¬íD(¬uhci_hcd:usb3 ^I(¬«J(¬eth1 jO(¬v«;¬ahci ²º;¬ü»;¬uhci_hcd:usb3 aÀ;¬“Á;¬eth1 @Æ;¬#µ`O¬#eO¬!rgO¬" iO¬!‡jO¬"‡sO¬#¼<‚¬#­?‚¬! B‚¬"šC‚¬!„D‚¬"€H‚¬#6µ¬#Œµ¬!Ï µ¬" "µ¬!™#µ¬"ï*µ¬#°ìç¬#ßúç¬!dýç¬"ÿç¬!õÿç¬"»è¬#ÓÒ­#ÌÙ­!0Ü­"Þ­!ß­"wæ­#³¯M­#þ²M­!ûµM­"·M­!e¸M­"‰»M­#ù‚€­#Ÿ€­!0’€­"Ñ“€­!µ”€­"’œ€­#Aj³­#ñn³­!Fq³­"s³­! t³­"úw³­#QCæ­#Gæ­!ÉIæ­"[Kæ­!„Læ­"¸Tæ­#è!®#™%®!÷'®"†)®!ˆ*®"*.®#‡ýK®#0L®!‘L®"wL®!^L®"L®bQ®ahci ÿQ®OQ®uhci_hcd:usb3 ÒQ®Q®eth1 ÏQ®#Ý~®#®á~®! ä~®"Fæ~®!?ç~®"Së~®#°±®#æ½±®!)À±®"ÁÁ±®!¢Â±®"ŽÊ±®#èŒä®#Ê™ä®!šœä®"nžä®!jŸä®"¢ä®#Èi¯#øv¯!;y¯"Üz¯!Ã{¯"䄯#ÐQJ¯#ØXJ¯!<[J¯"Î\J¯!µ]J¯"'aJ¯#P-}¯#·2}¯!-5}¯"7}¯!8}¯"ÚB}¯#D °¯#u°¯!À°¯"ǰ¯!½°¯"°¯#Öèâ¯#Éïâ¯! òâ¯"¼óâ¯!²ôâ¯"[ýâ¯#ݹ°#Ûİ!<ǰ"ÔȰ!»É°"Ḭ́#ð¢H°#T¨H°!£ªH°",¬H°!­H°"õµH°#Å{{°#â{°![‚{°"öƒ{°!ׄ{°""ˆ{°#GX®°#µ\®°!Ð_®°"\a®°!@b®°" j®°#–7á°#Â;á°!˜>á°"]@á°!VAá°"kDá°#¤±#ñ!9±"ø±!÷±"»$±#`ñF±#¹õF±! øF±"ÐùF±!ÉúF±"MþF±#ìÍy±#ÛÒy±!EÕy±"×y±!6Øy±">ây±;ë~±ahci Dú~±šû~±uhci_hcd:usb3 ±U±eth1 ±#A«¬±#s¯¬±!²¬±" ´¬±!4µ¬±" ¹¬±#v‡ß±#Ƌ߱!9Žß±"ß±!‘ß±"“šß±#f²#åj²!Fm²"än²!Ëo²"[s²#¼@E²#EE²!UGE²"öHE²!×IE²"óQE²#Üx²#V"x²!Æ$x²"X&x²!<'x²"¼+x²#Àðª²#œÿª²! «²"°«²!”«²"” «²#¬Íݲ#GØÝ²!´Úݲ"ÙÜݲ!ÒÝݲ"âݲÁüÁõ©‹à‡îØF²ÿbÊ™HŽÁª³È7"Œ¼È7ð€#Áª³#K»³!ʽ³/³ltt-kconsumerd2sƳltt-kconsumerd2x"Õʳ!ò˳"©Ò³lÖ³kworker/0:0ltt-kconsumerd2lî³üñ³öŠô³pö³ö€@ŽK=¿Û÷³¾ù³HŽK=¿Ë³¥³ >1³Ï3³ @-0<³ 0 ltt-kconsumerdÈU³äW³ 0¸\³›^³Ý 0(k³Ý)m³öŠo³ir³°Ä@ ÿÿÿÿÿÿÿÿ¢~³ltt-kconsumerd2Ú¸³Ñ¿)ˆ³ltt-kconsumerd2kworker/0:0#”’C³#q—C³!’šC³"íœC³!õC³"`¢C³?ºH³ahci ›ÊH³úËH³uhci_hcd:usb3 kÐH³¯ÑH³eth1 eÖH³#3pv³#Ètv³!Gwv³"–yv³!Ëzv³"&ƒv³#ïH©³#UO©³!ÑQ©³"S©³!€T©³"ÐX©³#G'ܳ#–,ܳ!å.ܳ"}0ܳ!d1ܳ"á8ܳ#‡´#Ì´!- ´"¹ ´! ´"9´# áA´#2æA´!«èA´"êA´!~ëA´"*ôA´#ºt´#Û½t´!Àt´"õÁt´!îÂt´"`Æt´# š§´#Ÿ§´!<¡§´"΢§´!¯£§´"‰«§´#äxÚ´#|Ú´!?~Ú´"ËÚ´!©€Ú´"{„Ú´#jT µ#çX µ!E[ µ"Ý\ µ!¾] µ"_e µ#‰/@µ#ü4@µ!K7@µ"×8@µ!¸9@µ"å<@µ#ã sµ#ºsµ! sµ"Ësµ!²sµ"›sµ#¶ë¥µ#¾ï¥µ!pò¥µ"óó¥µ!×ô¥µ"pø¥µ#²Çص#5ÌØµ!ÃÎØµ"UÐØµ!6ÑØµ"þØØµ#£ ¶#{¦ ¶!ܨ ¶"nª ¶!R« ¶"¦® ¶#!€>¶#A„>¶!À†>¶"߈>¶!؉>¶"Á‘>¶#¸\q¶#aq¶!~cq¶"Ieq¶!?fq¶" jq¶#<<¤¶#/@¤¶!B¤¶""D¤¶!$E¤¶"¦M¤¶Ÿ±¶ahci v­±¶ä®±¶uhci_hcd:usb3 …³±¶½´±¶eth1 m¹±¶#í×¶#3×¶!×¶"!×¶!y"×¶"½&×¶#èô ·#Úù ·!ü ·"¬ý ·!“þ ·" ·#cÐ<·#™Ó<·!WÖ<·".Ø<·!'Ù<·"Ý<·#ůo·#“´o·!*·o·"¼¸o·! ¹o·"½Ào·#ŒŠ¢·#XŽ¢·!Ë¢·"«’¢·!Œ“¢·"@—¢·#0iÕ·#ƒmÕ·!ðoÕ·"ÜqÕ·!ùrÕ·"zÕ·#bD¸#G¸!ÞI¸"©K¸!ŠL¸"ŠO¸#0;¸#m$;¸!é&;¸"Ì(;¸!×);¸"1;¸#Êÿm¸#un¸!»n¸"Gn¸!gn¸"ô n¸#)Ü ¸#à ¸!Ýâ ¸"·ä ¸!­å ¸"Hí ¸#Y·Ó¸#ý»Ó¸!7¾Ó¸")ÀÓ¸! ÁÓ¸""ÄÓ¸#^“¹#®—¹!ñ™¹"‰›¹!mœ¹"w¤¹#ïo9¹#âs9¹!=v9¹"Ìw9¹!°x9¹"¼{9¹#÷Dl¹#¶Ul¹!êWl¹"|Yl¹!]Zl¹"Ubl¹#J+Ÿ¹#B0Ÿ¹! 2Ÿ¹"k4Ÿ¹!a5Ÿ¹"Á8Ÿ¹#ØÒ¹#” Ò¹!ÔÒ¹"`Ò¹!DÒ¹"‘Ò¹#Zæº#ëº!qíº"$ïº!ðº">óº#A¿7º#hÅ7º!óÇ7º"É7º!cÊ7º"»Ò7º#  jº#@¤jº!•¦jº"6¨jº!©jº"Y¬jº#ãqº#u|º!µ~º"€€º!º"yŠº#£Xк#Ý]к!`к"bк!übк"·eк#`5»#¨8»!÷:»"þ<»!!>»"õH»a­ »ahci 1¼ »‡½ »uhci_hcd:usb3  »Sà »eth1 È »#j6»#b6»!À6»"Ä6»!À6»"/ 6»#hïh»#õh»!x÷h»"»ùh»!±úh»"Æi»#ùÉ›»#Ò›»!µÔ›»"¼Ö›»!¬×›»"Û›»#‹¦Î»#oªÎ»! ­Î»"ž®Î»!¯Î»"õºÎ»#é…¼ÁüÁõ©‹à‡îØF²ÿbÊ™HŽáмÈ7ôÃÈ7ð€#ኼ!â¼´–¼ltt-kconsumerd2Ïœ¼ltt-kconsumerd2x" ¡¼!º¢¼"¦¼ª©¼kworker/0:0ltt-kconsumerd2wÓ¼oؼöZۼݼö€@ŽK=¿rÞ¼Oà¼HŽK=¿í¼ï¼ ´&¼6)¼ P-Ü1¼¨0 ltt-kconsumerdÑK¼óM¼ @gR¼DT¼Ý @V`¼ÝWb¼övd¼g¼°Ä@ ÿÿÿÿÿÿÿÿ;t¼ltt-kconsumerd2;Ùîª ¿€¼ltt-kconsumerd2kworker/0:0pμahci äÞ¼Là¼uhci_hcd:usb3 ½ä¼ æ¼eth1 êê¼#)e4¼#èi4¼!Wm4¼"Ço4¼!±p4¼"@{4¼#ý (Ã"°£(Ã#¦f[Ã# s[Ã! u[Ã"Yw[Ã!Rx[Ã"l‚[Ã#›MŽÃ#?RŽÃ!¬TŽÃ"ãVŽÃ!ÙWŽÃ"E[ŽÃ\S“Ãahci Þa“Ã1c“Ãuhci_hcd:usb3 ¢g“Ãïh“Ãeth1 “m“Ã#‘ ÁÃ#%,ÁÃ!›.ÁÃ"¥0ÁÃ!°1ÁÃ"–9ÁÃ#æôÃ#W ôÃÁüÁõ©‹à‡îØF²ÿbÊ™HŽØôÃÈ7b—JÍÈ7À€!ØôÃ{ôÃltt-kconsumerd2ôôÃltt-kconsumerd2x"ì$ôÃ!&ôÃ"´)ôÃ,-ôÃkworker/0:0ltt-kconsumerd2åXôÿ]ôÃöŒ`ôÃTbôÃö€@ŽK=¿ÂcôëeôÃHŽK=¿§rôÄtôà  ªôà¬ôà `-¤·ôð0 ltt-kconsumerdƒÒôñÔôà P:ÙôÃüÚôÃÝ PçôÃÝéôÃö7ëôÃaîôðÄ@ ÿÿÿÿÿÿÿÿÃúôÃltt-kconsumerd2ðÛÞ† ¿ðõÃltt-kconsumerd2kworker/0:0#è&Ä#…î&Ä!ò&Ä"dô&Ä!Qõ&Ä"þ&Ä#@ÀYÄ#ÅYÄ!oÇYÄ"²ÉYÄ!™ÊYÄ"ÚÎYÄ,‡dÄahci V–dľ—dÄuhci_hcd:usb3 8œdÄydÄeth1 #¢dÄ#pŒÄ#¡ŒÄ! ¤ŒÄ"F¦ŒÄ!B§ŒÄ"ê°ŒÄ#±x¿Ä#¹|¿Ä!¿Ä"µ€¿Ä!œ¿Ä"Ñ…¿Ä#HMòÄ#yYòÄ!æ[òÄ"Ÿ]òÄ!†^òÄ"ÿfòÄ#h3%Å#L7%Å!¿9%Å"K;%Å!2<%Å"³?%Å# XÅ#pXÅ!éXÅ"öXÅ!ÝXÅ"ë!XÅ#¨îŠÅ#»óŠÅ!%öŠÅ"¨÷ŠÅ!ŒøŠÅ"àûŠÅ#ƒÊ½Å#ñνÅ!@ѽÅ"ÒÒ½Å!°Ó½Å"ËܽÅ#oðÅ#¨ðÅ![«ðÅ"ö¬ðÅ!ã­ðÅ"š±ðÅ#„#Æ#ʈ#Æ! ‹#Æ"áŒ#Æ!ã#Æ"º•#Æ#saVÆ#+gVÆ!’iVÆ"-kVÆ!lVÆ" oVÆ#}>‰Æ#óC‰Æ!BF‰Æ" H‰Æ!I‰Æ"Q‰Æ#j¼Æ#r¼Æ!Ê ¼Æ"J"¼Æ!+#¼Æ"p&¼Æ#¡÷îÆ#ëûîÆ!‹þîÆ"JïÆ!CïÆ"> ïÆ#)Ò!Ç#tÕ!Ç!DØ!Ç"ÇÙ!Ç!«Ú!Ç"2Þ!Ç#8²TÇ#"¶TÇ!‰¸TÇ"*ºTÇ!»TÇ"cÃTÇ#¨Ž‡Ç#ƒ’‡Ç!Ò”‡Ç"X–‡Ç!9—‡Ç"Й‡Ç#HjºÇ#ÎnºÇ!‰qºÇ"WsºÇ!8tºÇ"ó|ºÇ#ŽGíÇ#zLíÇ!ÞNíÇ"jPíÇ!KQíÇ"–TíÇ#©( È#Þ, È!Q/ È" 1 È!ñ1 È"Ò; È#~÷RÈ#bSÈ!ÒSÈ"[SÈ!<SÈ"} SÈ#aÔ…È#ßÞ…È!Oá…È"Øâ…È!¼ã…È"žì…È#㸸È#q¾¸È!ÛÀ¸È"©Â¸È!¢Ã¸È"ÃÆ¸È#¾–ëÈ#ø›ëÈ!LŸëÈ"8¡ëÈ!1¢ëÈ"Í«ëÈÁðÈahci sÏðÈíÐðÈuhci_hcd:usb3 gÕðÈ´ÖðÈeth1 ^ÛðÈ#QkÉ#™wÉ!$zÉ"Ë{É!¬|É" €É#«PQÉ#^UQÉ!¿WQÉ"NYQÉ!/ZQÉ"ìcQÉ#Ž$„É#Ý/„É!°2„É"¢4„É!ƒ5„É"¶8„É#î·É#[·É!Ë·É"`·É!G·É"Ô·É#ÕçéÉ#¸ìéÉ!4ïéÉ",ñéÉ!òéÉ"¬õéÉ#ÃÊ#6ÈÊ!ÊÊ"§ÌÊ! ÍÊ"øØÊ#^¡OÊ#T¨OÊ!f«OÊ"ì¬OÊ!ЭOÊ"Ó°OÊ#€t‚Ê#‚‚Ê!׃‚Ê"c…‚Ê!G†‚Ê"™Ž‚Ê#4]µÊ#ŠaµÊ!ÜcµÊ"ƒeµÊ!gfµÊ" iµÊ#7èÊ#×=èÊ!@èÊ"¾AèÊ!¢BèÊ"ßJèÊ#Ë#¯Ë!Ë"ÌË!°Ë""Ë#EòMË#YöMË!GùMË"ýúMË!íûMË"áNË#"Ï€Ë#¬Ò€Ë!Õ€Ë"çÖ€Ë!à×€Ë"@Û€Ë#´¡³Ë#ű³Ë!´³Ë"ñµ³Ë!ê¶³Ë"é½³Ë#P‰æË#IŒæË!¡ŽæË"-æË!‘æË"‹•æË#gÌ#«lÌ!ÓnÌ"§pÌ! qÌ"½xÌ#lBLÌ#çGLÌ!EJLÌ"ãKLÌ!ÇLLÌ"öPLÌ#ÆÌ#ä%Ì!$(Ì"ò)Ì!î*Ì"Ï1Ì#^ü±Ì#`²Ì!вÌ"n²Ì!R²Ì"I²Ì#xÎäÌ#ÚäÌ!}ÜäÌ"BÞäÌ!#ßäÌ"¬æäÌ#p´Í#s·Í!¹Í"H»Í!&¼Í"ÀÍÁüÁõ©‹à‡îØF²ÿbÊ™HŽ0–JÍÈ7W³ÕÕÈ7Ѐ#0–JÍ#œJÍ!ÌžJÍe¥JÍltt-kconsumerd26ªJÍltt-kconsumerd2x"¯JÍ!6°JÍ"¸JÍÄ»JÍkworker/0:0ltt-kconsumerd2€äJÍléJÍöBìJÍ+îJÍö€@ŽK=¿ŸïJÍ‚ñJÍHŽK=¿6þJÍLKÍ LKÍ p-qGK͸0 ltt-kconsumerd„aKͬcKÍ `ÃgK͸iKÍÝ `etKÍÝcvKÍösxKÍ…{KͰÄ@ ÿÿÿÿÿÿÿÿ߇KÍltt-kconsumerd2ŠÞhe ¿u‘KÍltt-kconsumerd2kworker/0:0#¸p}Í#¡u}Í!y}Í"e{}Í!d|}Í"#}Í9ª‚Íahci ªº‚Í ¼‚Íuhci_hcd:usb3 ‰À‚ÍÊÁ‚Íeth1 kÆ‚Í#ïK°Í#6P°Í!>S°Í"„U°Í!ÅV°Í",_°Í#¯&ãÍ#+,ãÍ!/ãÍ",1ãÍ!"2ãÍ"6ãÍ#¥ûÎ#†Î!ÌÎ"d Î!H Î"(Î#(ßHÎ#ÙâHÎ!åHÎ",çHÎ!èHÎ"jëHÎ#Á{Î#àÄ{Î!;Ç{Î"÷È{Î!ðÉ{Î"ÙÑ{Î#,’®Î#E›®Î!v®Î";Ÿ®Î!4 ®Î"y£®Î#ÙnáÎ#JzáÎ!¢|áÎ"1~áÎ!áÎ" ‡áÎ#áUÏ#8\Ï!7_Ï"ÿ`Ï!øaÏ"ñeÏ# 2GÏ#N8GÏ!¬:GÏ"¿"ÞÐ!%#ÞÐ"J+ÞÐ#½öÑ#UûÑ!ÂýÑ"ŠÿÑ!†Ñ"CÑ#ÕCÑ#ÝØCÑ!MÛCÑ"ôÜCÑ!ÕÝCÑ"9æCÑ#ø¯vÑ#ó´vÑ!Z·vÑ"%¹vÑ!!ºvÑ"®½vÑ#V©Ñ#Ì’©Ñ!-•©Ñ"×–©Ñ!¾—©Ñ"¥ ©Ñ#ƒhÜÑ#–mÜÑ!îoÜÑ"†qÜÑ!grÜÑ"ÖuÜÑ#àDÒ#ñHÒ!OKÒ"ðLÒ!ÑMÒ"lWÒ#N BÒ#$BÒ!i&BÒ"û'BÒ!â(BÒ",BÒ#þtÒ#yuÒ!¶uÒ"‡uÒ!†uÒ"¥uÒ#oܧÒ# á§Ò!}ã§Ò"å§Ò!æ§Ò"€é§Ò#›ºÚÒ#p¾ÚÒ!ÑÀÚÒ"ŠÂÚÒ!qÃÚÒ"+ÍÚÒ#• Ó#s™ Ó!È› Ó"Z Ó!Až Ó"¡ Ó#wp@Ó#‡u@Ó!3x@Ó"Ýy@Ó!Áz@Ó"ó„@Ó#ÒNsÓ#ÊSsÓ!@VsÓ"AXsÓ!(YsÓ"s\sÓ#ú*¦Ó#¸0¦Ó!"3¦Ó"5¦Ó!õ5¦Ó"y?¦Ó#Ò ÙÓ#sÙÓ!°ÙÓ"KÙÓ!/ÙÓ"äÙÓ#|Ü Ô#në Ô!½í Ô"Xï Ô!Wð Ô"rù Ô#Y¹>Ô#'Ä>Ô!-Ç>Ô"ìÈ>Ô!åÉ>Ô"öÍ>Ô#ÞŸqÔ#ܤqÔ!1§qÔ"ƨqÔ!§©qÔ"±qÔ#-s¤Ô#|¤Ô!™€¤Ô"y‚¤Ô!uƒ¤Ô"À†¤Ô#Ü[×Ô#Õ_×Ô!Bb×Ô"øc×Ô!âd×Ô"m×ÔXÜÔahci _qÜÔµrÜÔuhci_hcd:usb3 /wÜÔpxÜÔeth1 }ÜÔ#÷5 Õ#C; Õ!³= Õ"á? Õ!Å@ Õ"èD Õ#8=Õ# =Õ!=Õ"ê=Õ!ã=Õ"™#=Õ#îoÕ#RñoÕ!¼óoÕ"fõoÕ!MöoÕ"ÈùoÕ#*Ì¢Õ#»Ñ¢Õ!Ô¢Õ"®Õ¢Õ!ìÖ¢Õ"¤ß¢Õ# ÕÕ#½­ÕÕ!3°ÕÕÁüÁõ©‹à‡îØF²ÿbÊ™HŽ1²ÕÕÈ7§!_ßÈ7à€"1²ÕÕ!4µÕÕ"»¸ÕÕ#©„Ö#_‰Ö!´‹ÖI“Öltt-kconsumerd2™Öltt-kconsumerd2x"AžÖ!FŸÖ"G§ÖªÖkworker/0:0ltt-kconsumerd2ÏÓÖšØÖö…ÛÖGÝÖö€@ŽK=¿¸ÞÖ›àÖHŽK=¿»ìÖªîÖ ý. Ö…1 Ö €-Á: Ö@‡0 ltt-kconsumerdüS ÖV Ö pzZ ÖK\ ÖÝ pìf ÖÝóh Öö0k ÖZn Ö°Ä@ ÿÿÿÿÿÿÿÿcz Öltt-kconsumerd2ã~H ¿„ Öltt-kconsumerd2kworker/0:0#²c;Ö# i;Ö!jl;Ö"žn;Ö! o;Ö"ós;Ö#J?nÖ#¯CnÖ!vFnÖ" HnÖ!InÖ"¸RnÖ#d¡Ö#Û¡Ö!?"¡Ö"Ñ#¡Ö!²$¡Ö"(¡Ö#0ðÓÖ#ýÓÖ!ÔÖ"¶ÔÖ!šÔÖ"ß ÔÖ#RÖ×#oÚ×!ÇÜ×"°Þ×!²ß×"`ã×#é©9×#ª³9×!áµ9×"‚·9×!o¸9×"—À9×#-l×#_”l×!½–l×"‚˜l×!{™l×"óœl×#•mŸ×#ärŸ×!0uŸ×"¿vŸ×! wŸ×"ïŸ×#£KÒ×#–OÒ×!ÙQÒ×"hSÒ×!FTÒ×"|WÒ×#QØ#N'Ø!µ)Ø"J+Ø!.,Ø"†4Ø#ÿ8Ø# 8Ø!O 8Ø"D 8Ø!( 8Ø"Ç8Ø#ÉÖjØ#äjØ! çjØ" éjØ!æéjØ"BôjØ#I¼Ø#NÃØ!¯ÅØ"PÇØ!4ÈØ"ëËØ#»šÐØ#ŸÐØ!B¡ÐØ"£ÐØ!¤ÐØ"3­ÐØ#1vÙ#zÙ!ñ|Ù"~Ù!sÙ" ‚Ù#4J6Ù#…S6Ù!³U6Ù"EW6Ù!&X6Ù"Q`6Ù#Á1iÙ#/6iÙ!~8iÙ":iÙ!ú:iÙ"c>iÙ#ÕœÙ#¨œÙ!ôœÙ"ƒœÙ!dœÙ" œÙ#êÎÙ#§îÎÙ!ñÎÙ"ÊòÎÙ!¨óÎÙ"ðöÎÙ#¨ÈÚ#õÌÚ! ÏÚ"¯ÐÚ!ÑÚ"LÙÚ#L¥4Ú#‡©4Ú!Í«4Ú"_­4Ú!F®4Ú"s±4Ú#Ü~gÚ#ƒgÚ!–…gÚ"+‡gÚ! ˆgÚ"pgÚ#j^šÚ#`bšÚ!dšÚ"/fšÚ!gšÚ"[jšÚ#á0ÍÚ#ð:ÍÚ!'=ÍÚ"æ>ÍÚ!Ç?ÍÚ"ŒGÍÚ#‹ Û#Û!SÛ"â Û!À!Û"%Û—Ûahci <¨Û¡©Ûuhci_hcd:usb3 ®ÛV¯Ûeth1 ´Û#Uò2Û#cö2Û!¾ø2Û"Èú2Û!²û2Û"ú3Û#mÏeÛ#6ÖeÛ!©ØeÛ"YÚeÛ!:ÛeÛ"pÞeÛ#Ä­˜Û#®±˜Û!$´˜Û"쵘Û!嶘Û"p¿˜Û#YŠËÛ#yŽËÛ!X‘ËÛ"ç’ËÛ!Ë“ËÛ"=—ËÛ#HhþÛ#nþÛ!÷pþÛ"ÔrþÛ!ÍsþÛ"˜{þÛ#³C1Ü#ÌH1Ü!'K1Ü"³L1Ü!”M1Ü"Q1Ü#}!dÜ#'dÜ!`)dÜ"é*dÜ!Ç+dÜ"5dÜ#žü–Ü#»—Ü!^—Ü"ù—Ü!Ú—Ü" —Ü#UÚÉÜ#ÿÞÉÜ!EáÉÜ"ÚâÉÜ!¾ãÉÜ"ŽìÉÜ#û­üÜ#PºüÜ!«¼üÜ"¾¾üÜ!·¿üÜ"ÃüÜ#þ’/Ý#ê—/Ý!{š/Ý".œ/Ý!'/Ý"ç¦/Ý#ØpbÝ#ëubÝ!=xbÝ"ÆybÝ!§zbÝ"1~bÝ#SN•Ý#²R•Ý!ßU•Ý"‰W•Ý!mX•Ý"ja•Ý#x!ÈÝ#k/ÈÝ!Ì1ÈÝ"j3ÈÝ!Š4ÈÝ"Õ7ÈÝ#:ûÝ#J ûÝ!¥ûÝ"²ûÝ!®ûÝ"3ûÝ#™æ-Þ#=ë-Þ!›í-Þ"6ï-Þ!ð-Þ"ûó-Þ# Ã`Þ#÷Æ`Þ!^É`Þ"GË`Þ!@Ì`Þ"MÔ`Þ#ᜓÞ#ž “Þ!£“Þ"‹¤“Þ!o¥“Þ"Ѝ“Þ#}ÆÞ#QÆÞ!¬ƒÆÞ">…ÆÞ!"†ÆÞ"ÆÞ#ßWùÞ#[ùÞ!…]ùÞ")_ùÞ! `ùÞ"cùÞ#`6,ß#ª:,ß!=,ß"¯>,ß!?,ß"ÅF,ß#¸_ß#Š_ß!è_ß"ª_ß!£_ßÁüÁõ©‹à‡îØF²ÿbÊ™HŽ{ _ßÈ7ÓJëÈ7€€"{ _ߥ§ißahci ÓÀißJÂißuhci_hcd:usb3 ÊÆißDÈißeth1 ýÌiß#®î‘ß#öô‘ß!‡÷‘ß"‹ù‘ß!Éú‘ß"™’ß#=ËÄß#*ÏÄß!ˆÑÄß"#ÓÄß!^ÔÄß"ØÄß#›ž÷ß#ý©÷ß!X¬÷ß"í­÷ß!¯÷ß"M·÷ß#è‚*à#¤‡*à!Š*à"²‹*à!“Œ*à"Y*à#db]à#i]à!ak]à"íl]à!Ôm]à"Ýv]à#ÿ4à#m@à!Cà"™Dà!zEà" Hàœy£àahci `ˆ£à•‰£àuhci_hcd:usb3 ú£àt£àeth1 !”£à#ëÃà#åÃà![!Ãà"ã#Ãà!å$Ãà"½.Ãà#ùõà#Åýõà!öà"Böà!)öà"¿öà#Ô(á#¡Ø(á!ÀÚ(á"FÜ(á!lÝ(á"ˆå(á#±[á#ƒ¶[á!Ò¸[á"Xº[á!Š»[á"ü¾[á/íuáahci fûuá¼üuáuhci_hcd:usb3 ]vá§váeth1 `vá#䎎á#—“Žá!–Žá"M˜Žá!F™Žá"†¡Žá#çkÁá#OpÁá!õrÁá"tÁá!tuÁá"¹xÁá#¯>ôá#Jôá!¢Lôá"(Nôá! Oôá"’Yôá#!$'â#—)'â!.,'â"Ã-'â!¤.'â"³1'â#šZâ#ÃZâ!Zâ" Zâ!ñ Zâ"TZâ#XÞŒâ#-âŒâ!äŒâ"ƒæŒâ!|çŒâ"$ëŒâ#黿â#²¿¿â!+¿â"½Ã¿â!=Å¿â"\Í¿â#K™òâ#‚žòâ!O¡òâ"£òâ!R¤òâ"‚§òâ#(u%ã#~y%ã!|%ã":~%ã!K%ã"“ˆ%ã#¦SXã#ZXã!s\Xã"ù]Xã!Ý^Xã"vbXã#!/‹ã#ä2‹ã!<5‹ã"é6‹ã!å7‹ã"â@‹ã#R¾ã#=¾ã!˾ã"N¾ã!/¾ã"2¾ã#®êðã#ûîðã!Sñðã"'óðã!#ôðã"ûðã#éÃ#ä#È#ä!^Ê#ä",Ì#ä!(Í#ä"QÑ#ä#¸˜Vä#@¥Vä!ì§Vä"{©Vä!\ªVä"c²Vä#c‰ä#°†‰ä!‰‰ä"—Љä!{‹‰ä"G‰ä#sR¼ä#`_¼ä!²a¼ä"Yc¼ä!=d¼ä"n¼ä#?7ïä#&;ïä!½=ïä"‚?ïä!{@ïä"¥Cïä# "å#³"å!•"å"-!"å!""å"Þ*"å#/óTå#:÷Tå!¹ùTå"~ûTå!tüTå"qÿTå#&чå#ÿÖ‡å!lÙ‡å"RÛ‡å!0܇å"Oä‡å#£ªºå#¯ºå!r±ºå"‚³ºå!x´ºå"S¸ºå#·Šíå#šíå!’íå"““íå!Δíå"¸›íå#Èe æ#i æ!nk æ"÷l æ!)n æ"zq æ#XASæ#ÆESæ!ISæ"ÁJSæ!áKSæ"îSSæ#3 †æ#x#†æ!Í%†æ"b'†æ!C(†æ"Ö+†æ#ãò¸æ#ò¹æ!P¹æ"ܹæ!ùæ"¹æ#ŸØëæ#ÌÞëæ!-áëæ"(ãëæ! äëæ"çëæ#Ù²ç#‰·ç!˺ç"̼ç!­½ç"BÅç#G“Qç#Í—Qç!%šQç"œQç!øœQç"â Qç#©n„ç#´r„ç!$u„ç"þv„ç!÷w„ç"Å„ç#J·ç#´M·ç!P·ç"žQ·ç!‚R·ç"÷U·ç#g*êç# /êç!f1êç" 3êç!ñ3êç" ;êç#¥üè#aè!Ý è"f è!J è"€è#pÙOè#åèOè!ëOè"íOè!þíOè"`õOè#¯À‚è#qÅ‚è!ðÇ‚è"µÉ‚è!®Ê‚è"óÍ‚è#9“µè#lµè! µè"þ¡µè!⢵è"‹«µè#ôyèè#^èè!¹èè"lƒèè!P„èè")‡èè#éSé#OZé!°\é"„^é!Ë_é";hé#)Né#*6Né!—8Né" :Né!R;Né"?NéÞeWéahci þ~WéT€Wéuhci_hcd:usb3 þ„Wé<†Wéeth1 ‹Wé#}é#'é!¬é"¤é!šé"!%é#Pã³é#bï³é!˜ò³é"uô³é!nõ³é"7ù³é#9Ìæé#ïÐæé!¡Óæé"?Õæé! Öæé"oÞæé/Ýñéahci éìñé{îñéuhci_hcd:usb3 óñé™ôñéeth1 gùñé#Φê#`«ê!Z®ê"m°ê!“±ê"hµê#»Lê#è‡Lê!ÖŠLê"­ŒLê!¦Lê"ž•Lê#Ç_ê#¦eê!hê"¨iê!‰jê"­mê#¬:²ê#Ñ?²ê!>B²ê"îC²ê!ØD²ê"‹L²ê#Èåê#ºåê!'åê"¹åê!  åê"$åê#½öë#%ûë!qýë"ÿë!öÿë"Xë#TÑJëÁüÁõ©‹à‡îØF²ÿbÊ™HŽB×JëÈ74¬;ôÈ7ø€#B×Jë!ÚJë…ßJëltt-kconsumerd2gåJëltt-kconsumerd2x"ÉéJë!õêJë"‹îJëòJëkworker/0:0ltt-kconsumerd2QKëSKëöéKë±Këö€@ŽK=¿Kë8KëHŽK=¿N(KëO*Kë ˆbKë eKë  -/mKëP‡0 ltt-kconsumerdd†K댈Kë ¾ŒK볎KëÝ °šKëݱœKëöÖžKëë¡Kë°Ä@ ÿÿÿÿÿÿÿÿ–®Këltt-kconsumerd2^ËÜ ¿EºKëltt-kconsumerd2kworker/0:0#f¶}ë#d»}ë!Ǿ}ë"(Á}ë!'Â}ë"ÊÊ}ë#㎰ë#~“°ë!o–°ë"j˜°ë!N™°ë"¥œ°ë#A`ãë#Žjãë!Âlãë"œnãë!}oãë"bxãë&ÿëuhci_hcd:usb4 A+ÿë£,ÿëeth0#3ÿë 4ÿë!Q6ÿë"‰Iÿë#àDì#lIì!ÜKì"†Mì!mNì"tSì#Ê&Iì#€+Iì!Þ-Iì"µ/Iì!™0Iì".8Iì#|ì#é|ì!V|ì" |ì!ð |ì"%|ì#åÛ®ì#…á®ì!Iä®ì"ÿå®ì!ãæ®ì"î®ì#º°áì#m¼áì!û¾áì"Àáì!qÁáì"àÄáì#ƒ—í#Œí!öŸí"¡í!„¢í"Ωí#tGí#°wGí!zGí"{Gí!~|Gí"„Gí#¸Pzí#†Uzí!ðWzí"—Yzí!~Zzí" bzí#,­í#Ì/­í!$2­í"õ3­í!î4­í"T8­í#O àí#àí!Zàí"æàí!Íàí"Úàí#ëî#0ðî! òî"Ôôî!µõî"çùîßÝîahci ôøîbúîuhci_hcd:usb3 åþîVîeth1 î##ÃEî#”ÇEî!øÉEî"ÌEî!ãÌEî"·ÔEî#¡xî#Ñ¥xî!A¨xî"ªxî!«xî"š¯xî#t«î#X€«î!È‚«î"o„«î!Y…«î"—Œ«î#&ZÞî#¤]Þî!`Þî"µaÞî!ŸbÞî"¿fÞî#²-ï#x:ï!N=ï"é>ï!Ð?ï",Gï#aDï#ÏDï!9Dï"ÈDï!¬Dï"T Dï# ðvï#Çôvï!÷vï"Òøvï!Èùvï"wï#óÍ©ï#jÒ©ï!×Ô©ï"~Ö©ï!_שï"ôÛ©ï#ìªÜï#Á®Üï!±Üï"º²Üï!¡³Üï"~»Üï#í}ð#;Šð!Œð"[Žð!9ð"’ð#æeBð#BjBð!šlBð"nnBð!UoBð"yxBð#vAuð#›Fuð!äHuð"$Kuð!Luð"àOuðdzðahci ºrzð7tzðuhci_hcd:usb3 œxzðãyzðeth1 ™~zð#r¨ð#¹ ¨ð!)#¨ð"E%¨ð!,&¨ð"·.¨ð#BñÚð#ÜüÚð!4ÿÚð"ÌÛð!¶Ûð"IÛð#Î ñ#@Ý ñ!’ß ñ"'á ñ!â ñ"ýé ñ#À´@ñ#»@ñ!½@ñ"X¿@ñ!TÀ@ñ"çÃ@ñ#ÿ‘sñ#Á–sñ!m™sñ"n›sñ!Rœsñ"‰¤sñ#nd¦ñ#ðo¦ñ!Ss¦ñ"Üt¦ñ!½u¦ñ"y¦ñ#lJÙñ#eNÙñ!äPÙñ"šRÙñ!–SÙñ"+[Ùñ#c' ò#P+ ò!À- ò"v/ ò!r0 ò"J4 ò#ìú>ò#Ý?ò!2 ?ò"ñ ?ò!ê ?ò"~?ò#×áqò#aèqò!Âêqò"Wìqò!Gíqò"bðqò#|´¤ò#ö¿¤ò!0¤ò"ïäò! Ťò"Τò#™×ò#¤ ×ò!£×ò"Ĥ×ò!À¥×ò"‰©×ò#my ó#F ó!­ ó"Qƒ ó!A„ ó"NŒ ó#qS=ó#ÜW=ó!FZ=ó"\=ó!]=ó"¬`=ó#0pó#6pó!o8pó":pó!;pó""Cpó# £ó#Û£ó!u£ó"þ£ó!å£ó"£ó#êÕó#ÝïÕó!8òÕó"ÊóÕó!®ôÕó"‘üÕó#CÆô#ôÉô!9Íô"ÎÎô!¸Ïô"îÒô#W¤;ô#M¨;ôÁüÁõ©‹à‡îØF²ÿbÊ™HŽ«;ôÈ7·ˆdúÈ7°€!«;ô´;ôltt-kconsumerd2bº;ôltt-kconsumerd2x"*¿;ô!nÀ;ô"*È;ôùË;ôkworker/0:0ltt-kconsumerd2±õ;ôsú;ôöšý;ô\ÿ;ôö€@ŽK=¿¯<ôŒ<ôHŽK=¿<ô<ô `I<ôèK<ô °-ÜT<ôX‡0 ltt-kconsumerdo<ô)q<ô  Êu<ô³w<ôÝ  eƒ<ôÝl…<ôö‚‡<ô…Š<ô°Ä@ ÿÿÿÿÿÿÿÿq•<ôá—<ôö¡<ô£<ôö€@ŽK=¿1¥<ôS§<ôHŽK=¿Ž®<ôŒ°<ôê<ôîì<ô-ëõ<ô†0 ltt-kconsumerdÁ =ôÎ=ô*=ôø=ôÝS!=ôÝ{#=ôö'=ô±)=ô°Ä@ ÿÿÿÿÿÿÿÿÞ8=ôltt-kconsumerd2Z€6”¿C=ôltt-kconsumerd2kworker/0:0#0…nô#+Šnô!jnô"¼nô!Ênô"8•nô#>^¡ô#ab¡ô!Åd¡ô"]f¡ô!>g¡ô"‰p¡ôÞý§ôahci ʨô,¨ôuhci_hcd:usb3 ¾¨ô¨ôeth1 Ǩô#9Ôô#|=Ôô!@Ôô"DBÔô!%CÔô"œGÔô#¯õ#eõ!¥õ": õ!!õ"Ü)õ#ö9õ#¡ú9õ!áü9õ" þ9õ!Ïÿ9õ"7:õ#œÑlõ#ÂÕlõ!ü×lõ"¦Ùlõ!Úlõ"ãlõ#ĬŸõ#Ò°Ÿõ!Q³Ÿõ"à´Ÿõ!ÁµŸõ",ºŸõ# ‚Òõ#ÛÒõ!9Òõ"¿‘Òõ!’Òõ"ÅšÒõ#Îfö#jö!zlö" nö!ínö"‰rö#ÓB8ö#ÔG8ö!8J8ö"L8ö!ùL8ö"ôT8ö#í kö#Œ$kö!Y'kö"ú(kö!Þ)kö"}-kö#]õö#Çžö!"žö"ážö!מö"žö#*ÒÐö#žÝÐö!máÐö"ãÐö!ìãÐö"(çÐö#?¸÷#μ÷!,¿÷"µÀ÷!™Á÷"ÛÊ÷#Ü‹6÷#î—6÷!^š6÷"ó›6÷!ל6÷" 6÷#êpi÷#šui÷!+xi÷"®yi÷!zi÷"‰ƒi÷#DLœ÷#öQœ÷!cTœ÷"ûUœ÷!ßVœ÷"‡Zœ÷#]"Ï÷#/Ï÷!c1Ï÷"ò2Ï÷!Ù3Ï÷"û;Ï÷#3 ø#Ø ø!-ø"øø!ñø"¯ø#$ä4ø#¨ê4ø!$í4ø"ï4ø!÷ï4ø"1ø4ø#EÀgø#9Ægø!µÈgø"°Êgø!”Ëgø"<Ïgø#Å•šø#ÖŸšø!‹¢šø"¤šø!þ¤šø"U®šø#š{Íø#©€Íø!.ƒÍø"Þ„Íø!×…Íø"…‰Íø#XXù#<\ù!©^ù"V`ù!Oaù"}iù®ðùahci Hÿù¹ùuhci_hcd:usb3 -ùzùeth1 6 ù#—33ù#83ù!’:3ù"–<3ù!}=3ù"ÙA3ù#/ fù#'fù!‘fù"\fù!Xfù"w'fù#èî˜ù#3ò˜ù!‚ô˜ù"8ö˜ù![÷˜ù"…ú˜ù#¿ÂËù#ËÏËù!&ÒËù"ÁÓËù!«ÔËù":ÜËù#`Ÿþù#’¬þù!¯þù"±þù!ü±þù"µþù#r„1ú#6‰1ú!—‹1ú"õ1ú!ñŽ1ú"#™1ú#ÿadú#Ðfdú!idú·mdúkworker/1:0,&x"Ôqdú!Ürdú"˜wdúÙ{dúkworker/0:0kworker/1:0,&ÁüÁõ©‹à‡îØF²ÿbÊ™HŽy‡dúÈ7h´BýÈ7 f€y‡dúkworker/1:0,&a—“W¾¸“dúkworker/1:0,&kworker/0:0#À?—ú#1C—ú!þE—úµL—últt-kconsumerd2ÂQ—últt-kconsumerd2x"NV—ú!SW—ú"9_—ú™b—úkworker/0:0ltt-kconsumerd2œŒ—úœ’—úö–•—úR——úö€@ŽK=¿¥˜—ú‚š—úHŽK=¿N§—úC©—ú äû—ú¢þ—ú À-Q˜úh‡0 ltt-kconsumerd¡ ˜ú´"˜ú °4'˜úü(˜úÝ °á4˜úÝß6˜úöæ8˜ú‘<˜ú°Ä@ ÿÿÿÿÿÿÿÿÍH˜últt-kconsumerd2‰÷¿‹¿ R˜últt-kconsumerd2kworker/0:0­Ìœúahci 9Ýœú¤Þœúuhci_hcd:usb3 *ãœúqäœúeth1 $éœú#«Êú#^$Êú!Ü'Êú"%*Êú!+Êú"\/Êú#«÷üú#oýüú!ýú"µýú!´ýú" ýú#ŒÔ/û#ðÙ/û!6Ü/û"Þ/û!ß/û"Éâ/û#ï²bû#ì·bû!§ºbû"®¼bû!•½bû" Æbû# †•û#:‘•û!§“•û"8••û!–•û"™•û#ùlÈû#ÚsÈû!hvÈû"ixÈû!eyÈû"Èû#˜Hûû#=Lûû!£Nûû"ePûû!aQûû"pTûûÕüahci äüåüuhci_hcd:usb3 êüÂëüeth1 oðü# ).ü#Z-.ü! 0.ü":2.ü!3.ü"]<.ü#Iaü#iaü!Íaü" aü!¾ aü"$aü#ß“ü#âã“ü!(æ“ü"Àç“ü!¡è“ü"™ð“ü#³Æü#l¼Æü!ë¾Æü"€ÀÆü!gÁÆü"ÏÄÆü#š™ùü#8žùü!Œ ùü"¢ùü!ÿ¢ùü"«ùü#Ïu,ý#’y,ý!É{,ý"u},ý!_~,ý"§,ýZðAýltt-sessiond2xiöAýkworker/0:0ltt-sessiond2ÐBý6Bý+ >:Ÿœ>:Ÿ€„¥:ŸJ!Bý+ È-Bý/ P>:Ÿ°®Ë:Ÿ °®Ë:ŸÜFBý/ RBýG öp\¥:ŸžA2{\Bý_BýO ö0^Ap\¥:ŸžAdBý(gBýN ö0^Ap\¥:ŸžA„kBýahci ”|Bý~Býuhci_hcd:usb3 Ž‚BýêƒBýeth1 ¸ˆBýБBýà“BýM ö0^Ap\¥:ŸžAšBýYœBýL ö0^Ap\¥:ŸžA†¢BýÒ¤BýK ö0^Ap\¥:ŸžAq¨Bý–ªBýJ ö0^Ap\¥:ŸžAB°BýU²BýI ö0^Ap\¥:ŸžAÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄµBýÈ7/ÚiÉ7€ĵBýÖ¸BýH ö0^Ap\¥:ŸžA4¾BýàÀBý Sö0^Ap\¥:ŸžAbabeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_40000755000175000017500000017000011616325072023136 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽºgÈ76äö…È7Ѐÿÿ#?IØyÈ7#1TØy #áXØy!´[Øy"J_Øy!¦`Øy"kØy!FlØy "÷oØy #ƒ z#! z !§% z"Q' z!t( z "ò+ z #U÷=z#¥>z!l>z"õ>z!â>z"O>z#FÒpz#‘Üpz !Vápz"Üâpz!Ïãpz "‚èpz #s¯£z#º£z #a¿£z!ÝÁ£z"§Ä£z!¬Å£z"ÂУz!µÑ£z "™Õ£z #CÖz!šÖz"|œÖz#Ýg {#q {!Üt {"zv {!gw {"Ñ‚ { {ahci Í{‚{uhci_hcd:usb3 "{c${eth1 ‹){#G<{#“N<{ !eU<{"W<{!MX<{ "M[<{ #˜!o{#¡*o{ #œ/o{!î1o{"Å3o{!²4o{"Ê@o{!½Ao{ "TDo{ #eþ¡{#L¢{ !‘¢{",¢{!¢{ "¢{ #?ÛÔ{#äÔ{ #”çÔ{!×éÔ{"lëÔ{!PìÔ{"*÷Ô{!øÔ{ "HúÔ{ #Â|#úÄ| ! É|"¸Ê|!ŸË| "Î| G˜|ahci ^¨|™©|uhci_hcd:usb3 æ­|Z¯|eth1 õ³|Š<0|ahci J0|K0|uhci_hcd:usb3 ÚO0| Q0|eth1 ³U0|# :|#¢:|!²¤:|"˦:|!²§:|"4³:|II|ahci ~WI|¼XI|uhci_hcd:usb3 !]I|ª^I|eth1 EcI|ÇÙ_|ahci ìç_|Hé_|uhci_hcd:usb3 í_|¸î_|eth1 eó_|#×rm|#Øtm| !l€m|"j‚m|!Qƒm| "è…m| #pN |#óV | #[ |!¿] |"Z_ |!;` |"Ãk |!ïl | "×o | #v-Ó|#™4Ó| !¤;Ó|"W=Ó|!w>Ó| "ïAÓ| #?}#x}!B}"Ñ}!µ}"Ï!}#]í8}# ñ8} !Ðõ8}"˜÷8}!”ø8} "Åú8} #ÄÂk}#?Êk} #rÍk}!ÐÏk}"YÑk}!‚Òk}""Þk}!ýÞk} "ûàk} #¨žž}!f§ž}"xªž}z)©}ahci Ï7©} 9©}uhci_hcd:usb3 Z=©}Î>©}eth1 rC©}# }Ñ}#¼†Ñ}!2‰Ñ}"Z‹Ñ}!GŒÑ}":–Ñ}#äa~!³h~"ºj~#C57~#sA7~!ÅC7~"BE7~!,F7~"ÍP7~#j~!A!j~"ô"j~#·îœ~#Þøœ~!“ûœ~"Xýœ~!–þœ~"ú ~#FÔÏ~!ÚÏ~"“ÛÏ~#tª#²·!×¹"W»!A¼"éÅ#ä5!Ž’5"”5#bh##mh!xoh"øph!åqh"õ|h# ?›!K›"šL›#b&Î#©*Î!¤,Î"x.Î!b/Î"+9Î#_ú€!$€"ï€#7Ü3€#Eà3€!Äâ3€"Aä3€!+å3€"ð3€#¤»f€!©Âf€"\Äf€# ™€#Ùš™€!.™€"çž™€! ™€")«™€#&uÌ€!·zÌ€"R|Ì€#Pÿ€#lUÿ€!aWÿ€"íXÿ€!ÚYÿ€"æeÿ€#o&2! 32"=52#qe#Ä e!jeæekworker/4:11x"?e!Ye"Ö%eÅ*ekworker/0:1kworker/4:11µ4ekworker/4:11% žE”âj=ekworker/4:11kworker/0:1#aà—!]ë—"ší—#ÃÊ#WÈÊ! ËÊ"ÎÌÊ!ÐÍÊ"4ÙÊ#ò˜ý!û¤ý"ê¦ý#8y0‚#·‚0‚!x…0‚"»‡0‚!½ˆ0‚"‹“0‚#˜Rc‚!’^c‚"<`c‚#q/–‚!Ë<–‚"Õ>–‚# É‚#%É‚!zÉ‚"ýÉ‚!íÉ‚"Ã%É‚#óû‚!éøû‚"¥úû‚#¶È.ƒ#ˆÓ.ƒ!}Õ.ƒ"u×.ƒ!zØ.ƒ"öà.ƒÐ3ƒahci à3ƒhá3ƒuhci_hcd:usb3 -æ3ƒVç3ƒeth1 ýë3ƒ#_¦aƒ!ë°aƒ" ³aƒ#‹‚”ƒ#k”ƒ!½”ƒ"@‘”ƒ!’”ƒ"¼œ”ƒ#€\ǃ!’lǃ"Nnǃ#d9úƒ#EFúƒ!RHúƒ"ùIúƒ!ûJúƒ"Vúƒ#!-„!d -„"V"-„#/ó_„#Òü_„!Íþ_„"•`„!—`„"ª `„#ÌÏ’„!EÜ’„"aÞ’„#²¬Å„#&ºÅ„!!¼Å„"g¾Å„!i¿Å„"¯ÊÅ„#\‰ø„!R–ø„"˘ø„#¸o+…#Ùr+…!°t+…"Zv+…!Dw+…"®‚+…#C^…!yP^…"R^…#ß(‘…#í,‘…!K/‘…"Ë0‘…!ý1‘…"ñ=‘…#wþÃ…!‘ Ä…"q Ä…ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ Ûö…È7iöÈ7ð€# Ûö…#Âëö…!áíö…/÷ö…ltt-kconsumerd2®üö…ltt-kconsumerd2x"6÷…!D÷…"¼ ÷…U÷…kworker/0:1ltt-kconsumerd2°E÷…‚R÷…öSZ÷…u\÷…ö€@ŽK=¿R^÷…¦a÷…HŽK=¿çv÷…iy÷…=ù÷…‹ü÷…-™ ø…@‚0 ltt-kconsumerd‘,ø…L/ø…ö'3ø…Ä5ø…öB?ø…@Aø…ö€@ŽK=¿ÀBø…£Dø…HŽK=¿Kø…vMø…ó„ø…Çø…-ÈŽø…€‚0 ltt-kconsumerd¤ø…¿¦ø…ö;©ø…l®ø…°Ä@ ÿÿÿÿÿÿÿÿݽø…€Àø…ö˜Ìø…`Îø…ö€@ŽK=¿ Ðø…³Òø…HŽK=¿iÚø…UÜø…ßù…Rù…p-,ù…x€0 ltt-kconsumerd)/ù…1ù…`7ù…‹9ù…Ý`”Wù…݉Yù…ö]ù…°_ù…°Ä@ ÿÿÿÿÿÿÿÿyoù…ltt-kconsumerd2t% ½âMzù…ltt-kconsumerd2kworker/0:1f™†ahci 㩆Z«†uhci_hcd:usb3 °†T±†eth1 ûµ†#ü¾)†!Æ)†"ƒÈ)†#Z–\†#S \†!B¢\†"m¤\†!™¥\†"¦³\†#Ñr†!D†"뀆#/T†#\W†!¢Y†"1[†!'\†"íh†#œ4õ†!X9õ†"e;õ†#Ç(‡#(‡!ß(‡"n(‡!d(‡" #(‡#ÛìZ‡!QòZ‡"øóZ‡#’Á‡#Ї!*Ò‡"1Ô‡!BÕ‡"Î߇#+À‡!¼¨À‡"œªÀ‡#‚{ó‡#†ó‡!ˆó‡"“‰ó‡!†Šó‡"–ó‡#^&ˆ!øe&ˆ"g&ˆ#›3Yˆ#Ç>Yˆ!ž@Yˆ"$BYˆ!GCYˆ"ÈOYˆ#ªŒˆ!@Œˆ"Þ Œˆ#<í¾ˆ!¦ö¾ˆ"¡ø¾ˆ#]Ëñˆ#¸Öñˆ!"Ùñˆ"±Úñˆ!§Ûñˆ"£åñˆ#Û¦$‰!³$‰"è´$‰#âW‰#´‘W‰!î“W‰"’•W‰!…–W‰"מW‰#ÅjЉ!$oЉ"ÑpЉ ahci  ‰‘‰uhci_hcd:usb3 ¬•‰—‰eth1 *œ‰#@½‰#WJ½‰!âL½‰"O½‰!ýO½‰"÷X½‰#ð‰!§)ð‰"E+ð‰#÷"Š#o#Š!Ð#Š"› #Š!¬ #Š"”#Š#üÓUŠ!NâUŠ"õãUŠ#µ°ˆŠ#E½ˆŠ!Ä¿ˆŠ"×ÁˆŠ!ÈŠ"̈Š#›»Š!œ»Š"©ž»Š#ÊsîŠ#ïxîŠ!’{îŠ"o}îŠ!€~îŠ"ˆîŠ#ïS!‹!-X!‹"[Z!‹##$T‹#©/T‹!¹1T‹"93T‹!/4T‹"Í>T‹#‡‹!̇‹"µ‡‹#-蹋#@í¹‹!w﹋"Bñ¹‹!5ò¹‹"‚ü¹‹#‰ºì‹!ÕÈì‹"mÊì‹#埌#v¥Œ!…¨Œ"JªŒ![«Œ"õŒ#û}RŒ!I„RŒ"†RŒ#~T…Œ#À`…Œ!Bc…Œ"Ëd…Œ!f…Œ"“o…Œ#R0¸Œ!Y<¸Œ" >¸Œ#³ ëŒ#lëŒ!TëŒ"ÔëŒ!ÊëŒ"…$ëŒ#ŒçÁüÁõ©‹à‡îØF²ÿbÊ™HŽþôÈ7k™È7Ø€!þôVýltt-kconsumerd2Últt-kconsumerd2x"½† kworker/0:1ltt-kconsumerd2©+/öu2I4ö€@ŽK=¿ð58HŽK=¿àBÏD¦y7|-w„H‚0 ltt-kconsumerd›ž¢ v¥q§Ý¹¶ÝÛ¸öôº¾°Ä@ ÿÿÿÿÿÿÿÿ®Êltt-kconsumerd20ÉUÒ½â€×ltt-kconsumerd2kworker/0:11F#ahci ŠV#éW#uhci_hcd:usb3 ~\#¿]#eth1 ib##\ÎP#MÔP!)×P"uÙP!tÚP"XäP#šªƒ!=°ƒ"z²ƒ#€¶#Œ¶!\޶"H¶!;‘¶"<œ¶#÷[é!×fé"‡hé#°7Ž#ÜBŽ!CEŽ"ÉFŽ!¼GŽ"aQŽ#ÂOŽ!%OŽ"¯&OŽ#NûŽ#;ÿŽ!'‚Ž"³‚Ž!¦‚Ž" ‚Ž#@δŽ!}ß´Ž"á´Ž#ùªçŽ#¹çŽ!p»çŽ"P½çŽ!C¾çŽ"RÇçŽ#n!§–"]˜#dM#ÏpM!EsM"¼tM!²uM",€M#XJ€!GO€"Q€#’ ³#©+³!.³"®/³!¤0³" :³#ûå!æ"« æ#Õà#Gä!oæ"éç!Üè"ò#å´K!ÃK"ðÄK#¼”~#Š ~!ë¢~"k¤~!a¥~"$¯~#v±!‡{±"}±#©Kä#¥Vä!ßXä"ûZä!\ä"íeä##(‘!6‘"8‘#êJ‘#ŸJ‘!‹J‘"J‘!J‘"­J‘©•#läÛ•!hëÛ•" íÛ•#À–#Ä–!•Æ–"BÈ–!˜É–"€Õ–#«žA–!¤A–"é¥A–#Írt–#€t–!ç‚t–"Í„t–!Ò…t–"Ât–#‚O§–!êZ§–"K]§–#].Ú–#>9Ú–!É;Ú–"=Ú–!®>Ú–"IÚ–#? —!© —"G —#4è?—#®õ?—!!ø?—":ú?—!Bû?—"ï@—#¼Âr—!ñÒr—"¡Ôr—#¢Ÿ¥—#Ϭ¥—!¬®¥—"P°¥—!C±¥—"7º¥—#Â|Ø—!*ŠØ—"ì‹Ø—#šZ ˜#¨e ˜!Hh ˜"Îi ˜!k ˜"¯s ˜#>7>˜!A>˜"'C>˜#9q˜#q˜!d"q˜"$q˜!õ$q˜"ª-q˜#ã!xý£˜"dÿ£˜#µÎÖ˜!ºÛÖ˜"FÝÖ˜F÷™uhci_hcd:usb4 Æû™ý™eth0#™ ÿ™ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<™È7½žc È7€€!<™«'™sshdf(L,™sshdf(x">™lB™kworker/0:1sshdf(Õ]™.b™𢴀ÿp£´€ÿûd™ùf™p£´€ÿ÷h™öo™àc´€ÿ@Yy™0’™@ù¨ª2 ù¨ª2# ™~¢™𢴀ÿp£´€ÿ—¤™ž¦™p£´€ÿ¨™¦ª™ Eªª2Gµ™sshdf(÷‰â¸™kworker/4:11x(¼™sshdf(xÈÁ™•Ç™@ù¨ª2 ù¨ª2(Ñ™sshdf(¥¹*âÖÔ™sshdf(kworker/4:11Õê™kworker/4:117Õ_”âåõ™kworker/4:11kworker/0:1#Ÿ· ™#» ™!=¿ ™"SÍ ™!aÎ ™"ß ™"· ™sshdf(x~¾ ™kworker/0:1sshdf(µÕ ™ߨ ™𢴀ÿp£´€ÿÛ ™Ý ™p£´€ÿšÞ ™Cá ™àb´€ÿ@/ì ™&  ™@ù¨ª2 ù¨ª2d ™Œ ™𢴀ÿp£´€ÿE ™Ó ™p£´€ÿP ™þ ™‹¨ª2P-9 ™P$? ™@ù¨ª2 ù¨ª2¾J ™sshdf(9–òÀâßV ™sshdf(kworker/0:1#»‘<™!ɘ<™"N›<™# no™#šro™!=uo™"övo™!ïwo™"Ù„o™²Wt™ahci )nt™”ot™uhci_hcd:usb3 Jtt™ßut™eth1 ’zt™#bB¢™#øL¢™!SO¢™"ü "OHü #™/¡!c/¡"»/¡#}äa¡#Dña¡!<óa¡" õa¡!öa¡"db¡#[Ê”¡!ìÏ”¡"ÌÑ”¡5ù™¡ahci —š¡)š¡uhci_hcd:usb3 Í š¡ š¡eth1 ëš¡#q§Ç¡#´¬Ç¡!¯Ç¡"Ú°Ç¡!ʱǡ"À»Ç¡#Ë{ú¡!¦†ú¡"•ˆú¡#ÒX-¢#+d-¢!f-¢"Bh-¢!5i-¢"ús-¢#ž4`¢!P@`¢"÷A`¢#b“¢#f“¢!š!“¢"Î#“¢!Ä$“¢"E.“¢#-îÅ¢!ûÅ¢"ýÅ¢ÀË¢ahci m#Ë¢¨$Ë¢uhci_hcd:usb3 7)Ë¢f*Ë¢eth1 /Ë¢#vËø¢#1Õø¢!n×ø¢"xÙø¢!kÚø¢"“åø¢#Ÿ¨+£!ij+£"×µ+£#ä…^£!„^£"F‘^£#‰a‘£#äj‘£!Õm‘£"do‘£!Zp‘£"½|‘£#¤?Ä£!ÁIÄ£"ÈKÄ£¬sÑ£ahci H€Ñ£žÑ£uhci_hcd:usb3 3†Ñ£Ňѣeth1 {ŒÑ£#¹÷£#‡'÷£!Ð)÷£"æ+÷£!Ù,÷£"¨6÷£#V*¤!n*¤" *¤#ÒÔ\¤##â\¤!Bä\¤" æ\¤!ýæ\¤"qñ\¤#5º¤!¿¤"=Á¤#ŽÂ¤!˜›Â¤"N¤#Alõ¤#[tõ¤! wõ¤"–xõ¤!‰yõ¤"¼‚õ¤#DS(¥!Y(¥"ÐZ(¥#ë+[¥#2[¥!—4[¥"6[¥! 7[¥"4@[¥#ÿŽ¥!wŽ¥" Ž¥#ÉßÀ¥!#íÀ¥"äïÀ¥#r»ó¥#’Èó¥!)Ëó¥"¬Ìó¥!¢Íó¥"z×ó¥#¢&¦!J©&¦"âª&¦#ô|Y¦#>Y¦!®ƒY¦"y…Y¦!l†Y¦"#Y¦#RŒ¦!)_Œ¦"¾`Œ¦#¾.¿¦#›<¿¦! ?¿¦"Ä@¿¦!áA¿¦"çJ¿¦# ò¦!=ò¦"öò¦#’è$§#„ô$§!^ö$§"Û÷$§!ù$§"%§#QÅW§!òÐW§"&ÓW§#G¢Š§#œ°Š§!µ²Š§"G´Š§!:µŠ§"K¿Š§#½§!»½§"1“½§#ß[ð§#ið§!UE²#Âx²!=#x²"A%x²#µòª²#•ýª²!íÿª²"|«²!r«²"S «²#£Íݲ!?Úݲ"Üݲ›ã²ahci ?ã²Âã²uhci_hcd:usb3 ?㲌ã²eth1 B"ã²#Óª³!¹³"Ø»³#,‡C³#à”C³!—C³"™C³!›šC³"'¥C³#Äfv³!uv³"çvv³#-A©³#£L©³!O©³"´P©³!­Q©³"Š\©³#ˆܳ!ì'ܳ"D*ܳ#5ü´#=´! ´"„ ´!¡ ´"B´#“ÙA´!ÝæA´"ÉèA´#\´t´#;¾t´!ØÀt´"Ât´!¨Ãt´"ÖÎt´#:“§´!YŸ§´"?¡§´#þmÚ´#mzÚ´!e|Ú´"ñ}Ú´!ç~Ú´"‹Ú´#!U µ!šZ µ"A\ µ#0@µ#6@µ!8@µ"3:@µ!>;@µ"•D@µ#” sµ!#sµ"»sµ#Q᥵#­î¥µ!)ñ¥µ"âò¥µ!íó¥µ"mþ¥µ#\¿Øµ!õÌØµ"ŸÎص#§¤ ¶# ¨ ¶!§ª ¶"!¬ ¶!h­ ¶"°¹ ¶#Å~>¶!˜„>¶"{†>¶#9]q¶#Xbq¶!_dq¶"ßeq¶!Øfq¶"qq¶Ûš¶uhci_hcd:usb4 ®ßš¶æàš¶eth0#wæš¶ gçš¶!žéš¶"n ›¶#™<¤¶!›C¤¶"«E¤¶™Åº¶ahci ÍÓº¶2Õº¶uhci_hcd:usb3 »Ùº¶Ûº¶eth1 ñߺ¶#Ý×¶#T×¶!î×¶"×¶! ×¶"Ù+×¶#ðõ ·!û ·"Èü ·#÷Ï<·#DÔ<·!rÖ<·"ø×<·!ñØ<·"ä<·#¨o·!°µo·"f·o·#¦¢·#Õ¢·!B’¢·"¿“¢·!µ”¢·"0ž¢·#*`Õ·!½lÕ·"[nÕ·#ŸF¸#JJ¸!TL¸"ÔM¸!O¸"DY¸#B;¸!T%;¸"ã&;¸##øm¸#gn¸!bn¸" n¸!n¸"n¸#‡Ò ¸!€ß ¸"á ¸#è¸Ó¸#_½Ó¸!ÀÓ¸"÷ÁÓ¸!ÿÂÓ¸"ŠÎÓ¸#”¹!p™¹"&›¹#þo9¹#Âu9¹!x9¹"‘y9¹!„z9¹"A„9¹#Fl¹!Pl¹"æRl¹##Ÿ¹#P+Ÿ¹!).Ÿ¹"Ó/Ÿ¹!Û0Ÿ¹"<Ÿ¹#—Ò¹!Ò¹"¯Ò¹#˜Ûº#áæº!Oëº" íº!îº"Éøº#ŠÁ7º!ÙÆ7º"ªÈ7º#U—jº#·¢jº!¥¥jº"|§jº!„¨jº"J²jº#(rº!^~º"€º# Pк!F[к"ü\к#¼6»#|:»!=»"·>»!ª?»"ÚH»#§6»!Ö6»"%6»êI;»ahci }V;»ÖW;»uhci_hcd:usb3 ‰\;»Ç];»eth1 €b;»#ðh»ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ™ôh»È7Ð:%ÅÈ7À€#™ôh»!Ùùh»jÿh»ltt-kconsumerd2•i»ltt-kconsumerd2x"ü i»!1 i»"i»i»kworker/0:1ltt-kconsumerd2(8i»TÔ!ƒÅ>Ô"3Ç>Ô#;–qÔ!¯¡qÔ"ƒ£qÔ”xÔahci Ç xÔö¡xÔuhci_hcd:usb3 a¦xÔ‡§xÔeth1 @¬xÔ#,t¤Ô#F¤Ô!k¤Ô"`ƒ¤Ô!P„¤Ô"3¤Ô#ÓQ×Ô!‚[×Ô",]×Ô#Ž, Õ#Ó; Õ!> Õ"ù? Õ!ã@ Õ"]K Õ#² =Õ!€=Õ"0=Õ#PæoÕ#¢òoÕ!õoÕ"†öoÕ!s÷oÕ" pÕ#BâÕ!8ТÕ"âÑ¢Õ#n¡ÕÕ!ª«ÕÕ"¨­ÕÕ#à|Ö#³‰Ö!ŒÖ"¯Ö!œŽÖ"ž˜Ö#âY;Ö!šf;Ö"¤h;Ö#^7nÖ#@CnÖ!ìEnÖ"¥GnÖ!ªHnÖ"îRnÖ#º¡Ö!„¡Ö"4!¡Ö#QðÓÖ#ÌýÓÖ!²ÿÓÖ">ÔÖ!+ÔÖ"Ù ÔÖ#±Î×!³Û×"ŠÝ×#ï©9×#Ù´9×!à¶9×"~¸9×!h¹9×"JÂ9×#l×!ð“l×"Ž•l×#YcŸ×#œoŸ×!pqŸ×"sŸ×! tŸ×"”}Ÿ×#W@Ò×!Øahci Õ>Ø>Øuhci_hcd:usb3 o“>Ø›”>Øeth1 B™>Ø#™ßjØ#ÐäjØ!ÈæjØ"±èjØ!žéjØ"—ójØ#„¶Ø!rÀØ"ÂØ#‹ÐØ#žÐØ!© ÐØ"8¢ÐØ!%£ÐØ"æ«ÐØ#{mÙ!LyÙ"ÕzÙ#:J6Ù#bU6Ù!™W6Ù"RY6Ù!?Z6Ù"–c6Ù# )iÙ!{2iÙ"4iÙ#ÉœÙ#ÔœÙ!#œÙ"»œÙ!¨œÙ"ÑœÙ#½êÎÙ! ïÎÙ"_ñÎÙ#1ÇÚ#žÌÚ!xÎÚ"ûÏÚ!!ÑÚ">ÛÚ#"›4Ú!S§4Ú"Z©4Ú#ÇgÚ#¨…gÚ!£‡gÚ",‰gÚ!ŠgÚ"“gÚ#Ä[šÚ!½bšÚ"¸dšÚ#Ì7ÍÚ#:<ÍÚ!D>ÍÚ"Ä?ÍÚ!®@ÍÚ"2JÍÚ#¸ Û!´Û"ÄÛ#—ò2Û#óö2Û!Bù2Û"@û2Û!Bü2Û"Q3Û#tÎeÛ!4ÕeÛ"ÆÖeÛ#N«˜Û#5²˜Û! ´˜Û"’µ˜Û!y¶˜Û"%¿˜Û#ƒËÛ!™ËÛ"O‘ËÛ#»`þÛ#kþÛ!pmþÛ">oþÛ!=pþÛ"¾yþÛ#°:1Ü!˜I1Ü"-K1Ü#×!dÜ#¢&dÜ! )dÜ"Ô*dÜ!Ó+dÜ"ñ4dÜ#Çý–Ü!õ—Ü"Õ—Ü#ÓÉÜ#þÜÉÜ!ßÉÜ"àÉÜ!„áÉÜ"ÀêÉÜ#4®üÜ!ºüÜ"ô»üÜ#Œ‹/Ý#–/Ý!ž˜/Ý"!š/Ý!›/Ý"z¤/Ý#ÂqbÝ!)wbÝ"ybÝ#|O•Ý#ºS•Ý!uV•Ý"=X•Ý!?Y•Ý"c•Ý#l!ÈÝ!b2ÈÝ"]4ÈÝkbÍÝahci TvÍÝ¡wÍÝuhci_hcd:usb3 9|ÍÝq}ÍÝeth1 !‚ÍÝ#ÌÿúÝ#¤ ûÝ!kûÝ"rûÝ!tûÝ">ûÝ#éÛ-Þ!=è-Þ";ê-Þ#a¹`Þ!SÅ`Þ"èÆ`Þ#"ž“Þ#Q¢“Þ!Ф“Þ"q¦“Þ!s§“Þ"б“Þ#€rÆÞ!›ÆÞ"NÆÞ#–XùÞ#@]ùÞ!†_ùÞ"-aùÞ!/bùÞ"ÐlùÞ#ø-,ß!l9,ß" ;,ß#Þ_ß! _ß"¹_ß#pç‘ß#¯ó‘ß!‚ö‘ß"\ø‘ß!^ù‘ß"=’ß#5ÃÄß!fÌÄß"ûÍÄß#ªž÷ß#«÷ß!~­÷ß"F¯÷ß!H°÷ß"“¹÷ß#»‚*à!·*à"l‰*à#X]à#€g]à!oi]à"@k]à!Bl]à"u]à#5à!î@à"ÅBà±8œàahci ¿EœàGœàuhci_hcd:usb3 ªKœàâLœàeth1 ˜Qœà#Ãà#¤Ãà! Ãà"Ü!Ãà!Æ"Ãà"-Ãà#Øðõà!“üõà"dþõà#óÔ(á#ûØ(á!öÚ(á"sÜ(áÁüÁõ©‹à‡îØF²ÿbÊ™HŽ«Ý(áÈ7cÌæéÈ7à€!«Ý(á"ìç(á#³[á!i¸[á-¾[áltt-kconsumerd2Ä[áltt-kconsumerd2x"¶È[á-Í[ákworker/0:1ltt-kconsumerd2„ë[áï[áö;ò[áýó[áö€@ŽK=¿¡õ[á“÷[áHŽK=¿(\á\áO@\áþB\á€-ÔK\á@ˆ0 ltt-kconsumerd2c\áKe\ápéi\áÕk\áÝpÖy\áÝõ{\áö ~\á\\á°Ä@ ÿÿÿÿÿÿÿÿ@‹\áFŽ\áöö¤\ᵦ\áö€@ŽK=¿û¨\á&«\áHŽK=¿»²\á•´\áiï\áò\áÀ-&ù\áh†0 ltt-kconsumerd” ]áÚ]á°]áæ]áݰë!]áÝÅ#]áö²']á=*]á°Ä@ ÿÿÿÿÿÿÿÿð7]áltt-kconsumerd2v °ÁâÂD]áltt-kconsumerd2kworker/0:1Ä'báahci 25báÄ6báuhci_hcd:usb3 ž;báßôá#[Kôá!_Môá"èNôá!ÛOôá"“[ôá#¶'â!™''â"4)'â#‹Zâ#VZâ!<Zâ"ËZâ!» Zâ"ZZâ#QÕŒâ!qàŒâ"~âŒâ#c³¿â#p¼¿â!4¿¿â"ÀÀ¿â!­Á¿â"XË¿â#ôŽòâ!¾žòâ"_ òâ#ím%ã#[x%ã!Âz%ã"™|%ã!¡}%ã"*ˆ%ã#’HXã!ETXã"`WXã#f%‹ã#Ò/‹ã!o2‹ã"õ3‹ã!ß4‹ã"Æ>‹ã#…¾ã!g¾ã" ¾ã#öÞðã!Àêðã"¸ìðã#£Ä#ä#È#ä!àÉ#ä"cË#ä!PÌ#ä".Ö#ä# ™Vä!8§Vä"ĨVä#w‰ä!F‰ä"„‰ä#8Z¼ä#O^¼ä!>`¼ä"Êa¼ä!·b¼ä"(m¼ä#Y8ïä!w>ïä"3@ïä# "å#Z"å!Í"å"Y"å!I"å"f'"å#éTå!¬ôTå"DöTå#߯‡å!&Ô‡å"'Ö‡å#¤¢ºå#Ê­ºå!C°ºå" ²ºå!(³ºå"ý¼ºå#píå!Žíå"Êíå#‚f æ#™j æ!ýl æ"zn æ!go æ"™y æ#ÏBSæ!iHSæ"JSæ#»†æ#˜!†æ!$†æ"…%†æ!r&†æ"[1†æ#Ôò¸æ!“¹æ"¹æ#MÐëæ#ÜÚëæ!CÝëæ"ßëæ!àëæ"éëæ#o¬ç!H¹ç"¦»çœÂ#çahci ðÎ#çOÐ#çuhci_hcd:usb3 ÛÔ#çÖ#çeth1 ØÚ#ç#2ŒQç#A–Qç!f˜Qç"=šQç!*›Qç"g¦Qç#½f„ç!Íq„ç"ts„ç#øB·ç#çM·ç!ŠP·ç"R·ç!S·ç"¶]·ç#Ô êç!á+êç"—-êç#Ÿüè#gè!t è"B è!M è"—è#‹ÙOè!üéOè"åëOè#v¹‚è#ÌÄ‚è!ÇÆ‚è"VÈ‚è!CÉ‚è"ýÒ‚è#$“µè!|Ÿµè"#¡µè#…yèè#Š}èè!Ùèè"ªèè!²‚èè"üŒèè#:Té!¿Yé"®[é#Ü)Né##4Né!6Né"O8Né!Z9Né"ªCNé#|é!é" é 5†éahci JA†éB†éuhci_hcd:usb3 íF†éyH†éeth1 ,M†é#ã³é#Hñ³é!=ó³é"\õ³é!Iö³é"b´éÁüÁõ©‹à‡îØF²ÿbÊ™HŽ#ÃæéÈ7ʼ@ñÈ7€€##Ãæé!NÒæé•Ùæéltt-kconsumerd2;ßæéltt-kconsumerd2x"*äæéÒçæékworker/0:1ltt-kconsumerd2§çéxçéö`çé+çéö€@ŽK=¿„çévçéHŽK=¿”+çéŒ-çéeçé–gçé-ÓoçéHˆ0 ltt-kconsumerd߇çéò‰çé€÷çéïçéÝ€ñ™çéÝÝ›çéöíçéü çé°Ä@ ÿÿÿÿÿÿÿÿ©çé-¬çé!öâ´çéž¶çé!ö€@ŽK=¿¥¸çéyºçé!HŽK=¿{ÁçéLÃçé"µüçé@ÿçé" -êè阅0 ltt-kconsumerdãèéJèé" èéä!èéÝ"ú,èéÝÈ.èé!öß2èé5èé°Ä@ ÿÿÿÿÿÿÿÿÏBèéltt-kconsumerd2Üd|ÃâkOèéltt-kconsumerd2kworker/0:1#ñ§ê#•¬ê!ž¯ê"ç±ê!³ê"¯¼ê#Š…Lê!aŠLê" ŒLê#`ê#dê!{fê"øgê!iê"Ltê#e3²ê!µ=²ê"h?²ê#åê# åê!òåê"uåê!båê"*åê#íë!µûë"Yýë#KÊJë#\ÕJë!3×Jë"LÙJë!9ÚJë"$æJëPëahci žPëPëuhci_hcd:usb3 ¼PëýPëeth1 ¶ Pë#|¨}ë!§´}ë"±¶}ë#‡°ë#A”°ë!’—°ë"„™°ë!†š°ë"ø£°ë#e`ãë!ëjãë"lãë#<=ì#ŽHì!ÎJì"cLì!MMì"²WìvD!ìahci lQ!ìàR!ìuhci_hcd:usb3 rW!ì­X!ìeth1 o]!ì#bIì!Ð&Iì"×(Iì# |ì#j|ì!_|ì"å |ì!ð |ì"[|ì#BÜ®ì!ðâ®ì"šä®ì#‡°áì#¼áì!n¾áì"0Àáì!2Ááì"¨Ìáì#…Ží!ʘí"nší#ívGí#¤zGí!À|Gí"R~Gí!BGí"1ŠGí#%Gzí!Szí",Uzí#m+­í#6/­í!R1­í"Õ2­í!¿3­í"@­í#Ãàí!D àí"îàí#uÞî#…æî!¸éî"›ëî!…ìî"õî#·ÂEî!mÊEî"SÌEî#e¢xî#T§xî!@©xî"Àªxî!Å«xî"K¶xî#t«î!D«î"«î#ÞPÞî#;ZÞî!_]Þî"â^Þî!Ï_Þî"$kÞî#Ê-ï!Ó9ï"n;ï#úDï#ùDï!ÇDï"GDï!1Dï"¢&Dï#wçvï!µôvï"_övï#)Ä©ï#bË©ï!ÂΩï"HЩï!5Ñ©ï"Ý©ï#j«Üï!£±Üï"b³Üï#2~ð#R‹ð!šŽð"§ð!¬‘ð"5œðÿlðahci +yðzðuhci_hcd:usb3 û~ðK€ðeth1 .…ð#Ý\Bð!ƒkBð"–mBð#’7uð# Auð!ËCuð"ÞEuð!æFuð"Quð#"¨ð!v!¨ð"h#¨ð#9ñÚð#€þÚð!DÛð"Ûð!Ûð"%Ûð#ýÍ ñ!}Ò ñ"iÛ ñ#«Þ ñ ã ñksoftirqd/4x~ê ñkworker/0:1ksoftirqd/4!¡î ñ"ð ñ]ó ñksoftirqd/4à\ â‚þ ñksoftirqd/4kworker/0:1#™­@ñ#Ÿ@ñ!8»@ñÁüÁõ©‹à‡îØF²ÿbÊ™H޲Â@ñÈ7NûûÈ7ð€²Â@ñltt-kconsumerd2ìÇ@ñltt-kconsumerd2x"6Ì@ñ!bÍ@ñ"òÖ@ñ|Ú@ñkworker/0:1ltt-kconsumerd2\ù@ñ:ý@ñö@AñAñö€@ŽK=¿aAñMAñHŽK=¿AñþAñDAñ«FAñ -rOAñPˆ0 ltt-kconsumerdòeAñhAñ×kAñÆmAñÝòwAñÝüyAñö|AñAñ°Ä@ ÿÿÿÿÿÿÿÿó‹Añltt-kconsumerd2žÄÚÃâÔAñltt-kconsumerd2kworker/0:1#ó”sñ!à›sñ"žsñ#d¦ñ#?o¦ñ!¾q¦ñ"As¦ñ!.t¦ñ"„~¦ñ#?JÙñ!×NÙñ"±PÙñ#z( ò#¬, ò!›. ò"'0 ò!1 ò" ; ò#4û>ò!/?ò"-?ò#Úqò#æqò!—èqò"Sêqò!Uëqò"fõqò#д¤ò!⾤ò"›À¤ò#›‘×ò#Í›×ò!ž×ò"ŸŸ×ò!Œ ×ò"sª×ò#o ó!åy ó"£| ó#9U=ó#&Y=ó![=ó"¤\=ó!”]=ó"Qg=ó#x/pó!™5pó"+7pó#Ú£ó#-£ó! £ó"Ì£ó!Σó"å!£ó#¥áÕó!.íÕó"ÒîÕó#*Àô# Êô!‘Ìô"Îô!Ïô"ØÙô#wœ;ô!;¨;ô"!ª;ô¥pFôahci ø}FôxFôuhci_hcd:usb3 ûƒFôE…Fôeth1 ŠFô#@xnô#”nô!d„nô"׆nô!ćnô"o‘nô#;U¡ô!Õc¡ô"‚e¡ô#÷1Ôô#x>Ôô!„AÔô"LCÔô!9DÔô"ÀMÔô#Ðõ!¬õ"Mõ#të9õ#îø9õ!Rû9õ"ý9õ!ïý9õ"@:õ#ÐÓlõ!}Ølõ"'Úlõ#½­Ÿõ#[²Ÿõ!´Ÿõ"¶Ÿõ!ü¶Ÿõ" ÀŸõ#‚Òõ!«Òõ"‚Òõ#Ü^ö#¯jö!mö"{nö!hoö"¶xö#ÌC8ö!ñH8ö"’J8ö#bkö#û$kö!³'kö"0)kö!*kö"T5kö#lõö!žö"Ížö#ÒÐö#ØÜÐö!ŸßÐö"áÐö! âÐö"íÐö#ù®÷!•¹÷"$»÷#6÷#v—6÷!Ñ™6÷"{›6÷!hœ6÷"§6÷#§hi÷!½vi÷"Rxi÷#~Eœ÷#aPœ÷!\Rœ÷"èSœ÷!ÒTœ÷"#^œ÷#~"Ï÷!2Ï÷"Ù3Ï÷#1ÿø#¹ ø! ø"Žø!{ø"¥ø# Ü4ø!ê4ø"aì4ø̱9øahci b¾9øÊ¿9øuhci_hcd:usb3 VÄ9øŽÅ9øeth1 ;Ê9ø#TÀgø#ÈÄgø!ÉÆgø"…Ègø!rÉgø"VÓgø#Εšø!¢£šø©šøkworker/4:11x"꬚øa±šøkworker/0:1kworker/4:118¼šøkworker/4:11‚ù˜âÇšøkworker/4:11kworker/0:1#â}Íø#$Íø!åƒÍø"­…Íø!¦†Íø"‘Íø#üVù!J]ù"÷^ù#®43ù#y83ù!;3ù"=3ù!>3ù"`H3ù#5 fù!ófù"»fù#áå˜ù#ÿï˜ù!ùò˜ù" ô˜ù!¥õ˜ù"Îÿ˜ù#ŽÍËù!ÓÓËù"‰ÕËù#cŸþù#¾ªþù!­þù"¯þù!°þù"3ºþù#^|1ú!‰Š1ú"®Œ1úF‹6úahci T˜6ú°™6úuhci_hcd:usb3 Ež6úƒŸ6úeth1 Q¤6ú#Zdú#îfdú!Êidú"¼kdú!Äldú"udú#¹6—ú!ÙC—ú"†E—ú#Êú#uÊú!Ö!Êú"Ñ#Êú!Ê$Êú"r.Êú#²ïüú!óýüú"úÿüú#éÔ/û#SÚ/û!`Ü/û"%Þ/û!ß/û"è/ûÃÖ4ûahci hã4û»ä4ûuhci_hcd:usb3 Dé4ûîê4ûeth1 ­ï4û#S²bû!‚¸bû"€ºbû#8•û#­••û!‡—•û"™•û!÷™•û"­¤•û#dÈû!‰mÈû"‡oÈû#~@ûûÁüÁõ©‹à‡îØF²ÿbÊ™HŽÙLûûÈ7——.ýÈ7°~€#ÙLûû!µQûûËVûûltt-kconsumerd2Š[ûûltt-kconsumerd2x"`ûû!0aûû"Riûûèlûûkworker/0:1ltt-kconsumerd2‹ûû˜ûûöƒ’ûûT”ûûö€@ŽK=¿à•ûûÉ—ûûHŽK=¿ñ¢ûûé¤ûûtÔûû×ûû°-fßûûXˆ0 ltt-kconsumerdÀôûûÖöûû óúûûåüûûÝ üûÝŠ üûöñ üûEüû°Ä@ ÿÿÿÿÿÿÿÿüûltt-kconsumerd2MÁg›ÄâÕ$üûltt-kconsumerd2kworker/0:1#á'.ü!^/.ü"›1.ü#±aü#¼aü! aü"ú aü!ÿ aü"ôaü#ÎØ“ü!Äã“ü"€å“ü#³Æü#a¾Æü!•ÀÆü"WÂÆü!XÃÆü"cÍÆü#÷ùü!^Ÿùü"¡ùü#²w,ý#k|,ý!\~,ý"€,ý!,ýB’,ýltt-kconsumerd2x",ý” ,ýkworker/0:1ltt-kconsumerd2·,ýº,ýöáÂ,ý÷Ä,ýö€@ŽK=¿ Ç,ýÉ,ýHŽK=¿ÊÐ,ýÅÒ,ýS-ýV -ýP-Z-ý°†0 ltt-kconsumerdû#-ýmd1_raid1.-ýš0-ý@5-ý]7-ýÝ@ñB-ýÝÔD-ýö=H-ý¿J-ýö'X-ýæY-ýö€@ŽK=¿ö[-ýÐ]-ýHŽK=¿‰e-ýfg-ý†¤-ý§-ý -.®-ýX‰0 ltt-kconsumerdÂ-ý/Ä-ý©È-ýÂÊ-ýÝ'Õ-ýÝ×-ýö¡Ù-ý8Ü-ý°Ä@ ÿÿÿÿÿÿÿÿ¾æ-ýsé-ý!ö¦û-ýký-ý!ö€@ŽK=¿!ÿ-ýþ.ý!HŽK=¿ .ý .ý"æ?.ýbB.ý" -ÊI.ýØ…0 ltt-kconsumerd¥\.ýµ^.ý"ÿb.ý»d.ýÝ")o.ýÝýp.ý!öut.ýßv.ýö!†.ýׇ.ýö€@ŽK=¿AŠ.ýŒ.ýHŽK=¿æ“.ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽw–.ýÈ7” BýÈ7P1€w–.ýÒ.ý)Õ.ý-gÜ.ýˆ„0 ltt-kconsumerd’í.ýÆï.ýðwó.ý<õ.ýÝð /ýÝ÷/ýö¸/ýI/ý°Ä@ ÿÿÿÿÿÿÿÿ/ýL/ýö/ýÐ/ýö€@ŽK=¿/ýñ/ýHŽK=¿(/ýî)/ým/ý_p/ýÀ-x/ýhˆ0 ltt-kconsumerdã‹/ýö/ý°7’/ý”/ýݰw/ýÝcŸ/ýö©¡/ýC¤/ý°Ä@ ÿÿÿÿÿÿÿÿÿ±/ýltt-kconsumerd2[#¾Çâz¾/ýltt-kconsumerd2kworker/0:1Á8;ýahci F;ý|G;ýuhci_hcd:usb3 L;ýdM;ýeth1 R;ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽ–ÚiÉ7X—ÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_20000755000175000017500000050000011616325072023131 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽæ‡È7nÝk}È7ø€ÿÿ#ñHØyÈ7#BUØy #‘ZØy!1]Øy"¦`Øy!«aØy":fØy!xgØy "úlØy # z#Ô z !r' z") z!* z ". z #¬÷=z#Ë>z # >z!†>z">z!b >z"â >z!Õ>z "€>z #£Òpz# Ôpz !ìápz"~ãpz!eäpz "[ëpz «‡qzsshdf(x7qzkworker/0:1sshdf( ¡qzsshdf(«®ÆôL ?´qzsshdf(kworker/0:1RÅqzsshdf(xtÊqzkworker/0:1sshdf(TÛqz·Þqz𢴀ÿp£´€ÿñàqzÂâqzp£´€ÿNäqzµæqzàb´€ÿ@zñqz2çrz@ù¨ª2 ù¨ª2| rz•rz𢴀ÿp£´€ÿ<rz.rzp£´€ÿ–rz±rz‹¨ª2`44rz`ƒ9rz@ù¨ª2 ù¨ª2Drzsshdf(¾€lGõL ’Mrzsshdf(kworker/0:1f«vzsshdf(x?±vzkworker/0:1sshdf(ÄvzÕÆvz𢴀ÿp£´€ÿÇÈvz€Êvzp£´€ÿîËvz@Îvzàb´€ÿ@©×vz$©évz@ù¨ª2 ù¨ª2]ðvzsòvz𢴀ÿp£´€ÿ)ôvzßõvzp£´€ÿ ÷vzPúvz‹¨ª2PYwzPfwz@ù¨ª2 ù¨ª2h!wzsshdf(–xÀõL z*wzsshdf(kworker/0:1#F¹£z#½£z #Á£z!bÄ£z"/Ç£z!dÈ£z"ÎÍ£z!ÇΣz "SÓ£z #Ó–Öz#™šÖz !ïžÖz";¡Öz!"¢Öz "j¥Öz #–i {#°p {!Ft {"üu {!Úv {"¢{ {>4{ahci#Ê>{ ’@{oB{uhci_hcd:usb3 G{¢H{eth1 ‘M{!þO{d{kworker/2:1Qx(Žn{€ºð0+kworker/0:1"Ö€{t…{kworker/0:1kworker/2:1QÄŒ{kworker/2:1QE*T ÝL  •{kworker/2:1Qkworker/0:1#ZG<{# O<{ !V<{"JX<{!‘Y<{ "r]<{ #w!o{#&*o{ #‘.o{!×0o{"Ÿ2o{!ƒ3o{"Q8o{!/9o{ " =o{ #È¢{# ¢{ !g¢{"A¢{!(¢{ "²¢{ #ÝãÔ{#±åÔ{ #SéÔ{!¨ëÔ{"MïÔ{!1ðÔ{"õÔ{!öÔ{ "ïøÔ{ #Áº|#™Â| !ãÆ|"~È|!eÉ| "&Ì| 93|ahci MC|²D|uhci_hcd:usb3 )I|¯J|eth1 SO|ø>6|ahci ÛL6|UN6|uhci_hcd:usb3 ¥R6|ÔS6|eth1 „X6|#¦ž:|#ø :| #¸¤:|!L§:|"k©:|!dª:|"¯:|!°:| "—³:| úN|ahci ¨O|é O|uhci_hcd:usb3 O|ÈO|eth1 O|Se|ahci <%e|}&e|uhci_hcd:usb3 å*e|>,e|eth1 è0e|#¦sm|#Gum| !›m|"“ƒm|!¿„m| "͈m| #mN |#}W | #?\ |!v^ |"D` |!%a |"&f |!þf | "|j | #œ+Ó|#4Ó| !á:Ó|"Ž<Ó|!=Ó| "ë?Ó| #}#Ú}!€}" }!í}"[}#ßå8}![ò8}"8ô8}#ÝÁk}#ÂËk} #ˆÏk}!¹Ñk}"~Ók}ÁüÁõ©‹à‡îØF²ÿbÊ™HŽdÕk}È7k›W‰È7Ѐ!dÕk}"uåk}!hæk} "¢èk} #Ûžž}!©ž}O²ž}ltt-kconsumerd2·ž}ltt-kconsumerd2x"f¼ž}”Áž}kworker/0:1ltt-kconsumerd2ùž}nŸ}öŸ}Ÿ}ö€@ŽK=¿¾Ÿ}³Ÿ}HŽK=¿a-Ÿ}h/Ÿ}üÀŸ}›ÄŸ}-ÞäŸ}À€0 ltt-kconsumerdï  }¼ }ö" }' }°Ä@ ÿÿÿÿÿÿÿÿg( }ltt-kconsumerd2öq{:•M º5 }ltt-kconsumerd2kworker/0:1#7‡Ñ}#AŒÑ}!YÑ}")’Ñ}!F“Ñ}"_˜Ñ}ãÒ×}ahci wä×}èå×}uhci_hcd:usb3 ¹ê×}ì×}eth1 Ëð×}#zb~!Îh~"êj~#57~#‰@7~!‡B7~"D7~! E7~"ãI7~#þj~!C"j~"ê#j~#Ûîœ~#ýœ~!ÿœ~" ~!~"à~#ËÌÏ~!cØÏ~"RÚÏ~#Jª#rµ!Ö·"§¹!©º"&¿#A…5!$“5"Ë”5#bh#Xnh!•ph"rh!sh"Uwh#ä>›!¼K›"~M›#'Î#x(Î!d*Î",Î!-Î" 1Î#Úú€!€"±€#øÛ3€#åß3€!Lâ3€"Ìã3€!õä3€"`é3€#¥ºf€!¢Àf€":Âf€#-™€#¼™™€!Þ›™€"m™€!Zž™€"P¢™€#ÿtÌ€!5{Ì€"â|Ì€# Pÿ€#!Uÿ€!@Wÿ€"ÒXÿ€!ÂYÿ€"^ÿ€#»/2!52"G72#qe#ve!Ýe"äe!Ñe"{e#8ß—!Ûë—"Qî—#(ÄÊ#\ÉÊ!äËÊ"‹ÍÊ!ÎÊ"žÒÊ#õ˜ý!‚¥ý"§ý#x0‚!X„0‚"h†0‚#£\c‚#-`c‚!Bcc‚"¼dc‚!©ec‚"\jc‚#€/–‚!ð;–‚Ê@–‚kworker/2:1Qx"ÕD–‚‚I–‚kworker/0:1kworker/2:1Q&W–‚kworker/2:1Qš7ÞL `–‚kworker/2:1Qkworker/0:1#ÁÉ‚#ÐÉ‚!ŽÉ‚"×É‚!ÇÉ‚"Õ"É‚#ëû‚!­õû‚"9÷û‚#ÓÆ.ƒ!ÿÑ.ƒ"$Ô.ƒÝù3ƒahci  4ƒ’ 4ƒuhci_hcd:usb3 Z4ƒ†4ƒeth1 -4ƒ#‡¥aƒ# ±aƒ!X³aƒ"nµaƒ![¶aƒ"¡»aƒ#Û€”ƒ!ë‹”ƒ"¡”ƒ#ieǃ#Äjǃ!ªlǃ"?nǃ!Soǃ"åsǃ#nAúƒ!Húƒ"«Iúƒ#î -„#œ$-„!Ü&-„"€(-„!…)-„".-„#ÿò_„!zý_„"cÿ_„#ÆÏ’„#Û’„!žÝ’„"ß’„!zà’„"ñä’„#Ьń!\ºÅ„"c¼Å„#jø„#Ó™ø„!1œø„"Ažø„!CŸø„"£ø„#Bf+…!r+…"«s+…#YC^…#0N^…!+P^…"ºQ^…!ªR^…"îV^…#Ž(‘…!ë.‘…"¼0‘…#»üÃ…!C Ä…"Ø Ä…#wÛö…#Öæö…!Oéö…"Ìêö…!¹ëö…"Ùïö… †ahci Lц¥Ò†uhci_hcd:usb3 ׆6؆eth1 õ܆#æ¼)†!DÂ)†"BÄ)†#!“\†#"¡\†!•£\†"ê¥\†!ï¦\†"«\†#Õq†!Ü}†"&‚†#©U†#—X†!†Z†"0\†!,]†"a†#4õ†!³8õ†"r:õ†#­(‡#ƒ(‡!o(‡"(‡!~(‡"!(‡#ôëZ‡!+ñZ‡"ÞòZ‡#ˇ#F·!›Ð‡"]Ò‡!bÓ‡"aׇ#(À‡!a¬À‡"&®À‡#ðyó‡#ˆó‡!&Šó‡"Ù‹ó‡! ó‡"ìó‡#^&ˆ!—f&ˆ"2h&ˆ# =Yˆ#­@Yˆ!PCYˆ"EYˆ!FYˆ"^JYˆ#iŒˆ!SŒˆ"` Œˆ#$í¾ˆ#¦ö¾ˆ!ù¾ˆ"¢ú¾ˆ!•û¾ˆ"¿ˆ#Êñˆ!ÖÓñˆ"†Õñˆ#ê¦$‰!”±$‰"ø³$‰#LW‰#ÍW‰!à’W‰"~”W‰!k•W‰ÁüÁõ©‹à‡îØF²ÿbÊ™HŽè™W‰È7u¬“È7€€"è™W‰#QiЉ!1nЉBuЉltt-kconsumerd2ŽzЉltt-kconsumerd2x"‰Љ©ƒŠ‰kworker/0:1ltt-kconsumerd2ƒ¯Š‰Z´Š‰ö·Š‰²¹Š‰ö€@ŽK=¿V»Š‰H½Š‰HŽK=¿ðÉŠ‰ÊËŠ‰õ‹‰Ý‹‰-Ç‹‰È€0 ltt-kconsumerd^-‹‰¡/‹‰þ5‹‰28‹‰Ý˜S‹‰ÝœU‹‰öX‹‰c[‹‰°Ä@ ÿÿÿÿÿÿÿÿ,h‹‰ltt-kconsumerd2ï)–M “s‹‰ltt-kconsumerd2kworker/0:1ש‰ahci ?º‰ò»‰uhci_hcd:usb3 fÀ‰³Á‰eth1 ±Æ‰#¾?½‰#K½‰!¡N½‰"üP½‰!õQ½‰"†W½‰#Õð‰!*%ð‰"÷'ð‰#H#Š#ó#Š!Ö#Š"õ #Š!è #Š"°#Š#ÕUŠ!†ãUŠ"åUŠ# °ˆŠ#×¾ˆŠ!±ÀˆŠ"šÂˆŠ!ÈŠ"LjŠ#ÄŽ»Š!b—»Š"l™»Š#¾sîŠ#ÝxîŠ!ízîŠ"…|îŠ!À}îŠ"³îŠ#J!‹!W!‹"ÏX!‹#Û#T‹#e1T‹!Q3T‹"5T‹!÷5T‹"_:T‹#†‡‹!±‡‹"Ö‡‹#๋#gí¹‹!P﹋"ßð¹‹!Øñ¹‹"`÷¹‹#˜ºì‹!©Çì‹"zÉì‹#o Œ#㤌!†§Œ"T©Œ!GªŒ"U®Œ#n}RŒ!SƒRŒ"î„RŒ#FS…Œ#Ê\…Œ!—_…Œ">a…Œ!Ib…Œ"f…Œ#°/¸Œ!«>¸Œ"U@¸Œ#¼ ëŒ#gëŒ!wëŒ"ýëŒ!DëŒ"ëŒ#‰ç!¾õ"h÷#óÄP#ÑP!ÓP"òÔP!åÕP"ÚP?Vahci ;V¬Vuhci_hcd:usb3 VaVeth1 /"V#£ƒ!ž¯ƒ"±±ƒ#ê}¶!‘‰¶"gŒ¶#cé#]hé!‘jé"&lé!mé"qéÇÊøapache2Q x Ðøkworker/0:1apache2Q "Ùø¬âø=ÿÿÿÿÿÿÿÿ¬—„ÿ(À=äà ²åøapache2êéø=Vìøà—„ÿ»óøapache2Q $*£8ßL  üøapache2Q kworker/0:1#ëBŽ!¼GŽ"ØIŽ#»OŽ##OŽ!˜%OŽ"K'OŽ!V(OŽ"Ç,OŽ#àòŽ!;ÿŽ"ñ‚Ž#IδŽ#:Ú´Ž!›Ü´Ž"*Þ´Ž! ß´Ž"^ã´Ž#OµçŽ!ºçŽ"¼çŽ#ˆ#Z•!Á—"M™!Cš"¥ž#ÒdM!&qM" sM#A€#‹M€!þO€"xQ€!kR€"¸V€#a!³!©.³"_0³#7ûå!N æ"U æ#@â#æ!è"Šé!}ê"ð#ë´K!”ÃK";ÅK#@•~#ÄŸ~!4¢~"É£~! ¥~"ü©~#w±!•|±"3~±#pKä#¥Vä!,Zä"¸[ä!«\ä"¶`ä#5(‘!u7‘"6:‘#òJ‘#J‘!–J‘"LJ‘!WJ‘"J‘#ßá|‘!Ìë|‘"Üí|‘®â‘ahci ü‘½ý‘uhci_hcd:usb3 =‚‘~‚‘eth1 :‚‘#¸È¯‘#€Í¯‘!‡Ï¯‘"»Ñ¯‘!ÀÒ¯‘"gׯ‘#«›â‘!¨â‘"È©â‘#Ax’#,„’!3†’"=ˆ’!H‰’"n’#MUH’!}eH’"$gH’#2{’#2={’!Ø?{’"£A{’!®B{’"˜F{’#Á®’!y®’")®’#„íà’#ôøà’!^ûà’"ýà’!1þà’"Qá’#{È“!Ô“"Ÿ×“#^¥F“#ê°F“!‡³F“"µF“!÷µF“"8ºF“#*‚y“!‰y“"W‘y“# k¬“#»n¬“!°p¬“"Er¬“!ƒs¬“ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ z¬“È7›5=™È78€" z¬“#ÁCß“!ÑHß“Oß“ltt-kconsumerd2ÒSß“ltt-kconsumerd2x"©Xß“Õ\ß“kworker/0:1ltt-kconsumerd2¶‡ß“#ß“öß“E’ß“ö€@ŽK=¿ì“ß“–ß“HŽK=¿à¢ß“ó¤ß“Tæß“Héß“ -òß“Ѐ0 ltt-kconsumerd à“Eà“›à“~à“Ý'!à“Ý.#à“ö%à“þ(à“°Ä@ ÿÿÿÿÿÿÿÿ‡6à“ltt-kconsumerd2»ã: —M öBà“ltt-kconsumerd2kworker/0:1#$”#K(”!¥+”"Ù-”!Û.”"Í3”#zýD”!ÆE”"aE”#wÔw”!Éßw”"Xáw”#‚°ª”#¹ª”!q»ª”"ù½ª”!¿ª”"¯Âª”_Ƶ”ahci ›Õµ”9×µ”uhci_hcd:usb3 ³Ûµ”<ݵ”eth1 âµ”#•—Ý”!–œÝ”"ëžÝ”#Õh•!šs•"Xv•#_FC•#ÙNC•!ÁQC•"GSC•!@TC•"çXC•#m"v•!V1v•"-3v•#Yÿ¨•#N©•! ©•"¿ ©•!å ©•"©•#ÜÛ•!«çÛ•"@éÛ•#0–#Æ–!<È–"îÊ–!çË–"Ж#‡žA–!‘£A–"ú¬A–#ñrt–#!t–!ßt–"׃t–!è„t–")‰t–#|O§–!z[§–"Ø]§–#~.Ú–#?;Ú–!=Ú–"?Ú–!@Ú–"9DÚ–#E —!– —"" —#¶ç?—#tó?—!Ìõ?—"X÷?—!Nø?—"2ü?—#æÂr—!dÏr—"ÿÐr—#«¥—#Í®¥—! ±¥—"ϲ¥—!ø³¥—"¸¥—#w|Ø—!ۇؗ"v‰Ø—#,Y ˜#Žd ˜!èg ˜"hi ˜![j ˜"œn ˜#27>˜!É@>˜"¯B>˜#þq˜#Ðq˜!Í"q˜"V$q˜!F%q˜"Ø)q˜#¡ï£˜!ü£˜"´ý£˜# ÎÖ˜!9ÛÖ˜"@ÝÖ˜#Ϫ ™#;µ ™!œ· ™"Ĺ ™!Ϻ ™"w¾ ™½n ™md1_raid1xt ™kworker/0:1md1_raid130€ ™€ x€P‚0 -Bƒ ™€ xmd1_raid1.5– ™€ xmd1_raid10Ò› ™md1_raid13Р ™€ x€P‚0 -£ ™€ xmd1_raid1.Å­ ™€ xmd1_raid1'`¸ ™€ xmd1_raid11VË ™md1_raid1(Ù ™€ xmd1_raid1'*ñ ™€ xmd1_raid11Où ™md1_raid1(þ ™€ xmd1_raid13u ™€º~x€‚0 - ™€º~xmd1_raid1.' ™€º~xmd1_raid10Ÿ ™md1_raid13  ™€º~x€‚0 -¶" ™€º~xmd1_raid1.´' ™€º~xmd1_raid1'Ô+ ™€º~xmd1_raid11Ò0 ™md1_raid1(Ÿ3 ™€º~xmd1_raid1'Ÿ? ™€º~xmd1_raid11þC ™md1_raid1(F ™€º~xmd1_raid1ôS ™md1_raid1òå óL t^ ™md1_raid1kworker/0:1(˜™uhci_hcd:usb4 ðœ™О™eth0# ó¥™!¢¨™"Ù™#¤<™!d—<™"ª™<™¯=™md1_raid1x%=™kworker/0:1md1_raid13 =™€Ò}x€0 -!=™€Ò}xmd1_raid1.='=™€Ò}xmd1_raid10m*=™md1_raid13 ,=™€Ò}x€0 -.=™€Ò}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‹3=™È7˜\›žÈ7€.‹3=™€Ò}xmd1_raid1'v<=™€Ò}xmd1_raid11^A=™md1_raid1(E=™€Ò}xmd1_raid1'èS=™€Ò}xmd1_raid11~W=™md1_raid1(7Y=™€Ò}xmd1_raid1Øf=™md1_raid1ÛTçmóL $o=™md1_raid1kworker/0:1#Úno™#!so™!xvo™p{o™ltt-kconsumerd2Wo™ltt-kconsumerd2x"˃o™!ú„o™"OŠo™„Žo™kworker/0:1ltt-kconsumerd26£o™Þ¦o™ö¢©o™y«o™ö€@ŽK=¿­o™H¯o™HŽK=¿p·o™M¹o™±åo™rèo™0-·ño™Ø€0 ltt-kconsumerd ÿo™md1_raid1°p™à p™ âp™Âp™Ý Áp™ÝÅp™öç p™$p™°Ä@ ÿÿÿÿÿÿÿÿq0p™ltt-kconsumerd2–±Ð¾—M —:p™ltt-kconsumerd2kworker/0:1#ÐJ¢™!ZQ¢™"»S¢™#%Õ™#¡)Õ™!ö+Õ™"Ž-Õ™!±.Õ™"£3Õ™#¥ùš!š"{š#7â:š#Óå:š! è:š"Šé:š!}ê:š"ï:š#¯»mš!ÑÀmš"ÀÂmš#ט š# š!õž š"~  š!q¡ š"¯¥ š#nÓš!(zÓš"Û{Óš#ÉI›# V›!"X›"ðY›!ãZ›"ú^›Áè ›ahci#€ó › Nõ › ÷ ›uhci_hcd:usb3 ®û ›"ý ›eth1 Ì ›!H ›&ž ›€Ú}x*"ë! ›#ƒ(9›!ò49›"q79›#Xl›#´l›! l›"l›!l›"Xl›#Rèž›!îž›"Oðž›#½Ñ›#UÉÑ›!§ËÑ›"KÍÑ›!;ÎÑ›"ÓÑ›#활!‡¥œ"§œ#Ãv7œ!+‚7œ"È„7œ#ß]jœ#óajœ!]djœ".fjœ!0gjœ"&kjœ#D9œ!Ø>œ"Ù@œ#ž М#sМ!¼М"ÃМ!¶М"9!М#-ê!ø"·ù#Î5#Ò5!ûÓ5" Ö5!øÖ5"úÚ5#ܬh!¶±h"f³h#e‚›#\›!ð‘›"¯“›!±”›"˘›#Ž^Î!åhÎ"ÅjÎ#H:ž#ÛDž!Gž"¡Hž!ÖIž"®Mž# 4ž!¾#4ž"e%4ž#Ñüfž#agž!Dgž"Ígž!ºgž"gž#ÉЙž!NÝ™ž":ß™ž¨šžmd1_raid1xè­šžkworker/0:1md1_raid13T´šž€â}x€(0 -?·šž€â}xmd1_raid1.\¾šž€â}xmd1_raid10šžmd1_raid13óÚž€â}x€(0 -Æšž€â}xmd1_raid1.AÊšž€â}xmd1_raid1'Ïšž€â}xmd1_raid11'Õšžmd1_raid1(gÚšž€â}xmd1_raid1'uêšž€â}xmd1_raid11ïšžmd1_raid1(¬òšž€â}xmd1_raid1㛞md1_raid1 YšÓõL ù ›žmd1_raid1kworker/0:1ø/›žmd1_raid1x)5›žkworker/0:1md1_raid13;›ž€J~x€0 -Z=›ž€J~xmd1_raid1.½C›ž€J~xmd1_raid10ÒF›žmd1_raid13…H›ž€J~x€0 -àJ›ž€J~xmd1_raid1.¸N›ž€J~xmd1_raid1'íR›ž€J~xmd1_raid11yW›žmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<[›žÈ7§;ü È7È€(<[›ž€J~xmd1_raid1'ýi›ž€J~xmd1_raid11Àm›žmd1_raid1(µo›ž€J~xmd1_raid1@{›žmd1_raid1çKöL >ƒ›žmd1_raid1kworker/0:1ç䤞ahci# N𤞿ñ¤žuhci_hcd:usb3 Šö¤ž×÷¤žeth1 ‡ü¤ž!3ÿ¤ž&¡¥ž€J~x*í¥žkworker/2:1Qx"%¥žœ#¥žkworker/0:1kworker/2:1Q+¥žkworker/2:1Q켺àL 92¥žkworker/2:1Qkworker/0:1#°Ìž#º»Ìž!–¾ÌžòÂÌžltt-kconsumerd2èÆÌžltt-kconsumerd2x"ÔËÌž!ôÌÌž"ûÑÌž«ÖÌžkworker/0:1ltt-kconsumerd2ÕëÌžŒïÌžö2òÌž ôÌžö€@ŽK=¿ŒõÌžx÷ÌžHŽK=¿ÅÍžœÍž~-ÍžW0Íž@-*9Ížà€0 ltt-kconsumerdŒCÍžmd1_raid1·KÍžNÍž0¡RÍžTÍžÝ0ó]ÍžÝå_ÍžödbÍžXeÍž°Ä@ ÿÿÿÿÿÿÿÿqÍžltt-kconsumerd2N«j˜M Y|Ížltt-kconsumerd2kworker/0:1#0–ÿž!“œÿž"NŸÿž#i2Ÿ#Þq2Ÿ!ºt2Ÿ":v2Ÿ!9w2Ÿ"õ{2Ÿ#XDeŸ!dQeŸ"¶SeŸifŸmd1_raid1x”fŸkworker/0:1md1_raid13~fŸ€ê}x€00 -ñfŸ€ê}xmd1_raid1.9&fŸ€ê}xmd1_raid10·)fŸmd1_raid13Á+fŸ€ê}x€00 -.fŸ€ê}xmd1_raid1.$2fŸ€ê}xmd1_raid1'Ñ6fŸ€ê}xmd1_raid11ÿ;fŸmd1_raid1(@fŸ€ê}xmd1_raid1'šOfŸ€ê}xmd1_raid11rSfŸmd1_raid1(@UfŸ€ê}xmd1_raid1¥bfŸmd1_raid1DRìÇ÷L  kfŸmd1_raid1kworker/0:1#@+˜Ÿ#±/˜Ÿ!„2˜Ÿ"¾4˜Ÿ!É5˜Ÿ"F:˜Ÿ#ŽËŸ!À ËŸ"jËŸ#ŸÛýŸ!äåýŸ"pçýŸ#§·0 #`Ã0 !TÆ0 "È0 !É0 "kÍ0 #N›c !¢c "¤c ¬Qd md1_raid1xˆVd kworker/0:1md1_raid13°^d €x€X‚0 -Sad €xmd1_raid1.hd €xmd1_raid10 kd md1_raid13@nd €x€X‚0 -Vpd €xmd1_raid1.‚td €xmd1_raid1'Èyd €xmd1_raid11­d md1_raid1(À„d €xmd1_raid1'‰‘d €xmd1_raid11{–d md1_raid1(x™d €xmd1_raid1¦d md1_raid1jVVøL f±d md1_raid1kworker/0:1¼Ïh ahci#Ùh  öÚh yÜh uhci_hcd:usb3 áh vâh eth1 hçh !&êh &Jíh €x*©i kworker/2:1Qx"] i ¡i kworker/0:1kworker/2:1Q+i kworker/2:1QQodáL ½i kworker/2:1Qkworker/0:1#}– #˜€– !eƒ– "¨…– !›†– "‹– #¢WÉ !”\É " aÉ #¯*ü ÁüÁõ©‹à‡îØF²ÿbÊ™HŽl:ü È7.ú¢È7€#l:ü !F?ü ÑDü ltt-kconsumerd2ºIü ltt-kconsumerd2x"INü !xOü "ïSü UWü kworker/0:1ltt-kconsumerd2÷uü zü öD}ü 6ü ö€@ŽK=¿é€ü ù‚ü HŽK=¿9Žü =ü Ë¿ü •Âü P-Ëü è€0 ltt-kconsumerd*Öü md1_raid1OÞü Sàü @<åü Rçü Ý@ñü Ýóü ö@õü gøü °Ä@ ÿÿÿÿÿÿÿÿ¦ý ltt-kconsumerd2³»Ñ%™M Eý ltt-kconsumerd2kworker/0:1#ð/¡!u/¡"ú/¡®›/¡md1_raid1xë /¡kworker/0:1md1_raid13f§/¡€ò}x€80 -ñ©/¡€ò}xmd1_raid1.°/¡€ò}xmd1_raid10Þ³/¡md1_raid13Áµ/¡€ò}x€80 -¸/¡€ò}xmd1_raid1.E¼/¡€ò}xmd1_raid1'ìÀ/¡€ò}xmd1_raid11Æ/¡md1_raid1(åÊ/¡€ò}xmd1_raid1'Ú/¡€ò}xmd1_raid11&Þ/¡md1_raid1(ñß/¡€ò}xmd1_raid1ní/¡md1_raid1§RÕ|ùL ´õ/¡md1_raid1kworker/0:1#}îa¡#%òa¡!ˆõa¡"Ô÷a¡!åøa¡"þa¡#”¡!BΔ¡"ËÏ”¡D€•¡md1_raid1xE…•¡kworker/0:1md1_raid13ÝŒ•¡€Jx€‚0 -&•¡€Jxmd1_raid1.ò••¡€Jxmd1_raid10㘕¡md1_raid13€›•¡€Jx€‚0 -À•¡€Jxmd1_raid1.墕¡€Jxmd1_raid1'µ¨•¡€Jxmd1_raid11µ®•¡md1_raid1(鳕¡€Jxmd1_raid1'…Õ¡€Jxmd1_raid11;È•¡md1_raid1(2Ë•¡€Jxmd1_raid1Ú•¡md1_raid1.\ÙùL õå•¡md1_raid1kworker/0:1#“©Ç¡#ó¬Ç¡!˜°Ç¡"n³Ç¡!y´Ç¡"G¹Ç¡#á}ú¡!ʉú¡"Œú¡#)Y-¢#c-¢!fe-¢"àf-¢!!h-¢"•l-¢#•4`¢!-B`¢"ÔC`¢U ¢uhci_hcd:usb4 G¢—¢eth0#Ú¢ å¢!a¢÷:¢sshdf( @¢sshdf(x"ÉJ¢þN¢kworker/0:1sshdf(ãi¢º¢ Eªª2¦Ä¢sshdf(†…QÎøL LÇ¢kworker/2:1QxBË¢sshdf(xÊТ…Ö¢@ù¨ª2 ù¨ª2Tà¢sshdf(±êøL óã¢sshdf(kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽÌø¢È7Zýý¢È7Ð€Ìø¢kworker/2:1Qi:#âL Ü¢kworker/2:1Qkworker/0:1qv’¢sshdf(xb|’¢kworker/0:1sshdf(v’¢’’¢𢴀ÿp£´€ÿ&”’¢–’¢p£´€ÿ’—’¢š’¢àb´€ÿ@X¤’¢&»’¢@ù¨ª2 ù¨ª2BÂ’¢Ä’¢𢴀ÿp£´€ÿ>Æ’¢È’¢p£´€ÿÉ’¢%Í’¢‹¨ª2P­ê’¢P2ð’¢@ù¨ª2 ù¨ª2ˆú’¢sshdf(p†rpùL Á“¢sshdf(kworker/0:1#†“¢#ó“¢!¹#“¢"'4“¢!25“¢":“¢1ü“¢md1_raid1xû”¢kworker/0:1md1_raid13@ ”¢€ª}x€ð€0 -Ý ”¢€ª}xmd1_raid1.€”¢€ª}xmd1_raid10'”¢md1_raid13®”¢€ª}x€ð€0 -ô ”¢€ª}xmd1_raid1.=%”¢€ª}xmd1_raid1'+”¢€ª}xmd1_raid11—1”¢md1_raid1(7”¢€ª}xmd1_raid1'D”¢€ª}xmd1_raid11I”¢md1_raid1(sL”¢€ª}xmd1_raid1úX”¢md1_raid1=_@8úL Ýc”¢md1_raid1kworker/0:1ö}”¢md1_raid1xè‚”¢kworker/0:1md1_raid131‹”¢€Ê~x€‚0 -}”¢€Ê~xmd1_raid1.””¢€Ê~xmd1_raid10j—”¢md1_raid13C𔢀Ê~x€‚0 -Dœ”¢€Ê~xmd1_raid1.¸ ”¢€Ê~xmd1_raid1'Ë¥”¢€Ê~xmd1_raid11ª”¢md1_raid1(´­”¢€Ê~xmd1_raid1'ì·”¢€Ê~xmd1_raid11a»”¢md1_raid1(¤½”¢€Ê~xmd1_raid1ÌÈ”¢md1_raid1MD…úL  Ð”¢md1_raid1kworker/0:1#ñÅ¢!þÅ¢"«Æ¢ë‰Æ¢md1_raid1xÎŽÆ¢kworker/0:1md1_raid13ö–Æ¢€Ò~x€‚0 -i™Æ¢€Ò~xmd1_raid1.áŸÆ¢€Ò~xmd1_raid10£Æ¢md1_raid13M¦Æ¢€Ò~x€‚0 -“¨Æ¢€Ò~xmd1_raid1.R­Æ¢€Ò~xmd1_raid1'}²Æ¢€Ò~xmd1_raid11]·Æ¢md1_raid1(»Æ¢€Ò~xmd1_raid1'ÖÈÆ¢€Ò~xmd1_raid11ÏÌÆ¢md1_raid1(ÏÆ¢€Ò~xmd1_raid1ÝÆ¢md1_raid1bU¦ÚúL 𿯢md1_raid1kworker/0:1#yÕø¢#KÙø¢!!Üø¢"9ßø¢!Dàø¢"åø¢.ù¢md1_raid1xÓù¢kworker/0:1md1_raid13]™ù¢€úx€@ƒ0 -£›ù¢€úxmd1_raid1.¡ù¢€úxmd1_raid10¤ù¢md1_raid13Ò¥ù¢€úx€@ƒ0 -î§ù¢€úxmd1_raid1.«ù¢€úxmd1_raid1'§¯ù¢€úxmd1_raid11гù¢md1_raid1(·ù¢€úxmd1_raid1'ÓÂù¢€úxmd1_raid11oÆù¢md1_raid1(Èù¢€úxmd1_raid1 Óù¢md1_raid1‚D(ûL £Úù¢md1_raid1kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽüý¢È7„û§È7¸€üý¢ahci#Ëþ¢ „ þ¢õ þ¢uhci_hcd:usb3 «þ¢ïþ¢eth1 “þ¢!Bþ¢&Tþ¢€úx*+,þ¢kworker/2:1Qx"5þ¢„9þ¢kworker/0:1kworker/2:1Q;@þ¢kworker/2:1Q F8âL  Gþ¢kworker/2:1Qkworker/0:1#¯ª+£!¬¶+£ðº+£ltt-kconsumerd2×¾+£ltt-kconsumerd2x"£Â+£)Ç+£kworker/0:1ltt-kconsumerd2 Ý+£â+£ö†å+£iç+£ö€@ŽK=¿øè+£Së+£HŽK=¿üó+£$ö+£Ï&,£),£p-í2,£ø€0 ltt-kconsumerd©=,£md1_raid1àE,£#H,£`M,£O,£Ý`ÎZ,£ÝÛ\,£öW_,£Øb,£°Ä@ ÿÿÿÿÿÿÿÿp,£ltt-kconsumerd2Ò±£×™M `y,£ltt-kconsumerd2kworker/0:1#!ˆ^£#?’^£!W•^£"˜^£!™^£"ž^£#gb‘£!Ól‘£"n‘£#;?Ä£!èIÄ£"gLÄ£òüÄ£md1_raid1xçÅ£kworker/0:1md1_raid13Å£€€x€Hƒ0 -¹ Å£€€xmd1_raid1. Å£€€xmd1_raid10£Å£md1_raid13‰Å£€€x€Hƒ0 -¨Å£€€xmd1_raid1.>Å£€€xmd1_raid1'å Å£€€xmd1_raid11ø%Å£md1_raid1(**Å£€€xmd1_raid1'9Å£€€xmd1_raid11~<Å£md1_raid1(:>Å£€€xmd1_raid1úJÅ£md1_raid1YONÁüL SÅ£md1_raid1kworker/0:1#¹%÷£#)÷£!R,÷£"Œ.÷£!‘/÷£"d5÷£#ù*¤!î*¤"‰*¤#óÞ\¤#°â\¤!Þä\¤"pæ\¤!]ç\¤"ûë\¤#¹±¤!5½¤"뾤#€ŽÂ¤#ý™Â¤!µœÂ¤"! Â¤!¡Â¤"…¥Â¤#Wkõ¤!Âyõ¤"r{õ¤#´R(¥#cX(¥!LZ(¥"#\(¥!%](¥"¸`(¥#¤-[¥!ÿ2[¥"4[¥#XŽ¥#Ž¥!QŽ¥"òŽ¥!⎥"ÞŽ¥#²ÞÀ¥!”îÀ¥"ðÀ¥#T»ó¥#6Çó¥! Éó¥"¥Êó¥!’Ëó¥"‚Ïó¥#Y£&¦!·¨&¦"[ª&¦#­~Y¦#8Y¦!ƒY¦"ø„Y¦!ú…Y¦"ð‰Y¦#RŒ¦!+`Œ¦"ÌaŒ¦#þ0¿¦#õ9¿¦!<¿¦"š=¿¦!‡>¿¦"’B¿¦#l ò¦!Vò¦"îò¦#yé$§#&õ$§!Æ÷$§"Cù$§!0ú$§"2þ$§#fÅW§!nÓW§"!ÕW§#8¢Š§#诊§!ױЧ"¢³Š§!¤´Š§"¹Š§pt‹§md1_raid1xzy‹§kworker/0:1md1_raid13ž‚‹§€~x€X0 -Ò„‹§€~xmd1_raid1.Œ‹‹§€~xmd1_raid10øŽ‹§md1_raid13Α‹§€~x€X0 - ”‹§€~xmd1_raid1."˜‹§€~xmd1_raid1'‹§€~xmd1_raid11£‹§md1_raid1(ô§‹§€~xmd1_raid1'´‹§€~xmd1_raid11Ÿ‹§md1_raid1(1¼‹§€~xmd1_raid1¥É‹§md1_raid1ÃWýL ŠÕ‹§md1_raid1kworker/0:1"ܧahci#Íå§ †ç§'é§uhci_hcd:usb3 Èí§ï§eth1 ×ó§!†ö§ÁüÁõ©‹à‡îØF²ÿbÊ™HŽú§È7x¬È7`€&ú§€~x*+§kworker/2:1Qx"š§É§kworker/0:1kworker/2:1QÞ"§kworker/2:1Q¬OÑâL *§kworker/2:1Qkworker/0:1#ˆ€½§!ÎŒ½§Ó“½§ltt-kconsumerd2_˜½§ltt-kconsumerd2x"ñœ½§- ½§kworker/0:1ltt-kconsumerd2“ʽ§gϽ§öÒ½§ÕÓ½§ö€@ŽK=¿Õ½§üÖ½§HŽK=¿Âã½§Ÿå½§€"¾§5%¾§€-ÿ-¾§Àƒ0 ltt-kconsumerdÃ9¾§md1_raid1B¾§…D¾§pžI¾§lK¾§Ýp7U¾§Ý2W¾§ö{Y¾§A]¾§°Ä@ ÿÿÿÿÿÿÿÿõi¾§ltt-kconsumerd2QÒô©šM âs¾§ltt-kconsumerd2kworker/0:1#®fð§#dkð§!ënð§"”qð§!“rð§"µwð§òð§md1_raid1x"÷ð§kworker/0:1md1_raid13þüð§€ €x€Pƒ0 -tÿð§€ €xmd1_raid1.ïñ§€ €xmd1_raid10m ñ§md1_raid13; ñ§€ €x€Pƒ0 -? ñ§€ €xmd1_raid1.Æñ§€ €xmd1_raid1'(ñ§€ €xmd1_raid11ñ§md1_raid1(Oñ§€ €xmd1_raid1'Ä-ñ§€ €xmd1_raid11r1ñ§md1_raid1(73ñ§€ €xmd1_raid1N@ñ§md1_raid1nO‚…þL ‹Hñ§md1_raid1kworker/0:1#VA#¨!ãG#¨",J#¨#•V¨!¥#V¨":%V¨#§ýˆ¨#.‰¨!‰¨"¦‰¨!–‰¨"! ‰¨#ÈÑ»¨!Ý»¨"°Þ»¨#ƒ¶î¨#mºî¨!‰¼î¨"r¾î¨!t¿î¨"ZÄî¨#‰”!©!ù™!©"µ›!©#ÑeT©#rT©!ñsT©"ÅuT©!ÖvT©"°{T©# J‡©!P‡©"ŸQ‡©#'º©#¶,º©!«.º©"I0º©!91º©"7º©#üì©!Öí©"­í©#™âª#†æª!±èª":êª!$ëª"8ïª#ѵRª!šÂRª"JÄRª!‘Sªmd1_raid1x–Sªkworker/0:1md1_raid13ΞSª€R~x€˜0 -¡Sª€R~xmd1_raid1.g¨Sª€R~xmd1_raid10g«Sªmd1_raid13I®Sª€R~x€˜0 -°Sª€R~xmd1_raid1.Ž´Sª€R~xmd1_raid1'1ºSª€R~xmd1_raid11 ÀSªmd1_raid1(ÏÄSª€R~xmd1_raid1'ÓSª€R~xmd1_raid11Î×Sªmd1_raid1(ªÚSª€R~xmd1_raid1èSªmd1_raid1»Y=ßþL KôSªmd1_raid1kworker/0:1#6ž…ª#¢…ª!ó¤…ª"§…ª!˜¨…ª"o­…ª#ùy¸ª! ~¸ª"G€¸ª#XLëª#3Yëª!\ëª"¼]ëª!¾^ëª"ábëª#%)«!µ5«"b7«#°Q«!ÿQ«"šQ«# 냫#®ðƒ«!Wóƒ«"ãôƒ«! öƒ«"úƒ«#·¿¶«!z̶«"0ζ«#âžé«#™¬é«!÷®é«"Űé«!DZé«"Hµé«™!¬uhci_hcd:usb4 y&¬Ø'¬eth0#t-¬ y.¬!Ô0¬xP¬sshdf(x"\¬†`¬kworker/0:1sshdf( p¬ýs¬𢴀ÿp£´€ÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽÊv¬È7ëñ¬È7à€Êv¬˜{¬p£´€ÿ`}¬U‚¬àc´€ÿ@\Ь0Ö ¬@ù¨ª2 ù¨ª2®¬±¬𢴀ÿp£´€ÿⲬ¼´¬p£´€ÿ$¶¬Ù¸¬ Eªª2CÁ¬sshdf(¬qâùL Ñìkworker/2:1Qx¾Ç¬sshdf(x:ͬàÒ¬@ù¨ª2 ù¨ª2³Û¬sshdf(ÇåüùL òÞ¬sshdf(kworker/2:1Q{ò¬kworker/2:1QÑÅ¥ãL ‹ý¬kworker/2:1Qkworker/0:1M^¬sshdf(xìd¬kworker/0:1sshdf(w¬ày¬𢴀ÿp£´€ÿí{¬¬}¬p£´€ÿ¬~¬àb´€ÿ@+Œ¬&®Ÿ¬@ù¨ª2 ù¨ª2›¦¬ɨ¬𢴀ÿp£´€ÿ|ª¬>¬¬p£´€ÿ…­¬Ö°¬‹¨ª2PãʬP&Ь@ù¨ª2 ù¨ª2šÚ¬sshdf(«~{úL Çã¬sshdf(kworker/0:1#)ˆ¬!wެ"‰¬Ø[¬md1_raid1xfa¬kworker/0:1md1_raid13Wj¬€‚€x€Èƒ0 -ßl¬€‚€xmd1_raid1._t¬€‚€xmd1_raid10—x¬md1_raid13â{¬€‚€x€Èƒ0 -ì}¬€‚€xmd1_raid1.E‚¬€‚€xmd1_raid1'Ó‡¬€‚€xmd1_raid11lެmd1_raid1(”¬€‚€xmd1_raid1'8¡¬€‚€xmd1_raid11Ó¥¬md1_raid1(µ¨¬€‚€xmd1_raid1ص¬md1_raid1O\Œ;ÿL ÁÀ¬md1_raid1kworker/0:1’ì¬md1_raid1xrñ¬kworker/0:1md1_raid13ýù¬€x€`‚0 -Cü¬€xmd1_raid1.V¬€xmd1_raid10ª¬md1_raid13G¬€x€`‚0 -` ¬€xmd1_raid1.À ¬€xmd1_raid1'p¬€xmd1_raid11ìmd1_raid1(/¬€xmd1_raid1'P%¬€xmd1_raid11Å(¬md1_raid1(«*¬€xmd1_raid1I5¬md1_raid1$K°†ÿL ±<¬md1_raid1kworker/0:1ti¬md1_raid1x±n¬kworker/0:1md1_raid13Ùv¬€Ú~x€ ‚0 -(y¬€Ú~xmd1_raid1.ÿ}¬€Ú~xmd1_raid10G¬md1_raid13ì€Ú~x€ ‚0 -Ù…¬€Ú~xmd1_raid1.Q‰¬€Ú~xmd1_raid1'ެ€Ú~xmd1_raid11‡’¬md1_raid1(º•¬€Ú~xmd1_raid1'¡¬€Ú~xmd1_raid11~¤¬md1_raid1(U¦¬€Ú~xmd1_raid1ä°¬md1_raid1sJ#ÑÿL 4¸¬md1_raid1kworker/0:1@ë¬md1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽGð¬È7®È7p€Gð¬kworker/0:1md1_raid13§ü¬€â~x€(‚0 -ÿþ¬€â~xmd1_raid1.¬€â~xmd1_raid10`¬md1_raid13… ¬€â~x€(‚0 -ž ¬€â~xmd1_raid1.欀â~xmd1_raid1'!¬€â~xmd1_raid11Y¬md1_raid1(¡¬€â~xmd1_raid1'ä%¬€â~xmd1_raid11Y)¬md1_raid1(0+¬€â~xmd1_raid1Ù6¬md1_raid1WNzM ?¬md1_raid1kworker/0:1ʸ0¬md1_raid1xY½0¬kworker/0:1md1_raid13êÂ0¬€€x€Xƒ0 -?Å0¬€€xmd1_raid1..Ê0¬€€xmd1_raid10Í0¬md1_raid13ÕÎ0¬€€x€Xƒ0 -ñÐ0¬€€xmd1_raid1.u×0¬€€xmd1_raid1'zÛ0¬€€xmd1_raid11²ß0¬md1_raid1(ã0¬€€xmd1_raid1'uï0¬€€xmd1_raid11«ò0¬md1_raid1(Íô0¬€€xmd1_raid1ñ1¬md1_raid1¥HhM Î1¬md1_raid1kworker/0:1<.1¬md1_raid1xÅ21¬kworker/0:1md1_raid1381¬€Š€x€Ðƒ0 -f:1¬€Š€xmd1_raid1.ï>1¬€Š€xmd1_raid10¼A1¬md1_raid13ÏC1¬€Š€x€Ðƒ0 -âE1¬€Š€xmd1_raid1.NI1¬€Š€xmd1_raid1'5M1¬€Š€xmd1_raid11sQ1¬md1_raid1(©T1¬€Š€xmd1_raid1'Î_1¬€Š€xmd1_raid11@c1¬md1_raid1(e1¬€Š€xmd1_raid1‚o1¬md1_raid1åAªM ½v1¬md1_raid1kworker/0:1Aâ6¬ahci#Åë6¬ í6¬ï6¬uhci_hcd:usb3 Àó6¬õ6¬eth1 Ìù6¬!{ü6¬&®ÿ6¬€â~x*"7¬#­bO¬#fO¬!OiO¬"§kO¬!©lO¬"¶qO¬#=:‚¬!)B‚¬"ÇC‚¬#µ¬#/µ¬!¢ µ¬"g"µ¬!i#µ¬"S'µ¬#¿ìç¬!büç¬"þç¬*¯è¬md1_raid1x‘´è¬kworker/0:1md1_raid13¼è¬€Rx€˜‚0 -u¾è¬€Rxmd1_raid1.–Ä謀Rxmd1_raid10Èè¬md1_raid13Ë謀Rx€˜‚0 -'Í謀Rxmd1_raid1.)Ñ謀Rxmd1_raid1'BÖ謀Rxmd1_raid11'Üè¬md1_raid1(Ñà謀Rxmd1_raid1'®î謀Rxmd1_raid11"óè¬md1_raid1("ö謀Rxmd1_raid1žé¬md1_raid1ZW^M –é¬md1_raid1kworker/0:1#RÒ­#Â×­!¶Ú­"Ý­!Þ­"±â­#§M­!´´M­"d¶M­#3Œ€­#}€­!„’€­".”€­!0•€­"S™€­#ß_³­!l³­"^n³­#Eæ­#âHæ­!@Kæ­"ðLæ­!ïMæ­"TRæ­#›®!ˆ'®"2)®"à®md1_raid1xœä®kworker/0:1md1_raid13'ꮀ"€x€hƒ0 -g쮀"€xmd1_raid1.ò®€"€xmd1_raid10õ®md1_raid13Õö®€"€x€hƒ0 -ëø®€"€xmd1_raid1.¥ü®€"€xmd1_raid1'Ñ®€"€xmd1_raid11º®md1_raid1(+ ®€"€xmd1_raid1'‘®€"€xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÞ®È7ðcL±È7˜€1Þ®md1_raid1(®€"€xmd1_raid1*®md1_raid1ŽJìKM 2®md1_raid1kworker/0:1?I®ahci# R® ÑS®\U®uhci_hcd:usb3 îY®#[®eth1 Ö_®!jb®&+e®€"€x*Ïu®kworker/2:1Qx"î}®&‚®kworker/0:1kworker/2:1Q\ˆ®kworker/2:1QƒH¹ãL p®kworker/2:1Qkworker/0:1#˜þK®#yL®![L®v L®ltt-kconsumerd2¤L®ltt-kconsumerd2x"sL®!“L®"L®KL®kworker/0:1ltt-kconsumerd2A4L®²8L®ö^;L®M=L®ö€@ŽK=¿Ü>L®AL®HŽK=¿›IL®±KL®ZuL®xL®°-$L®؃0 ltt-kconsumerdÚ‹L®md1_raid1ö“L®–L® 4›L®/L®Ý í¨L®Ý «L®ö@­L® °L®°Ä@ ÿÿÿÿÿÿÿÿ ½L®ltt-kconsumerd2ú­îW›M šÈL®ltt-kconsumerd2kworker/0:1#ÄÝ~®!Áã~®"…æ~®#=±±®#†½±®!~¿±®".Á±®!'±®"‘DZ®#ýŒä®!öšä®"¦œä®#mt¯#Cw¯!Îy¯"K{¯!G|¯"K¯#%HJ¯!¦TJ¯"_VJ¯#r,}¯#š1}¯!˜3}¯"„5}¯!}6}¯"Ü:}¯´ã}¯md1_raid1x©è}¯kworker/0:1md1_raid13Eï}¯€*€x€pƒ0 -ßñ}¯€*€xmd1_raid1.î÷}¯€*€xmd1_raid10Ÿû}¯md1_raid13¬ý}¯€*€x€pƒ0 -Åÿ}¯€*€xmd1_raid1.v~¯€*€xmd1_raid1'~¯€*€xmd1_raid11* ~¯md1_raid1(¡~¯€*€xmd1_raid1'­ ~¯€*€xmd1_raid11$~¯md1_raid1(ð%~¯€*€xmd1_raid1ò2~¯md1_raid1‘PæìM  ;~¯md1_raid1kworker/0:1#x °¯!#°¯"c°¯#9Ýâ¯!ëâ¯"öìâ¯#%ð#áǰ!<ʰ"Å˰!»Ì°"õѰ#í˜H°!n£H°"™¥H°#Q}{°#}{°! „{°"……{°!x†{°"YŠ{°#MX®°!_®°"“`®°#f.á°!õ8á°"Ô;á°#†±#±!u±"û±!î±" ±#çF±!"öF±"Û÷F±HºG±md1_raid1x(¿G±kworker/0:1md1_raid13%ÈG±€ê~x€0‚0 -eÊG±€ê~xmd1_raid1.ÐG±€ê~xmd1_raid10DÓG±md1_raid13/ÖG±€ê~x€0‚0 -3ØG±€ê~xmd1_raid1.ŒÜG±€ê~xmd1_raid1'äáG±€ê~xmd1_raid11xçG±md1_raid1(LìG±€ê~xmd1_raid1'@øG±€ê~xmd1_raid11ÕüG±md1_raid1( H±€ê~xmd1_raid16 H±md1_raid1#U BM ÿH±md1_raid1kworker/0:1JL±ahci#&L± Ø'L±a)L±uhci_hcd:usb3 ð-L±R/L±eth1 4L±!®6L±&½9L±€ê~x*›LL±kworker/2:1Qx"[VL±rZL±kworker/0:1kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽjbL±È7ýð³È7€jbL±kworker/2:1Q)SäL ElL±kworker/2:1Qkworker/0:1#ˆÅy±!DÐy±p×y±ltt-kconsumerd2öÛy±ltt-kconsumerd2x"$áy±Ååy±kworker/0:1ltt-kconsumerd2z±¶z±ökz±Wz±ö€@ŽK=¿Ëz±´z±HŽK=¿ƒ*z±f,z±5rz±#uz±À-¢}z±èƒ0 ltt-kconsumerdu‰z±md1_raid1“’z±Ž”z±°ö˜z±Üšz±Ý°s¥z±Ýn§z±ö®©z±Ò¬z±°Ä@ ÿÿÿÿÿÿÿÿð¸z±ltt-kconsumerd2ÍÝ»5œM ÞÄz±ltt-kconsumerd2kworker/0:1#»¬¬±#Û°¬±!)´¬±" ·¬±!¸¬±";½¬±#kß±!ê‹ß±"‹ß±#AZ²#¡i²!l²"¯m²!±n²"òr²#d8E²!@DE²"kFE²#&x²#­"x²!œ$x²""&x²!'x²"M.x²#Ïðª²!‹þª²"8«²3•«²md1_raid1xXš«²kworker/0:1md1_raid13‹ «²€2€x€xƒ0 - £«²€2€xmd1_raid1.¯©«²€2€xmd1_raid10c­«²md1_raid13v¯«²€2€x€xƒ0 -’±«²€2€xmd1_raid1.Q¶«²€2€xmd1_raid1' »«²€2€xmd1_raid11æÀ«²md1_raid1(GÆ«²€2€xmd1_raid1'çÔ«²€2€xmd1_raid11ÈØ«²md1_raid1(ªÛ«²€2€xmd1_raid1Ä諲md1_raid1œTÀ¿M ñ«²md1_raid1kworker/0:1#¸Ùݲ#Ýݲ!ëßݲ""âݲ!'ãݲ"èݲ{—Þ²md1_raid1x|œÞ²kworker/0:1md1_raid13¥Þ²€~x€`0 -˧޲€~xmd1_raid1.Ä­Þ²€~xmd1_raid10±Þ²md1_raid13´Þ²€~x€`0 -X¶Þ²€~xmd1_raid1.EºÞ²€~xmd1_raid1'$ÀÞ²€~xmd1_raid11ÑÄÞ²md1_raid1(OÈÞ²€~xmd1_raid1'¹ÖÞ²€~xmd1_raid11UÚÞ²md1_raid1( ÜÞ²€~xmd1_raid1£éÞ²md1_raid1`T M ÔôÞ²md1_raid1kworker/0:1# ¬³!^º³"½³éX³md1_raid1xü]³kworker/0:1md1_raid13¥f³€Z~x€ 0 -ôh³€Z~xmd1_raid1.¾n³€Z~xmd1_raid10r³md1_raid13ou³€Z~x€ 0 -pw³€Z~xmd1_raid1.±{³€Z~xmd1_raid1'Ѐ³€Z~xmd1_raid11D…³md1_raid1( ˆ³€Z~xmd1_raid1',–³€Z~xmd1_raid11š³md1_raid1(_œ³€Z~xmd1_raid1ˆ©³md1_raid1ÈRèfM Œ´³md1_raid1kworker/0:1½¬³ahci#ÿµ³ Á·³P¹³uhci_hcd:usb3 ÷½³M¿³eth1 ýó!©Æ³&»É³€Z~x*šÛ³kworker/2:1Qx"Áä³üè³kworker/0:1kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽnï³È7ô楶È78€nï³kworker/2:1QL/åL ßù³kworker/2:1Qkworker/0:1#I’C³#µ•C³!‹˜C³ÛŸC³ltt-kconsumerd2Q¥C³ltt-kconsumerd2x"ªC³!±«C³"m°C³dzC³kworker/0:1ltt-kconsumerd2oÞC³¬ãC³öšæC³˜èC³ö€@ŽK=¿*êC³ìC³HŽK=¿¬øC³†úC³G2D³&5D³Ð-V>D³ðƒ0 ltt-kconsumerdeJD³md1_raid1µTD³¿VD³À“[D³Ä]D³ÝÀ'gD³ÝiD³öhkD³žnD³°Ä@ ÿÿÿÿÿÿÿÿòzD³ltt-kconsumerd2ÔÖ M =„D³ltt-kconsumerd2kworker/0:1#œpv³!×wv³"’zv³#A©³#îL©³!þN©³"ŠP©³!‰Q©³"]V©³#õ ܳ!Ä+ܳ"q-ܳ#»ý´#˜´!ð ´"‘ ´!œ ´"”´_¤´md1_raid1xZ©´kworker/0:1md1_raid13°´€:€x€€ƒ0 -̲´€:€xmd1_raid1.)¹´€:€xmd1_raid10ݼ´md1_raid13þ´€:€x€€ƒ0 -÷À´€:€xmd1_raid1.ÉÄ´€:€xmd1_raid1'+É´€:€xmd1_raid11Ï´md1_raid1(tÔ´€:€xmd1_raid1'/ã´€:€xmd1_raid11Iç´md1_raid1(7ê´€:€xmd1_raid19÷´md1_raid1âSÝM ¾ÿ´md1_raid1kworker/0:1#5ãA´!/éA´"{ëA´#â¼t´#eÁt´!TÃt´"ÝÄt´!ÐÅt´"§Êt´#¼’§´!( §´"¢§´#TxÚ´#|Ú´!~Ú´"•Ú´!ˆ€Ú´"q…Ú´#kS µ!„X µ"Z µ#i1@µ#Ö6@µ!"9@µ"®:@µ!¤;@µ"ë?@µ#Î sµ!†sµ"$sµ#=쥵#Œñ¥µ!uó¥µ"øô¥µ!èõ¥µ"àú¥µ#'¾Øµ!£Êص"SÌØµ#œ ¶#'¦ ¶!d¨ ¶"&ª ¶!‚« ¶"c¯ ¶#Ù>¶!|…>¶"J‡>¶#!]q¶#eaq¶!ücq¶"eq¶!rfq¶"¸kq¶#ð2¤¶!1A¤¶"C¤¶Ò%¥¶md1_raid1xî*¥¶kworker/0:1md1_raid13ß3¥¶€B€x€ˆƒ0 -(6¥¶€B€xmd1_raid1.<¥¶€B€xmd1_raid10…?¥¶md1_raid13IB¥¶€B€x€ˆƒ0 -hD¥¶€B€xmd1_raid1.H¥¶€B€xmd1_raid1'M¥¶€B€xmd1_raid11xR¥¶md1_raid1(ûV¥¶€B€xmd1_raid1' e¥¶€B€xmd1_raid11àh¥¶md1_raid1(kk¥¶€B€xmd1_raid1Cx¥¶md1_raid18UW2M tƒ¥¶md1_raid1kworker/0:1¨¥¶md1_raid1xû¬¥¶kworker/0:1md1_raid13Mµ¥¶€ò~x€8‚0 -Š·¥¶€ò~xmd1_raid1.å¼¥¶€ò~xmd1_raid10À¥¶md1_raid13¬Â¥¶€ò~x€8‚0 -7Å¥¶€ò~xmd1_raid1.È¥¶€ò~xmd1_raid1'Í¥¶€ò~xmd1_raid11gÑ¥¶md1_raid1(©Ô¥¶€ò~xmd1_raid1'°ß¥¶€ò~xmd1_raid11I㥶md1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽn奶È7Y»È7¨€(n奶€ò~xmd1_raid1ó¥¶md1_raid1LM£M ›ú¥¶md1_raid1kworker/0:1|.¦¶md1_raid1xA3¦¶kworker/0:1md1_raid13K;¦¶€ú€x€@„0 -‘=¦¶€ú€xmd1_raid1.‰B¦¶€ú€xmd1_raid10ÝE¦¶md1_raid13ùG¦¶€ú€x€@„0 -J¦¶€ú€xmd1_raid1.?M¦¶€ú€xmd1_raid1'€Q¦¶€ú€xmd1_raid11šU¦¶md1_raid1(ÙX¦¶€ú€xmd1_raid1'ìc¦¶€ú€xmd1_raid11g¦¶md1_raid1(i¦¶€ú€xmd1_raid1>u¦¶md1_raid1óH–ÈM 3}¦¶md1_raid1kworker/0:1!L­¶ahci#™U­¶ [W­¶öX­¶uhci_hcd:usb3 ˆ]­¶í^­¶eth1 ©c­¶!Rf­¶&gi­¶€B€x*"ç|­¶3è²¶md1_raid1xCí²¶kworker/0:1md1_raid13ìò²¶€²€x€øƒ0 ->õ²¶€²€xmd1_raid1.¥ú²¶€²€xmd1_raid10Òý²¶md1_raid13³¶€²€x€øƒ0 -1³¶€²€xmd1_raid1.²³¶€²€xmd1_raid1'Þ ³¶€²€xmd1_raid11=³¶md1_raid1(޳¶€²€xmd1_raid1'E³¶€²€xmd1_raid11Ã!³¶md1_raid1( #³¶€²€xmd1_raid1÷/³¶md1_raid1oHM é7³¶md1_raid1kworker/0:1#‚×¶#´×¶!¿×¶"!×¶!"×¶"ü&×¶#aô ·!ú ·"®û ·#%Ò<·#ÏÖ<·!Ù<·"¡Ú<·!ŽÛ<·"à<·#“§o·!Ͷo·"¼¸o·#¢·#°¢·!2¢·"¾‘¢·!«’¢·"[—¢·#¯_Õ·!_mÕ·"oÕ·#qG¸#OK¸!SM¸"ÐN¸!ÃO¸"ãS¸#?;¸!v$;¸")&;¸#Åõm¸!Ôn¸"·n¸# Ñ ¸#Ká ¸!7ã ¸"öä ¸!øå ¸"«ê ¸‹‚¡¸md1_raid1xw‡¡¸kworker/0:1md1_raid13¸€Zx€ ‚0 -:‘¡¸€Zxmd1_raid1.j—¡¸€Zxmd1_raid10vš¡¸md1_raid13¡¸€Zx€ ‚0 -2Ÿ¡¸€Zxmd1_raid1.£¡¸€Zxmd1_raid1'¨¡¸€Zxmd1_raid11®¡¸md1_raid1(Q³¡¸€Zxmd1_raid1'vÀ¡¸€Zxmd1_raid11íÄ¡¸md1_raid1(ØÇ¡¸€Zxmd1_raid1ŒÔ¡¸md1_raid1-T2eM “ß¡¸md1_raid1kworker/0:1©ì¥¸ahci#ñõ¥¸ ¶÷¥¸3ù¥¸uhci_hcd:usb3 ¼ý¥¸ÿ¥¸eth1 ݦ¸!q¦¸&G ¦¸€Zx*¦¸kworker/2:1Qx"¾"¦¸á&¦¸kworker/0:1kworker/2:1QÞ,¦¸kworker/2:1QÑ`æL Ë3¦¸kworker/2:1Qkworker/0:1#¢¹Ó¸!~¿Ó¸"ëÁÓ¸#Ý’¹#E—¹!:™¹"T¹!Dž¹"_¤¹#wi9¹!0t9¹"Ýu9¹#òOl¹#½Tl¹!'Wl¹"ÎXl¹!ÐYl¹"Œ^l¹#z$Ÿ¹!1Ÿ¹" 2Ÿ¹#Ò¹#ï Ò¹!PÒ¹"Ò¹!üÒ¹"Ò¹#’Ûº!æº"Šéº#ÿÁ7º#ãÅ7º!ÛÇ7º"pÉ7º!`Ê7º"†Î7º#–jº!—¡jº"}£jº#þzº#)€º!!‚º"ûƒº!ý„º"Ɉº#Qк!!_к"Â`к#ß4»#»:»!©=»"t?»!s@»"`D»°þ»md1_raid1xŸ»kworker/0:1md1_raid139 »€ºx€ƒ0 -»€ºxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽñ»È7j4¼È7Ø€.ñ»€ºxmd1_raid10*»md1_raid13“»€ºx€ƒ0 -² »€ºxmd1_raid1.ù$»€ºxmd1_raid1'‰.»€ºxmd1_raid114»md1_raid1(ˆ8»€ºxmd1_raid1'yD»€ºxmd1_raid11íH»md1_raid1(•L»€ºxmd1_raid1ìX»md1_raid1”\ÆÁM Jd»md1_raid1kworker/0:1æ—»md1_raid1xŸœ»kworker/0:1md1_raid13£¤»€º€x€„0 -榻€º€xmd1_raid1.;¬»€º€xmd1_raid10E°»md1_raid13ú²»€º€x€„0 -µ»€º€xmd1_raid1.¬¸»€º€xmd1_raid1';½»€º€xmd1_raid11ÜÁ»md1_raid1(EÅ»€º€xmd1_raid1'^л€º€xmd1_raid11ßÓ»md1_raid1(ËÕ»€º€xmd1_raid1á»md1_raid1ZK M ëè»md1_raid1kworker/0:1#` 6»!Ò6»"ð6»ÔÝ6»md1_raid1xlâ6»kworker/0:1md1_raid13Zè6»€J€x€ƒ0 -—ê6»€J€xmd1_raid1.ûï6»€J€xmd1_raid10ìò6»md1_raid13Ûô6»€J€x€ƒ0 -ôö6»€J€xmd1_raid1.ðú6»€J€xmd1_raid1'ÿ6»€J€xmd1_raid11`7»md1_raid1(À7»€J€xmd1_raid1'‚7»€J€xmd1_raid117»md1_raid1(à7»€J€xmd1_raid1‹&7»md1_raid1§IÇV M  .7»md1_raid1kworker/0:1#ñh»#Bôh»!÷h»"Lùh»!Wúh»"ÿh»¿¯i»md1_raid1xÀ´i»kworker/0:1md1_raid13¿»i»€"x€h‚0 -ó½i»€"xmd1_raid1.)Äi»€"xmd1_raid10&Çi»md1_raid13/Êi»€"x€h‚0 -HÌi»€"xmd1_raid1.Ði»€"xmd1_raid1'êÔi»€"xmd1_raid11UÙi»md1_raid1(²Üi»€"xmd1_raid1'ðéi»€"xmd1_raid11¹íi»md1_raid1(“ïi»€"xmd1_raid1Ÿûi»md1_raid1ÙM ¤ M °j»md1_raid1kworker/0:1óm»ahci#"üm» Òým»Cÿm»uhci_hcd:usb3 Æn»ûn»eth1 ¥ n»!H n»&n»€"x* n»kworker/2:1Qx"A(n»m,n»kworker/0:1kworker/2:1Q 2n»kworker/2:1QöVæL 39n»kworker/2:1Qkworker/0:1#†Í›»!yÔ›»"­Ö›»#·§Î»# «Î»!å¬Î»"´°Î»!¡±Î»"öλ#Þ{¼!zˆ¼"HмN¼md1_raid1x²R¼kworker/0:1md1_raid13²[¼€b~x€¨0 -^¼€b~xmd1_raid1.ãc¼€b~xmd1_raid10Cg¼md1_raid13j¼€b~x€¨0 -l¼€b~xmd1_raid1.xp¼€b~xmd1_raid1'¬u¼€b~xmd1_raid11¼z¼md1_raid1(!¼€b~xmd1_raid1'=м€b~xmd1_raid11ºŽ¼md1_raid1(Û‘¼€b~xmd1_raid1˜ž¼md1_raid1‰R)÷ M p¨¼md1_raid1kworker/0:1#Üc4¼ÁüÁõ©‹à‡îØF²ÿbÊ™HŽƒh4¼È7 †.ÀÈ7À€#ƒh4¼!În4¼v4¼ltt-kconsumerd2ë{4¼ltt-kconsumerd2x"û€4¼!*‚4¼"‡4¼—Š4¼kworker/0:1ltt-kconsumerd2°³4¼Þ¸4¼öP¼4¼'¾4¼ö€@ŽK=¿¤¿4¼ÏÁ4¼HŽK=¿†Î4¼oÐ4¼Ä5¼y5¼-d5¼„0 ltt-kconsumerdù'5¼md1_raid1½05¼Ä25¼ð75¼*95¼Ýð‰C5¼Ý‡E5¼öÍG5¼K5¼°Ä@ ÿÿÿÿÿÿÿÿ½W5¼ltt-kconsumerd2gÝöéM d5¼ltt-kconsumerd2kworker/0:1#DAg¼!,Gg¼"ZIg¼?Þg¼md1_raid1x…ãg¼kworker/0:1md1_raid13Qêg¼€R€x€˜ƒ0 -íg¼€R€xmd1_raid1.óg¼€R€xmd1_raid10Æög¼md1_raid13¸øg¼€R€x€˜ƒ0 -ûg¼€R€xmd1_raid1.ÿg¼€R€xmd1_raid1'‰h¼€R€xmd1_raid11–h¼md1_raid1(Å h¼€R€xmd1_raid1'=h¼€R€xmd1_raid11Óh¼md1_raid1(¡!h¼€R€xmd1_raid1/h¼md1_raid1±Q¤w M F7h¼md1_raid1kworker/0:1# š¼#Ó š¼!N$š¼"‘&š¼!¢'š¼"c-š¼#÷øÌ¼! þ̼"Jͼ#Ôÿ¼#Ùÿ¼!SÛÿ¼"ôÜÿ¼!ðÝÿ¼"Çâÿ¼#$«2½!8¹2½"к2½*x9½ahci ·{9½=}9½uhci_hcd:usb3 Þ9½mƒ9½eth1#^‰9½ WŠ9½!—Œ9½"–9½#‡e½#çe½!“’e½"¾”e½!É•e½"še½#¯e˜½!lr˜½"t˜½#È?˽##L˽!N˽"P˽!ZQ˽"^V˽R̽md1_raid1xÔ̽kworker/0:1md1_raid13ï̽€"~x€h0 -n ̽€"~xmd1_raid1.Ñ&̽€"~xmd1_raid10"*̽md1_raid13‹-̽€"~x€h0 -×/̽€"~xmd1_raid1.*4̽€"~xmd1_raid1'@9̽€"~xmd1_raid11 ?̽md1_raid1(D̽€"~xmd1_raid1'›P̽€"~xmd1_raid11HU̽md1_raid1(X̽€"~xmd1_raid1že̽md1_raid1kXÐ M Gq̽md1_raid1kworker/0:1#“þ½!h*þ½"Y-þ½#5ù0¾#u1¾!v1¾¥ 1¾kworker/2:1Qx"Î1¾!ñ1¾"ä1¾1¾kworker/0:1kworker/2:1Qx(1¾kworker/2:1Q´ªíæL ¤21¾kworker/2:1Qkworker/0:1#ßc¾!mäc¾"bæc¾#:¼–¾#ñ¿–¾!L–¾"óÖ¾!õÄ–¾"_Ê–¾#®‘ɾ! É¾"þ¡É¾#elü¾#Ïwü¾!Tzü¾"þ{ü¾!}ü¾"Åü¾##Q/¿!BV/¿"ÝW/¿#w/b¿#£3b¿!û5b¿"€8b¿!‚9b¿"µ?b¿#Ÿ•¿!•¿"Õ¿#:éÇ¿#íÇ¿!µïÇ¿"qñÇ¿!sòÇ¿"KöÇ¿#-Èú¿!{Îú¿"Ðú¿#~™-À#9¦-À!©-À"˜ª-À!Ç«-À"ü¯-À‘g.Àmd1_raid1xm.Àkworker/0:1md1_raid13Ùv.À€x€H„0 -ay.À€xmd1_raid1.Ÿ€.À€xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ˜„.ÀÈ7µõ>ÀÈ7ø~€0˜„.Àmd1_raid13;Š.À€x€H„0 -BŒ.À€xmd1_raid1.#.À€xmd1_raid1'9•.À€xmd1_raid11jš.Àmd1_raid1(Ÿ.À€xmd1_raid1'`­.À€xmd1_raid11Ô±.Àmd1_raid1(_´.À€xmd1_raid1ÃÂ.Àmd1_raid1Ÿ]®- M ‰Ì.Àmd1_raid1kworker/0:1?à.Àmd1_raid1x%å.Àkworker/0:1md1_raid13/í.À€Âx€ƒ0 -Tï.À€Âxmd1_raid1.mô.À€Âxmd1_raid10š÷.Àmd1_raid13(ú.À€Âx€ƒ0 -)ü.À€Âxmd1_raid1.•ÿ.À€Âxmd1_raid1'$/À€Âxmd1_raid11Î/Àmd1_raid1(O /À€Âxmd1_raid1'9/À€Âxmd1_raid11 /Àmd1_raid1(3"/À€Âxmd1_raid1"-/Àmd1_raid1\O } M ¨4/Àmd1_raid1kworker/0:1è€/Àmd1_raid1x’…/Àkworker/0:1md1_raid13]/À€Ê€x€„0 -—/À€Ê€xmd1_raid1.)”/À€Ê€xmd1_raid10L˜/Àmd1_raid13ך/À€Ê€x€„0 -Øœ/À€Ê€xmd1_raid1.€ /À€Ê€xmd1_raid1'0¥/À€Ê€xmd1_raid112©/Àmd1_raid1(k¬/À€Ê€xmd1_raid1'Z·/À€Ê€xmd1_raid11½º/Àmd1_raid1(Á¼/À€Ê€xmd1_raid1¿Ç/Àmd1_raid1AIKÆ M ¾Î/Àmd1_raid1kworker/0:1=ø/Àmd1_raid1xÃü/Àkworker/0:1md1_raid13î0À€Êx€ƒ0 -=0À€Êxmd1_raid1., 0À€Êxmd1_raid10b0Àmd1_raid13~0À€Êx€ƒ0 -š0À€Êxmd1_raid1.å0À€Êxmd1_raid1'0À€Êxmd1_raid11R0Àmd1_raid1(‚"0À€Êxmd1_raid1'~,0À€Êxmd1_raid11ö/0Àmd1_raid1(Ó10À€Êxmd1_raid1,<0Àmd1_raid1F_ M D0Àmd1_raid1kworker/0:1ÎÌ=Àahci#ÇÖ=À €Ø=ÀÚ=Àuhci_hcd:usb3 §Þ=Àà=Àeth1 ×ä=À!ç=À&dë=À€Âx*!þ=Àltt-kconsumerd2€>Àltt-kconsumerd2x"Y>À‚>Àkworker/0:1ltt-kconsumerd2Â,>ÀI0>ÀÝ1?>ÀÝMA>ÀöàF>ÀAL>À°Ä@ ÿÿÿÿÿÿÿÿ<`>Àåb>À!ö­j>À„l>À!ö€@ŽK=¿Åm>À¨o>À!HŽK=¿ƒ|>ÀÆ~>À";»>À¾>À"0-áÆ>À ƒ0 ltt-kconsumerd«Ò>Àmd1_raid1ëÚ>ÀøÜ>À" ëà>ÀÚâ>ÀÝ" í>ÀÝ ï>À!öYñ>ÀÁüÁõ©‹à‡îØF²ÿbÊ™HŽtô>ÀÈ7U×'ÄÈ7À~€tô>À°Ä@ ÿÿÿÿÿÿÿÿÎ?À ?ÀöÕ?À”?Àö€@ŽK=¿Þ?À÷ ?ÀHŽK=¿e?ÀQ?ÀæE?ÀH?À -÷O?À„0 ltt-kconsumerdb?Àd?ÀÃh?Àltt-kconsumerd2ÝfÓPŸM 8r?Àltt-kconsumerd2kworker/0:1^PÀahci#þ#PÀ Ï%PÀ['PÀuhci_hcd:usb3 ç+PÀX-PÀeth1 ü1PÀ!É4PÀ&Y8PÀ€Ò€x*hPPÀkworker/2:1Qx"Q[PÀû_PÀkworker/0:1kworker/2:1Q£fPÀkworker/2:1QCMèL ,nPÀkworker/2:1Qkworker/0:1#J`À!w‡`À" Š`À#@S“À#Õ]“À!º`“À"Ëd“À!Êe“À"ÿl“À#‹1ÆÀ!>ÆÀ"½?ÆÀ#µ ùÀ#vùÀ!ÔùÀ"‡ùÀ!}ùÀ"#ùÀ#é+Á!tö+Á"Qø+Á#yÈ^Á#%Õ^Á!Î×^Á"¢Ù^Á!­Ú^Á"fß^Á#Ö£‘Á!ý°‘Á"°²‘Á#D€ÄÁ#ãŒÄÁ!üŽÄÁ"‘ÄÁ!‡‘ÄÁ"õ•ÄÁ#]÷Á!ôj÷Á"l÷Á#´A*Â#UF*Â!SH*Â"J*Â!óJ*Â"ÅN*Â#"]Â!ç%]Â"š']Â#µüÂ#<Â!IÂ"ÛÂ!ÎÂ"ü Â#IÐÂÂ!áÛÂÂ"»ÝÂÂ#­õÂ#¼·õÂ!±¹õÂ"1»õÂ!*¼õÂ"hÀõÂ#܉(Ã!%›(Ã"½œ(Ã#Öf[Ã#Òs[Ã!åu[Ã"§w[Ã!¯x[Ã"}[Ã#-EŽÃ!ÇQŽÃ"XTŽÃ'üŽÃmd1_raid1x³Ãkworker/0:1md1_raid13=Àb€x€¨ƒ0 -ΠÀb€xmd1_raid1.øÀb€xmd1_raid10¾Ãmd1_raid13àÀb€x€¨ƒ0 -Àb€xmd1_raid1.•Àb€xmd1_raid1'T Àb€xmd1_raid11O%Ãmd1_raid1()Àb€xmd1_raid1'¿6Àb€xmd1_raid11L:Ãmd1_raid1(<Àb€xmd1_raid1HÃmd1_raid1­L:bM ™PÃmd1_raid1kworker/0:1#0*ÁÃ#Ï-ÁÃ!%2ÁÃ"P4ÁÃ!^5ÁÃ"t:ÁÃ#'ôÃ!¦ ôÃ"AôÃÛÔôÃmd1_raid1x²ÙôÃkworker/0:1md1_raid13ßâôÀj~x€°0 -=åôÀj~xmd1_raid1.pëôÀj~xmd1_raid10ÓîôÃmd1_raid13”ñôÀj~x€°0 -­óôÀj~xmd1_raid1.ü÷ôÀj~xmd1_raid1'ýôÀj~xmd1_raid11 õÃmd1_raid1(þõÀj~xmd1_raid1'õÀj~xmd1_raid11âõÃmd1_raid1(ÜõÀj~xmd1_raid1*-õÃmd1_raid1cZ¼M \7õÃmd1_raid1kworker/0:1# Ü&Ä#Ãé&Ä!í&Ä"·ï&Ä!Èð&Ä"rõ&Ä’'Ämd1_raid1x—'Äkworker/0:1md1_raid13ÇŸ'Ä€Òx€ƒ0 -¢'Ä€Òxmd1_raid1. ¨'Ä€Òxmd1_raid10R«'Ämd1_raid13@®'Ä€Òx€ƒ0 -S°'Ä€Òxmd1_raid1.ˆ´'Ä€Òxmd1_raid1'¹'Ä€Òxmd1_raid11E¾'Ämd1_raid1(äÁ'Ä€Òxmd1_raid1'-Ð'Ä€Òxmd1_raid11Ó'Ämd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÕÕ'ÄÈ7T'£ÉÈ7ˆ~€(ÕÕ'Ä€Òxmd1_raid1£æ'Ämd1_raid1ëVˆM ‰ñ'Ämd1_raid1kworker/0:1#ÀYÄ!ÔÅYÄ9ÍYÄltt-kconsumerd2ÇÒYÄltt-kconsumerd2x"Î×YÄ=ÛYÄkworker/0:1ltt-kconsumerd2òZÄç ZÄö– ZÄaZÄö€@ŽK=¿ÆZĵZÄHŽK=¿´ZĬ ZÄkXZÄ)[ZÄ0-rcZÄ „0 ltt-kconsumerd—pZÄmd1_raid1yZÄ {ZÄ €ZÄÝZÄÝ NŒZÄÝdŽZÄöªZÄì“ZİÄ@ ÿÿÿÿÿÿÿÿÏ›ZÄ0žZÄ!ös²ZÄ/´ZÄ!ö€@ŽK=¿µZÄq·ZÄ!HŽK=¿;ZÄ¡ÀZÄ"éZÄ—ëZÄ"P-ìóZ݃0 ltt-kconsumerd*[Äp[Ä"@ [ÄC [ÄÝ"@¯[ÄÝ’[Ä!öÕ[Ä[İÄ@ ÿÿÿÿÿÿÿÿ)[Ältt-kconsumerd2;W¨ M h2[Ältt-kconsumerd2kworker/0:1€D`Äahci#ÁN`Ä tP`ÄÙQ`Äuhci_hcd:usb3 nV`ÄÇW`Äeth1 q\`Ä!>_`Ä&Ic`Ä€Ú€x*"ét`Ä#ŸŒÄ#梌Ä!O¦ŒÄ"¶¨ŒÄ!¦©ŒÄ"(¯ŒÄ#òy¿Ä!¤¿Ä"N¿Ä#¦OòÄ#ZòÄ!|\òÄ"^òÄ!_òÄ"dòÄ#ù,%Å!T8%Å"þ9%Å#XÅ#¬XÅ!FXÅ"XÅ!òXÅ"*XÅ#6çŠÅ!õòŠÅ"¥ôŠÅ#l½Å# ̽Å!¬Î½Å"¡Ð½Å!‘ѽÅ"ÛÕ½Å#„ðÅ!«ðÅ"±¬ðÅ#s|#Æ#ü†#Æ!‰#Æ""‹#Æ!Œ#Æ"M#Æ#$XVÆ!ÜaVÆ"dVÆ#6‰Æ#ËA‰Æ! D‰Æ"ÜE‰Æ!ÉF‰Æ"¤J‰Æ#X¼Æ!?¼Æ"鼯#¬øîÆ#ÒüîÆ!ÊþîÆ"MïÆ!=ïÆ"WïÆ#Ô!Ç!:Ù!Ç"êÚ!Ç#:§TÇ#I³TÇ!¡µTÇ"*·TÇ!¸TÇ"¼TÇ#ý„‡Ç!d‡Ç"q’‡Çï[’Çahci#if’Ç Ih’ÇÉi’Çuhci_hcd:usb3 Fn’Ç„o’Çeth1 Ft’Ç!Dv’Ç&5y’Ç€r€x*ÍŒ’Çkworker/2:1Qx"ë•’Çnš’Çkworker/0:1kworker/2:1Qà ’Çkworker/2:1QÛé¢éL {¨’Çkworker/2:1Qkworker/0:1#™cºÇ#›nºÇ!˜qºÇ" tºÇ!uºÇ"®yºÇ#é@íÇ!bLíÇ"¦PíÇ#‰ È#@% È!´) È"[+ È!E, È"}0 È#ÏSÈ!gSÈ"#SÈ#Ô…È#†à…È!áâ…È"Ää…È!Æå…È"Ýé…È#m¹¸È!ú¿¸È"¶Á¸È#ýëÈ#ƒ›ëÈ!{ëÈ"CŸëÈ!E ëÈ"&¤ëÈ#¾jÉ!¼uÉ">xÉ#úHQÉ#·SQÉ!HVQÉ" XQÉ!YQÉ"V]QÉ#—$„É!b2„É"Q4„É#£Éapache2Q xŸ£Ékworker/0:1apache2Q ʣɡ£É=ÿÿÿÿÿÿÿÿ¬—„ÿ(À=äà Ÿ£Éapache2Ô"£É=ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÈ%£ÉÈ7Ë€PÍÈ7`€È%£Éà—„ÿÜ/£Éapache2Q ‚/¼éL ";£Éapache2Q kworker/0:1# ·É#%·É!Ú·ÉH·Éltt-kconsumerd2*·Éltt-kconsumerd2x"#·É!K$·É"R)·Éè,·Ékworker/0:1ltt-kconsumerd2#X·ÉØ]·Éö®`·Éb·Éö€@ŽK=¿d·É*f·ÉHŽK=¿êr·É÷t·É·«·ÉW®·É@-ú¶·É(„0 ltt-kconsumerdÀÉ·ÉâË·É0#зÉ-Ò·ÉÝ0›Ü·ÉÝ·Þ·Éöá·ÉÕä·É°Ä@ ÿÿÿÿÿÿÿÿñ·Éltt-kconsumerd2ûÓ |¡M :û·Éltt-kconsumerd2kworker/0:1#BàéÉ!2îéÉ"™ðéÉúˆêÉmd1_raid1xûêÉkworker/0:1md1_raid13|”êÉ€úx€@…0 -+—êÉ€úxmd1_raid1.ÇêÉ€úxmd1_raid10‡¡êÉmd1_raid13¾£êÉ€úx€@…0 -×¥êÉ€úxmd1_raid1.Ö©êÉ€úxmd1_raid1'ƒ®êÉ€úxmd1_raid11Ÿ³êÉmd1_raid1(¹·êÉ€úxmd1_raid1'þÆêÉ€úxmd1_raid11dÊêÉmd1_raid1(ÌêÉ€úxmd1_raid1:ÙêÉmd1_raid1Q¯ÏM dáêÉmd1_raid1kworker/0:1#MÆÊ#æÉÊ!IÍÊ"¶ÏÊ!ÊÐÊ"CÖÊ#ø OÊ!©OÊ"÷ªOÊ#Hv‚Ê#È€‚Ê!’ƒ‚Ê"Z…‚Ê!n†‚Ê"”Š‚Ê#ÕTµÊ!ñ`µÊ"¡bµÊ#/èÊ#å6èÊ!ˆ;èÊ"=èÊ!û=èÊ"ëAèÊ#¦ Ë!ÆË" Ë#ùòMË#R÷MË!hùMË" ûMË!üMË"•ÿMË#¿Î€Ë!Ó€Ë"+Õ€Ë#‡¡³Ë!ä°³Ë"…²³Ë#­‹æË#…æË!\‘æË"3“æË!>”æË"˜æË#a[Ì!NiÌ"kÌ# :LÌ#íELÌ!ØGLÌ"[ILÌ!QJLÌ"LOLÌ#õÌ!£!Ì"€#Ì#Šó±Ì!×þ±Ì"u²Ì#õÖäÌ#‡ÛäÌ!”ÝäÌ"žßäÌ!‘àäÌ"óääÌ#U«Í!ߺÍ"¼¼Í#@ˆJÍ#"•JÍ!—JÍ" ™JÍ!šJÍ"žJÍîcKÍmd1_raid1x iKÍkworker/0:1md1_raid13ÂqKÍ€r~x€¸0 -ùsKÍ€r~xmd1_raid1.Ž{KÍ€r~xmd1_raid10¦~KÍmd1_raid13LKÍ€r~x€¸0 -•ƒKÍ€r~xmd1_raid1.Ó‡KÍ€r~xmd1_raid1'æŒKÍ€r~xmd1_raid11.“KÍmd1_raid1(#˜KÍ€r~xmd1_raid1'Ù¥KÍ€r~xmd1_raid11qªKÍmd1_raid1(e­KÍ€r~xmd1_raid1¬ºKÍmd1_raid1éX˜(M žÅKÍmd1_raid1kworker/0:1ÂüOÍahci#PÍ ú PÍ}PÍuhci_hcd:usb3 P͉PÍeth1 NPÍ!ëPÍ& PÍ€r~x*‡1PÍkworker/2:1Qx&"*Ï€jxmd1_raid11,0Ïmd1_raid1(T5Ï€jxmd1_raid1'sCÏ€jxmd1_raid11¨GÏmd1_raid1(ÞJÏ€jxmd1_raid1CXÏmd1_raid1šVkíM *bÏmd1_raid1kworker/0:1#X+GÏ#5GÏ!8GÏ"j:GÏ!x;GÏ"ø?GÏ#‘zÏ!qzÏ"zÏ#;â¬Ï#‡î¬Ï!¸ð¬Ï"bò¬Ï!Ló¬Ï"º÷¬Ï#õÆßÏ!<ÎßÏ"ïÏßÏ#tÐ#`©Ð!Ö«Ð"_­Ð!U®Ð"¼²ÐfkÐmd1_raid1xypÐkworker/0:1md1_raid13²yЀÚx€ ƒ0 -ã{ЀÚxmd1_raid1.¿ЀÚxmd1_raid10ã„Ðmd1_raid13’‡Ð€Úx€ ƒ0 -ՉЀÚxmd1_raid1.ÚЀÚxmd1_raid1'Ò’ЀÚxmd1_raid11`˜Ðmd1_raid1(éœЀÚxmd1_raid1'!ªÐ€Úxmd1_raid11¼®Ðmd1_raid1(ž±Ð€Úxmd1_raid1j¾Ðmd1_raid1¤UCM  ÉÐmd1_raid1kworker/0:1#êEÐ!ˆEÐ"ºŠEÐéESÐuhci_hcd:usb4 ØJSÐ4LSÐeth0ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ`SSÐÈ7¯æyÐÈ7~€#`SSÐ ˜WSÐ!ÆYSÐd|SÐsshdf(›SÐsshdf(x"÷‘SÐD–SÐkworker/0:1sshdf(MºSпSÐ𢴀ÿp£´€ÿ‡ÂSÐ|ÄSÐp£´€ÿMÆSÐKÍSÐàc´€ÿ@?ÖSÐ0¿òSÐ@ù¨ª2 ù¨ª2TÐ$TÐ𢴀ÿp£´€ÿøTÐÏTÐp£´€ÿdTÐ TÐ Eªª2>TÐsshdf(y•á‰þL ÌTÐkworker/2:2 xÅTÐsshdf(xV"TÐ$TÐ Tࢴ€ÿ@£´€ÿ?*TÐ0TÐ@ù¨ª2 ù¨ª2:TÐsshdf(¸#™­þL >TÐsshdf(kworker/2:2 DRTÐkworker/2:2 ®MëL ¡[TÐkworker/2:2 kworker/0:1sðUÐsshdf(xgöUÐkworker/0:1sshdf(îVЈ VÐ𢴀ÿp£´€ÿ† VÐNVÐp£´€ÿÔVÐÂVÐàb´€ÿ@ VÐb4VÐ@ù¨ª2 ù¨ª2Ð;VÐõ=VÐ𢴀ÿp£´€ÿ·?VÐyAVÐp£´€ÿçBVÐ#FVЋ¨ª2@ hVÐ@‚mVÐ@ù¨ª2 ù¨ª2ówVÐsshdf(Á‰Z7ÿL ƒVÐsshdf(kworker/0:1#axÐ#ÝdxÐ! hxÐéoxÐltt-kconsumerd2wuxÐltt-kconsumerd2x"zxÐ!|xÐ"˜xÐy…xÐkworker/0:1ltt-kconsumerd2±xÐÒ¶xÐö¢¹xБ»xÐö€@ŽK=¿>½xÐZ¿xÐHŽK=¿°ÌxÐÆÎxÐàyЉyÐ`-syÐ8„0 ltt-kconsumerd»yÐmd1_raid1¬'yÐì)yÐP~.yÐ…0yÐÝPB:yÐÝyÐPAyÐöMMyÐOyÐö€@ŽK=¿XQyÐ;SyÐHŽK=¿úZyÐ×\yÐЖyÐj™yР-´ yÐX„0 ltt-kconsumerdůyÐÕ±yÐú¶yÐ˸yÐÝ|ÂyÐÝÄyÐö&ÇyЛÊyаÄ@ ÿÿÿÿÿÿÿÿuÒyÐÄÔyÐ!öÚâyÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽDåyÐÈ7³¦qÔÈ7ø€DåyÐ!ö€@ŽK=¿éyÐÿêyÐ!HŽK=¿"õyÐ÷yÐ"7"zЭ$zÐ"-¯+zÐP…0 ltt-kconsumerd^:zÐhÔ!GÈ>Ô"îÉ>Ô#Í—qÔ#cŸqÔ!“¢qÔ""¤qÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽx¥qÔÈ7Í#ØÈ7ø€!x¥qÔ"R­qÔÉ…rÔmd1_raid1x‹rÔkworker/0:1md1_raid136”rÔ€ƒx€H†0 -µ–rÔ€ƒxmd1_raid1.“rÔ€ƒxmd1_raid10õ¡rÔmd1_raid13¥rÔ€ƒx€H†0 -_§rÔ€ƒxmd1_raid1.Ä«rÔ€ƒxmd1_raid1'ȰrÔ€ƒxmd1_raid11Ú¶rÔmd1_raid1(ó»rÔ€ƒxmd1_raid1'–ÊrÔ€ƒxmd1_raid11(ÏrÔmd1_raid1(XÒrÔ€ƒxmd1_raid1JàrÔmd1_raid1ß\”YM }ìrÔmd1_raid1kworker/0:1 sÔmd1_raid1x\ sÔkworker/0:1md1_raid13sÔ€2~x€x0 -ZsÔ€2~xmd1_raid1.sÔ€2~xmd1_raid10T sÔmd1_raid13!#sÔ€2~x€x0 -p%sÔ€2~xmd1_raid1.)sÔ€2~xmd1_raid1'°-sÔ€2~xmd1_raid11*2sÔmd1_raid1({5sÔ€2~xmd1_raid1'*AsÔ€2~xmd1_raid11™DsÔmd1_raid1(ÄFsÔ€2~xmd1_raid1åRsÔmd1_raid1sM§M ÈZsÔmd1_raid1kworker/0:1„|Ôahci#Ç|Ô ˜|Ô‘|Ôuhci_hcd:usb3 ›•|Ô—|Ôeth1 Ë›|Ô!qž|Ô&¢|Ô€2~x*γ|Ôkworker/2:2 x"û¼|ÔHÁ|Ôkworker/0:1kworker/2:2 È|Ôkworker/2:2 —¢íL UÏ|Ôkworker/2:2 kworker/0:1#_t¤Ô!0€¤Ô"ƒ¤Ô#ÒO×Ô#q`×Ô!ºb×Ô"òf×Ô!åg×Ô"0m×ÔvØÔmd1_raid1xPØÔkworker/0:1md1_raid13qØÔ€‚x€`…0 -ØÔ€‚xmd1_raid1.l!ØÔ€‚xmd1_raid10½$ØÔmd1_raid13g&ØÔ€‚x€`…0 -°(ØÔ€‚xmd1_raid1.ú,ØÔ€‚xmd1_raid1'1ØÔ€‚xmd1_raid11x6ØÔmd1_raid1(+;ØÔ€‚xmd1_raid1'°FØÔ€‚xmd1_raid11ÜJØÔmd1_raid1(”MØÔ€‚xmd1_raid11YØÔmd1_raid1uK|òM YaØÔmd1_raid1kworker/0:1#_7 Õ!Â= Õ"@ Õ#\=Õ#â=Õ!+=Õ"®=Õ!ž=Õ"“ =Õ# çoÕ!iòoÕ"CôoÕ#±Ì¢Õ#[Ñ¢Õ!kÓ¢Õ"Õ¢Õ!íÕ¢Õ"Û¢Õ# ÕÕ!¬ÕÕ"®ÕÕ#¯}Ö#î‡Ö!OŠÖ"tŒÖ!sÖ"¨‘Ö„V Ömd1_raid1x”[ Ökworker/0:1md1_raid13d Ö€úƒx€@‡0 -_f Ö€úƒxmd1_raid1.m Ö€úƒxmd1_raid10"p Ömd1_raid13ûr Ö€úƒx€@‡0 -’u Ö€úƒxmd1_raid1.dy Ö€úƒxmd1_raid1'¿~ Ö€úƒxmd1_raid11/„ Ömd1_raid1(Ùˆ Ö€úƒxmd1_raid1'³– Ö€úƒxmd1_raid11-› Ömd1_raid1(ñ Ö€úƒxmd1_raid1O¬ Ömd1_raid1ØWTJM · Ömd1_raid1kworker/0:1#$d;Ö! i;Ö"Íl;Ö#ñ@nÖ#~DnÖ!âFnÖ"ãHnÖ!ÖInÖ"vOnÖ#C¡Ö!!¡Ö"·"¡Ö#BðÓÖ#ÜüÓÖ!²ÿÓÖ",ÔÖ!ÔÖ"eÔÖ#6Î×!,Ø×"Ú×#ã°9×#µ9×!|·9×";¹9×!=º9×"±¾9×#3l×!f“l×"C•l×#›cŸ×#InŸ×!xrŸ×""tŸ×!uŸ×"³yŸ×#ÉLÒ×!ÇQÒ×"kSÒ×ÁüÁõ©‹à‡îØF²ÿbÊ™HŽlØÈ7ÆC–ÝÈ7Ð~€#lØ#Ë(Ø!Ø*Ø%2Øltt-kconsumerd2ã7Øltt-kconsumerd2x"‡<Ø!³=Ø"9BرEØkworker/0:1ltt-kconsumerd2ŒpØAvØö§yØl{Øö€@ŽK=¿Å|Øê~ØHŽK=¿b‹Ø?Ø±ÌØuÏØ-îרP†0 ltt-kconsumerdŽãØmd1_raid1|ìØwîØ€NóØ+õØÝ€]ÿØÝRØöƒØËذÄ@ ÿÿÿÿÿÿÿÿ=Øltt-kconsumerd2ËÜôn¥M +Øltt-kconsumerd2kworker/0:1#08Ø!Ò 8Ø"T8ؘÅBØahci#ÑBØ ÙBؘÚBØuhci_hcd:usb3 BßBØ›àBØeth1 NåBØ!£çBØ&ÏëBØ€âx*TCØkworker/2:2 x&Æ CØ€âx*"F)CØ¥-CØkworker/0:1kworker/2:2 ç3CØkworker/2:2 ^5R‰îL ý5CØkworker/2:1Qx9CØkworker/2:2 kworker/2:1Q]BCØkworker/2:1Q0$ZîL  JCØkworker/2:1Qkworker/0:1#óßjØ#¾äjØ!…çjØ":êjØ!EëjØ"`ñjØ#§´Ø!W½Ø"ŽÂØ#û’ÐØ#ÐØ!hŸÐØ"0¡ÐØ!¢ÐØ"Ž¦ÐØ#xmÙ!h{Ù"$}Ù#dJ6Ù#T6Ù!V6Ù"¨W6Ù!˜X6Ù"¦\6Ù# 'iÙ!¢2iÙ":4iÙ#çœÙ#¢œÙ!|œÙ";œÙ!+œÙ"‡œÙ#íáÎÙ!5îÎÙ"ÍïÎÙ#‚½Ú#ËÚ!ïÌÚ"lÎÚ!YÏÚ"|ÓÚ#§4Ú!ñ«4Ú"Ñ­4Ú#%wgÚ#Æ‚gÚ!*…gÚ"³†gÚ!£‡gÚ"¢‹gÚ#ÿSšÚ!DcšÚ"ôdšÚ#Õ0ÍÚ#9ÍÚ!_;ÍÚ"Q=ÍÚ!V>ÍÚ"%BÍÚ#Û!öÛ"—Û#Gô2Û#¯ø2Û!›ú2Û"xü2Û!hý2Û"…3Û#ïÎeÛ!ÖeÛ"¶×eÛ#¹¬˜Û#籘Û!Ó³˜Û"Pµ˜Û!:¶˜Û"º˜Û#™‚ËÛ![ŽËÛ"JËÛ#Á]þÛ!ˆjþÛ"€lþÛ#g;1Ü#dG1Ü!ûI1Ü"®K1Ü!›L1Ü"ŠQ1Ü#tdÜ!2'dÜ"\*dÜ#áû–Ü#(—Ü!S—Ü"—Ü!—Ü" —Ü#ëÚÉÜ!âàÉÜ"âÉÜgˆÊÜmd1_raid1xðŒÊÜkworker/0:1md1_raid13S“ÊÜ€*‚x€p…0 -ö•ÊÜ€*‚xmd1_raid1.ÔœÊÜ€*‚xmd1_raid10| ÊÜmd1_raid13¤¢ÊÜ€*‚x€p…0 -½¤ÊÜ€*‚xmd1_raid1.Ô¨ÊÜ€*‚xmd1_raid1'‡­ÊÜ€*‚xmd1_raid11!³ÊÜmd1_raid1(U¸ÊÜ€*‚xmd1_raid1'íÅÊÜ€*‚xmd1_raid11ÑÉÊÜmd1_raid1(¤ÌÊÜ€*‚xmd1_raid1ÜÙÊÜmd1_raid1&R©¿M âÊÜmd1_raid1kworker/0:1#ƶüÜ#øºüÜ!¾üÜ"­ÀüÜ!¾ÁüÜ"2ÆüÜ#”/Ý! ™/Ý"z›/Ý#'ibÝ#?pbÝ!¦ubÝ")wbÝ!RxbÝ"º|bÝ#„D•Ý!äP•Ý"ßR•Ý%–Ýmd1_raid1xM#–Ýkworker/0:1md1_raid13¼,–Ý€z„x€À‡0 -/–Ý€z„xmd1_raid1.5–Ý€z„xmd1_raid10k8–Ýmd1_raid13w;–Ý€z„x€À‡0 -Æ=–Ý€z„xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽUB–ÝÈ7C?‘àÈ7Ø€.UB–Ý€z„xmd1_raid1' J–Ý€z„xmd1_raid11O–Ýmd1_raid1(@T–Ý€z„xmd1_raid1'5b–Ý€z„xmd1_raid11®f–Ýmd1_raid1(ui–Ý€z„xmd1_raid1^w–Ýmd1_raid1ÒZ{M ˜‚–Ýmd1_raid1kworker/0:1#È,ÈÝ# 1ÈÝ!Ü3Èݺ:ÈÝltt-kconsumerd2Ý>ÈÝltt-kconsumerd2x"´CÈÝ!ãDÈÝ"“IÈÝMÈÝkworker/0:1ltt-kconsumerd2TvÈÝv{ÈÝö@~ÈÝ€ÈÝö€@ŽK=¿jÈÝVƒÈÝHŽK=¿ÈÝ’ÈÝXÌÈÝÏÈÝ -Œ×ÈÝX†0 ltt-kconsumerdÚãÈÝmd1_raid1•ìÈÝ“îÈÝdóÈÝVõÈÝÝ ÿÈÝÝÉÝö?ÉÝQÉݰÄ@ ÿÿÿÿÿÿÿÿ–ÉÝltt-kconsumerd21Ô%C¦M fÉÝltt-kconsumerd2kworker/0:1#Ë ûÝ!ûÝ"eûÝ#ðÝ-Þ#ë-Þ!í-Þ"¯î-Þ!ºï-Þ"-õ-Þ#Ï·`Þ!îÆ`Þ"ªÈ`Þ#Hœ“Þ#§ “Þ!•£“Þ"!¥“Þ!#¦“Þ"¯ª“Þ#–qÆÞ!ªÆÞ"½ÆÞ#åWùÞ#ä[ùÞ!`^ùÞ"`ùÞ! aùÞ" fùÞ#x,,ß!8,ß"Ã9,ß#í_ß#N_ß!w_ß"*_ß!#_ß"d_ßiª_ßmd1_raid1xa¯_ßkworker/0:1md1_raid13”µ_߀2‚x€x…0 -é·_߀2‚xmd1_raid1.¾_߀2‚xmd1_raid10sÁ_ßmd1_raid13>Ã_߀2‚x€x…0 -QÅ_߀2‚xmd1_raid1. É_߀2‚xmd1_raid1'ÇÍ_߀2‚xmd1_raid11XÓ_ßmd1_raid1(†Ø_߀2‚xmd1_raid1' æ_߀2‚xmd1_raid11ûé_ßmd1_raid1(ãì_߀2‚xmd1_raid1qø_ßmd1_raid1 OÒ‹ M U`ßmd1_raid1kworker/0:1=&`ßmd1_raid1x+`ßkworker/0:1md1_raid13~0`߀„x€H‡0 -Ç2`߀„xmd1_raid1.×7`߀„xmd1_raid10ã:`ßmd1_raid13Z<`߀„x€H‡0 -y>`߀„xmd1_raid1.6B`߀„xmd1_raid1'VF`߀„xmd1_raid11K`ßmd1_raid1(fN`߀„xmd1_raid1'^Y`߀„xmd1_raid11ñ\`ßmd1_raid1(ò^`߀„xmd1_raid1]i`ßmd1_raid1§CyÏ M Rq`ßmd1_raid1kworker/0:1ñVeßahci#Ÿ`eß jbeßdeßuhci_hcd:usb3 —heßêießeth1 ‘neß!Rqeß&te߀2‚x*"ëƒeß#ñ‘ß!Š÷‘ß"Çù‘ß#ZÂÄß!ŒÍÄß"KÏÄß#¦÷ß#°«÷ß!±­÷ß"y¯÷ß!{°÷ß"»µ÷ß#Ž‚*à!èˆ*à"•Š*à# Y]à#Œa]à!xf]à".h]à!!i]à"Ëm]à#5à!zBà"ÒDàH‘àmd1_raid1xÙ!‘àkworker/0:1md1_raid13i+‘à€x€`„0 -Ù-‘à€xmd1_raid1.-4‘à€xmd1_raid10Ã7‘àmd1_raid13ó:‘à€x€`„0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽo=‘àÈ7zu\áÈ7¸€-o=‘à€xmd1_raid1.’D‘à€xmd1_raid1'äI‘à€xmd1_raid11®O‘àmd1_raid1(ÍT‘à€xmd1_raid1' b‘à€xmd1_raid11kg‘àmd1_raid1()j‘à€xmd1_raid1w‘àmd1_raid1{]ô,!M ö‡‘àmd1_raid1kworker/0:1C³‘àmd1_raid1x8¸‘àkworker/0:1md1_raid1õÁ‘àmd1_raid1ym>!M ¤Í‘àmd1_raid1kworker/0:1^’àmd1_raid1x·b’àkworker/0:1md1_raid13åj’à€êx€0ƒ0 -m’à€êxmd1_raid1.kr’à€êxmd1_raid10Ôu’àmd1_raid13nx’à€êx€0ƒ0 -Šz’à€êxmd1_raid1.ù}’à€êxmd1_raid1'©‚’à€êxmd1_raid11D‡’àmd1_raid1(ÔŠ’à€êxmd1_raid1'Ÿš’à€êxmd1_raid11¤ž’àmd1_raid1(V¡’à€êxmd1_raid1­’àmd1_raid1íQZ!M *µ’àmd1_raid1kworker/0:1q “àmd1_raid1x0“àkworker/0:1md1_raid13y“à€ƒx€`†0 -Ë“à€ƒxmd1_raid1.ù“à€ƒxmd1_raid10#“àmd1_raid13Î%“à€ƒx€`†0 -ç'“à€ƒxmd1_raid1.#+“à€ƒxmd1_raid1'å/“à€ƒxmd1_raid114“àmd1_raid1(,7“à€ƒxmd1_raid1'ÏB“à€ƒxmd1_raid11,F“àmd1_raid1(H“à€ƒxmd1_raid1CS“àmd1_raid1KK¥Û!M ¨Z“àmd1_raid1kworker/0:1´“àmd1_raid1xj•“àkworker/0:1md1_raid13M“à€"x€h„0 -“Ÿ“à€"xmd1_raid1.p¤“à€"xmd1_raid10 §“àmd1_raid13¿©“à€"x€h„0 -Ø«“à€"xmd1_raid1. ¯“à€"xmd1_raid1'X³“à€"xmd1_raid11~·“àmd1_raid1(º“à€"xmd1_raid1'ÑÄ“à€"xmd1_raid11:È“àmd1_raid1(Ê“à€"xmd1_raid1uÔ“àmd1_raid1ùEž!"M  Ü“àmd1_raid1kworker/0:1å3 àahci#>> à ÷? àŽA àuhci_hcd:usb3 >F à—G àeth1 JL à!íN à&R à€êx*"Cb à#5Ãà#ÀÃà!Œ#Ãà"¥%Ãà!È&Ãà"Ê-Ãà†°Ãàmd1_raid1xеÃàkworker/0:1md1_raid13ûÃà€:‚x€€…0 -¾Ãà€:‚xmd1_raid1.jÃÃà€:‚xmd1_raid10pÆÃàmd1_raid13kÈÃà€:‚x€€…0 -‡ÊÃà€:‚xmd1_raid1.;ÎÃà€:‚xmd1_raid1'ÒÃà€:‚xmd1_raid11×Ãàmd1_raid1(’ÚÃà€:‚xmd1_raid1'"çÃà€:‚xmd1_raid11ŽêÃàmd1_raid1(|ìÃà€:‚xmd1_raid1ùÃàmd1_raid1kI k"M ­Äàmd1_raid1kworker/0:1#ðõà!=þõà"töà#PÕ(á#yÙ(á!zÛ(á"Ý(á!ðÝ(á"ýâ(á#Z¨[á!s·[á"¹[á-e\ámd1_raid1xOj\ákworker/0:1md1_raid13lq\á€ú„x€@ˆ0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽt\áÈ7M­ìæÈ7p€-t\á€ú„xmd1_raid1.p|\á€ú„xmd1_raid10¦\ámd1_raid13¦‚\á€ú„x€@ˆ0 -„\á€ú„xmd1_raid1.©ˆ\á€ú„xmd1_raid1'ì\á€ú„xmd1_raid11˜“\ámd1_raid1(º˜\á€ú„xmd1_raid1'Þ§\á€ú„xmd1_raid116­\ámd1_raid1(B°\á€ú„xmd1_raid1¼\ámd1_raid1æXïÃ"M Æ\ámd1_raid1kworker/0:1Ê]ámd1_raid1xƒ]ákworker/0:1md1_raid13¸]á€"ƒx€h†0 -]á€"ƒxmd1_raid1.#]á€"ƒxmd1_raid10&]ámd1_raid13D)]á€"ƒx€h†0 -]+]á€"ƒxmd1_raid1.º.]á€"ƒxmd1_raid1'C3]á€"ƒxmd1_raid11‡7]ámd1_raid1(Ò:]á€"ƒxmd1_raid1'KF]á€"ƒxmd1_raid11´I]ámd1_raid1(”K]á€"ƒxmd1_raid1éV]ámd1_raid1I #M  ^]ámd1_raid1kworker/0:1vfáahci#Çfá }fáè‚fáuhci_hcd:usb3 ‰‡fá܈fáeth1 žfá!Dfá&”fá€"ƒx*\¥fákworker/2:1Qx",®fá^²fákworker/0:1kworker/2:1Q=¸fákworker/2:1QÈí;ïL Ÿ¿fákworker/2:1Qkworker/0:1#Þ‡Žá#–‘Žá!„”Žá"<—Žá!5˜Žá"ÓœŽá#ïiÁá!ÙpÁá"ÕtÁá#Í>ôá#þJôá!DMôá"ÐNôá!½Oôá"‘Tôá#ñ#'â!¥*'â"L,'â#¼ÿYâ#‡Zâ!pZâ"öZâ!æZâ" Zâ#?ÕŒâ!§àŒâ"âŒâ#¯²¿â!Y¾¿â"KÀ¿â# òâ#¦˜òâ!ažòâ"ÛŸòâ!Ë òâ")¦òâ#lv%ã!Åz%ã"x|%ã#­HXã!®WXã"µYXã#E(‹ã#ö2‹ã!º5‹ã":7‹ã!'8‹ã"ž<‹ã#O¾ã!a¾ã"í¾ã#2ßðã!ìðã"#îðã#sÄ#ä#5É#ä!´Ë#ä"4Í#ä!!Î#ä">Ò#ä#ý˜Vä!–¦Vä"¨Vä#wv‰ä!m‰ä"¬„‰ä#^R¼ä#;]¼ä!H_¼ä"Ñ`¼ä!¾a¼ä"öe¼ä#»6ïä!…<ïä">ïä#3 "å#_"å!J"å"Ð"å!½"å"à"å#éTå!ØøTå"vúTå#ÎŇå!FÒ‡å"AÔ‡å#z¬ºå#g°ºå!‰²ºå"N´ºå!Sµºå"…¹ºå#víå!Å‹íå"Šíå#€e æ#Oi æ!l æ"“m æ!€n æ"”r æ#BBSæ!ŽGSæ"8ISæ#†æ#½ †æ!~#†æ"4%†æ!!&†æ"5*†æ#Îò¸æ!òþ¸æ"ÿ¹æ,š¹æmd1_raid1xŸ¹ækworker/0:1md1_raid13榹æ€z…x€Àˆ0 -¤©¹æ€z…xmd1_raid1.a°¹æ€z…xmd1_raid10—³¹æmd1_raid13^¶¹æ€z…x€Àˆ0 -¸¹æ€z…xmd1_raid1.¼¹æ€z…xmd1_raid1'ºÀ¹æ€z…xmd1_raid11ǹæmd1_raid1(Ó˹æ€z…xmd1_raid1'dÚ¹æ€z…xmd1_raid11“Þ¹æmd1_raid1(¥á¹æ€z…xmd1_raid1Ûí¹æmd1_raid1€U†b#M ñø¹æmd1_raid1kworker/0:1#”Úëæ#EÞëæ!¥áëæ"äëæ!åëæ"Çéëæ‡ìæmd1_raid1xÆ‹ìækworker/0:1md1_raid13„‘ìæ€B‚x€ˆ…0 -Ç“ìæ€B‚xmd1_raid1.Ñ˜ìæ€B‚xmd1_raid10Å›ìæmd1_raid13iìæ€B‚x€ˆ…0 -gŸìæ€B‚xmd1_raid1. £ìæ€B‚xmd1_raid1'D§ìæ€B‚xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HެìæÈ7#î"éÈ7°~€1¬ìæmd1_raid1(‚±ìæ€B‚xmd1_raid1'·¾ìæ€B‚xmd1_raid11bÂìæmd1_raid1(<Äìæ€B‚xmd1_raid1Ñìæmd1_raid1¦J,­#M ÷Øìæmd1_raid1kworker/0:1#ê³ç!˜ºçľçltt-kconsumerd2íÂçltt-kconsumerd2x"CÇç–Ëçkworker/0:1ltt-kconsumerd2 àçrãçöWæçèçö€@ŽK=¿~éç|ëçHŽK=¿†óçZõçu%ç9(çÐ-À0çp†0 ltt-kconsumerdï:çmd1_raid1çBçåDçÀnIç6KçÝÀVçÝXçö9Zç]ç°Ä@ ÿÿÿÿÿÿÿÿZiçltt-kconsumerd2U§zê¦M vçltt-kconsumerd2kworker/0:1#ˆ”Qç#<˜Qç!Q›Qç" Qç!¢žQç"¢¤Qç#o„ç!Ft„ç"öu„ç#þB·ç#ÚN·ç!>Q·ç"èR·ç!íS·ç"¦X·ç#Àêç!ê+êç".êç#è#Ž è!h è"ë è!Øè"Iè#´ÚOè!ÈçOè"iéOè#¥Á‚è#}Å‚è!uÇ‚è" É‚è!Ê‚è"öÍ‚è#*“µè!“ µè"@¢µè#Ôoèè#Ó|èè!èè"Àèè!ªèè"â…èè#ZUé!Zé"ó[éQéuhci_hcd:usb4 òUé?Wéeth0#?]é /^é!`é-„ésshdf(”‰ésshdf(x"Ü•éDšékworker/0:1sshdf(N½éÂé𢴀ÿp£´€ÿgÅéeÇép£´€ÿ$ÉéÌÏéàc´€ÿ@„Øé0äóé@ù¨ª2 ù¨ª2  éõ é𢴀ÿp£´€ÿÌ é  ép£´€ÿ é¥ é Eªª2© ésshdf(ŽÁÿL  ékworker/2:1Qxý ésshdf(xŽ" éÚ$ é Tࢴ€ÿ@£´€ÿŠ) é6/ é@ù¨ª2 ù¨ª2[9 ésshdf(/"ð"ÿL = ésshdf(kworker/2:1Q$R ékworker/2:1Q°*éïL Ä] ékworker/2:1Qkworker/0:1ŸX"ésshdf(x{^"ékworker/0:1sshdf(½p"écs"é𢴀ÿp£´€ÿXu"éw"ép£´€ÿmx"é{"éàb´€ÿ@ñ„"é)ž"é@ù¨ª2 ù¨ª2‘¥"éì§"é𢴀ÿp£´€ÿç©"éÄ«"ép£´€ÿ­"éS°"鋨ª2P{Ò"éPî×"é@ù¨ª2 ù¨ª2tâ"ésshdf(4Œ$¯ÿL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÐì"éÈ73 àíÈ7Ø€Ðì"ésshdf(kworker/0:1#Ý1Né#r6Né!ä9Né"½KNé!¼LNé"RNé#ré! é"Öé#Œã³é#Xð³é!qò³é"ðô³é!õõ³é"û³é#þÀæé!RÎæé"áÏæéƒ:íéahci#`Eíé %GíéŸHíéuhci_hcd:usb3 CMíé“Níéeth1 =Síé!qUíé&…Yí逅x*"rlíé#{žê#È©ê!Ŭê"q¯ê!^°ê"/µê#1Lê!‰†Lê"6ˆLê#T`ê#Ñdê!>gê"iê!jê"émê#V3²ê!ö>²ê"@²ê# åê#‰åê!üåê"| åê!o!åê"¶%åê#Ìíë!núë"!üë# ÊJë#ÃÔJë!*×Jë""ÙJë!ÚJë")ÞJë#ñ¨}ë!}·}ë"U»}ë:t~ëmd1_raid1xÈy~ëkworker/0:1md1_raid13—€~ë€Z‚x€ …0 -4ƒ~ë€Z‚xmd1_raid1.¸‰~ë€Z‚xmd1_raid10f~ëmd1_raid13O~ë€Z‚x€ …0 -S‘~ë€Z‚xmd1_raid1.j•~ë€Z‚xmd1_raid1'ç™~ë€Z‚xmd1_raid11Ÿ~ëmd1_raid1(#£~ë€Z‚xmd1_raid1'š°~ë€Z‚xmd1_raid11<´~ëmd1_raid1((¶~ë€Z‚xmd1_raid1lÀ~ëmd1_raid1sMmŒ'M É~ëmd1_raid1kworker/0:1Óí‚ëahci#»ö‚ë Øý‚ë=ÿ‚ëuhci_hcd:usb3 Ƀëûƒëeth1 ™ ƒë!* ƒë&̓ë€Z‚x*fƒëkworker/2:1Qx&½'ƒë€Z‚x*",=ƒë¯Aƒëkworker/0:1kworker/2:1Q¢Hƒëkworker/2:1Q+AðL šJƒëkworker/2:2 xQƒëkworker/2:1Qg¨ðL 4Sƒëkworker/2:1Qkworker/2:2 Wƒëkworker/2:2 *¤ÕïL k^ƒëkworker/2:2 kworker/0:1#o°ë# ”°ë!¾˜°ë"ìš°ë!è›°ë"¹ °ë#°`ãë!’lãë"·qãë#†Dì#®Iì!ï"{@ï#y Dï#½Dï!¯Dï"5Dï!vDï"“ Dï#Mçvï!iõvï" ÷vï#+Å©ï#Ωï!ôÏ©ï"€Ñ©ï!mÒ©ï"îÕ©ï#¡Üï!W¯Üï"…±Üï}„Ýïmd1_raid1xu‰Ýïkworker/0:1md1_raid138“Ýï€2x€x„0 -¢•Ýï€2xmd1_raid1.á›Ýï€2xmd1_raid10 ŸÝïmd1_raid13¢Ýï€2x€x„0 -6¤Ýï€2xmd1_raid1.©Ýï€2xmd1_raid1'2®Ýï€2xmd1_raid11D´Ýïmd1_raid1(B¹Ýï€2xmd1_raid1'«ÈÝï€2xmd1_raid11‚ÍÝïmd1_raid1(¸ÐÝï€2xmd1_raid1¤ÞÝïmd1_raid1L\/*M ¤êÝïmd1_raid1kworker/0:1#7ˆð#‹ð!ð"Ö‘ð!Þ’ð"=—ðV)ðmd1_raid1xc.ðkworker/0:1md1_raid13º7ð€†x€H‰0 -ñ9ð€†xmd1_raid1.À@ð€†xmd1_raid10öCðmd1_raid13íFð€†x€H‰0 - Ið€†xmd1_raid1.­Mð€†xmd1_raid1'üRð€†xmd1_raid11—Wðmd1_raid1(ýZð€†xmd1_raid1'ïhð€†xmd1_raid11ñlðmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽOoðÈ7Ny<ôÈ7P€(Ooð€†xmd1_raid1õ}ðmd1_raid1ÁVðZ*M ã†ðmd1_raid1kworker/0:1Ãðahci#†Ìð BÎðÑÏðuhci_hcd:usb3 cÔð­Õðeth1 lÚð!Ýð&åßð€†x*¤üðkworker/2:2 x"àð9 ðkworker/0:1kworker/2:2 lðkworker/2:2 ¯VÚðL ‰ðkworker/2:2 kworker/0:1#gBð!&nBðvuBðltt-kconsumerd2bzBðltt-kconsumerd2x"BðN‚Bðkworker/0:1ltt-kconsumerd2½¬Bð¾±BðöR´Bð¶Bðö€@ŽK=¿y·Bð\¹BðHŽK=¿×ÅBð·ÇBðsCðmCð-û Cðˆ†0 ltt-kconsumerd¤Cðmd1_raid1S"CðT$Cðð@)Cð+CðÝðø4CðÝ)7Cðöo9Cð=Cð°Ä@ ÿÿÿÿÿÿÿÿqICðltt-kconsumerd2Ð;š¨M  VCðltt-kconsumerd2kworker/0:1#žCuð#+Guð!mJuð" Muð!Nuð"ÍSuðTÛuðmd1_raid1xXàuðkworker/0:1md1_raid13ˆæuð€j‚x€°…0 -éuð€j‚xmd1_raid1.1ïuð€j‚xmd1_raid10»òuðmd1_raid13¤ôuð€j‚x€°…0 -Àöuð€j‚xmd1_raid1.³úuð€j‚xmd1_raid1'Kÿuð€j‚xmd1_raid11vðmd1_raid1(vð€j‚xmd1_raid1'üvð€j‚xmd1_raid11†vðmd1_raid1(Tvð€j‚xmd1_raid1&vðmd1_raid1LyÁ+M Æ.vðmd1_raid1kworker/0:1#à¨ð!$¨ð"R'¨ð#TñÚð#þÚð!&Ûð"¬Ûð!œÛð"! Ûð#'Î ñ!ŽÚ ñ"nÜ ñ#Ó¬@ñ#X¶@ñ!G¸@ñ"Ó¹@ñ!ɺ@ñ"p¿@ñlgAñmd1_raid1x£lAñkworker/0:1md1_raid13tAñ€ …x€Pˆ0 -EvAñ€ …xmd1_raid1.`|Añ€ …xmd1_raid10]Añmd1_raid13o‚Añ€ …x€Pˆ0 -v„Añ€ …xmd1_raid1.‰Añ€ …xmd1_raid1'¦Añ€ …xmd1_raid11”“Añmd1_raid1(‰˜Añ€ …xmd1_raid1'ª§Añ€ …xmd1_raid110¬Añmd1_raid1(¯Añ€ …xmd1_raid1‰¼Añmd1_raid1mVæ,M ÔÅAñmd1_raid1kworker/0:1#T”sñ!ë™sñ"Üœsñ#|e¦ñ#Iq¦ñ!Ús¦ñ"Šu¦ñ!Œv¦ñ"Æ{¦ñ#JÙñ!ÙOÙñ"‰QÙñ#B ò#ú) ò!‹, ò". ò!ø. ò"œ3 ò#Cû>ò!Á?ò" ?ò#~Ùqò#æäqò!çæqò"gèqò!éqò"ƒíqò#̼¤ò!ÄÁ¤ò"›Ã¤ò#š×ò#BŸ×ò!O¡×ò"Ï¢×ò!ò£×ò"Z¨×ò#Wn ó!n~ ó"'€ ó#ÏL=ó#ZX=ó!mZ=ó"2\=ó!4]=ó"a=ó#ü/pó!•6pó"<8pó#ü£ó#«£ó!'£ó"ì£ó!î£ó"V£ó#«áÕó!]îÕó"ïïÕó#¦¿ô#¸Éô!IÌô"ÌÍô!¹Îô"*Óô#U£;ô!y©;ô"Y«;ôpr<ômd1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽæw<ôÈ74Ï÷È7¸€æw<ôkworker/0:1md1_raid13ƒ<ô€„x€X‡0 -ê…<ô€„xmd1_raid1./Œ<ô€„xmd1_raid10Œ<ômd1_raid13³’<ô€„x€X‡0 - •<ô€„xmd1_raid1.|™<ô€„xmd1_raid1'^¢<ô€„xmd1_raid11.¨<ômd1_raid1(­<ô€„xmd1_raid1'¼<ô€„xmd1_raid11ŽÀ<ômd1_raid1(‚Ã<ô€„xmd1_raid1òÑ<ômd1_raid1bƒz,M kß<ômd1_raid1kworker/0:1t=ômd1_raid1x=ôkworker/0:1md1_raid13å=ô€Jƒx€†0 -."=ô€Jƒxmd1_raid1.é'=ô€Jƒxmd1_raid10”+=ômd1_raid13C.=ô€Jƒx€†0 -\0=ô€Jƒxmd1_raid1.×3=ô€Jƒxmd1_raid1'¢8=ô€Jƒxmd1_raid11ï<=ômd1_raid1(7@=ô€Jƒxmd1_raid1'/K=ô€Jƒxmd1_raid11¹N=ômd1_raid1(Q=ô€Jƒxmd1_raid13\=ômd1_raid1óKvÆ,M »d=ômd1_raid1kworker/0:1^·Fôahci#ŸÁFô jÃFôöÄFôuhci_hcd:usb3 ÉFôðÊFôeth1 ¥ÏFô!KÒFô&äÕFô€Jƒx*ŒñFôkworker/2:2 x"ÔúFô*ÿFôkworker/0:1kworker/2:2 ‡Gôkworker/2:2 â”ñL b Gôkworker/2:2 kworker/0:1#K‚nô#Á‡nô!¦Šnô"»nô!±Žnô"Í“nô#GU¡ô!Wc¡ô"¹g¡ôZ¢ômd1_raid1xæ¢ôkworker/0:1md1_raid13¢ô€r‚x€¸…0 -€!¢ô€r‚xmd1_raid1.Æ&¢ô€r‚xmd1_raid10Õ)¢ômd1_raid13Ù+¢ô€r‚x€¸…0 -Ý-¢ô€r‚xmd1_raid1.g1¢ô€r‚xmd1_raid1'„5¢ô€r‚xmd1_raid11 ;¢ômd1_raid1(q?¢ô€r‚xmd1_raid1'#K¢ô€r‚xmd1_raid11O¢ômd1_raid1(§Q¢ô€r‚xmd1_raid1¨\¢ômd1_raid1;I±-M Ðg¢ômd1_raid1kworker/0:1“¢ômd1_raid1x€˜¢ôkworker/0:1md1_raid13ž¢ô€Š„x€Ð‡0 -“ ¢ô€Š„xmd1_raid1.g¥¢ô€Š„xmd1_raid10U¨¢ômd1_raid13ª¢ô€Š„x€Ð‡0 -*¬¢ô€Š„xmd1_raid1.ð¯¢ô€Š„xmd1_raid1'ã³¢ô€Š„xmd1_raid11!¸¢ômd1_raid1(B»¢ô€Š„xmd1_raid1'¹Å¢ô€Š„xmd1_raid11É¢ômd1_raid1(ÛÊ¢ô€Š„xmd1_raid1‰Ô¢ômd1_raid1dAQ-M ÄÛ¢ômd1_raid1kworker/0:1#™;Ôô#ä>Ôô!éBÔô"EÔô!%FÔô"KÔô#ßõ!Øõ"|õ#üó9õ#ñø9õ! û9õ"®ü9õ!°ý9õ"E:õ#hÈlõ!¯Ölõ"hØlõ#¨­Ÿõ##±Ÿõ!'³Ÿõ"ª´Ÿõ!—µŸõ"•ºŸõ# ‚Òõ!éŽÒõ"™Òõ#îgö#Glö!¢nö"[pö!]qö"avö#³D8ö!“I8ö"IK8ö#r kö#è%kö!þ'kö"Æ)kö!È*kö"0kö#rõö!vžö"žö#!ÒÐö#áÜÐö!eàÐö"HâÐö!JãÐö""çÐö#)¯÷!g½÷"¿÷#ë‹6÷#Æ•6÷!™6÷"¦š6÷!œ›6÷"•Ÿ6÷#0pi÷!nwi÷"yi÷#rNœ÷#ëSœ÷!ÔUœ÷"`Wœ÷!PXœ÷"Ê\œ÷#`"Ï÷!µ0Ï÷ÁüÁõ©‹à‡îØF²ÿbÊ™HŽø2Ï÷È7rÏÌùÈ7Ð~€"ø2Ï÷#ø#ž ø!Ìø@øltt-kconsumerd2Møltt-kconsumerd2x"Bø!wø"µ#øQ'økworker/0:1ltt-kconsumerd29<øÛ?øöVCø'Eøö€@ŽK=¿Fø½HøHŽK=¿?SøUø[ˆøïŠø -,“ø˜†0 ltt-kconsumerdømd1_raid1û¥øS¨øH­ø4¯øÝ½¹øÝ²»øöþ½øCÁø°Ä@ ÿÿÿÿÿÿÿÿoÎøltt-kconsumerd2¶µñO©M ·×øltt-kconsumerd2kworker/0:1#Äæ4ø!Žì4ø"ï4ø$t5ømd1_raid1x y5økworker/0:1md1_raid13o5ø€z‚x€À…0 -T‚5ø€z‚xmd1_raid1.؈5ø€z‚xmd1_raid10_Œ5ømd1_raid13„Ž5ø€z‚x€À…0 -£5ø€z‚xmd1_raid1.Ÿ”5ø€z‚xmd1_raid1'=™5ø€z‚xmd1_raid11>ž5ømd1_raid1(|¢5ø€z‚xmd1_raid1'+±5ø€z‚xmd1_raid11ú´5ømd1_raid1(·5ø€z‚xmd1_raid1ŸÁ5ømd1_raid1NNÄ©.M ‚É5ømd1_raid1kworker/0:1…×9øahci#Ká9ø =ã9øÌä9øuhci_hcd:usb3 Cé9øê9øeth1 jï9ø!.ò9ø&Oõ9ø€z‚x*ù :økworker/2:2 x"Y:øp:økworker/0:1kworker/2:2 µ:økworker/2:2 ÜÍIòL ':økworker/2:2 kworker/0:1#dÂgø#ÏÆgø!êÉgø"ýËgø!ùÌgø"~Ògø#•šø!ª¡šø"j¥šø#+{Íø#QÍø!mƒÍø",…Íø!†Íø"–ŠÍø#–Pù!–\ù"%^ù³ùmd1_raid1x“ùkworker/0:1md1_raid13@ù€Š…x€Ðˆ0 -Ñù€Š…xmd1_raid1.—$ù€Š…xmd1_raid10ñ'ùmd1_raid13¦*ù€Š…x€Ðˆ0 --ù€Š…xmd1_raid1.1ù€Š…xmd1_raid1'6ù€Š…xmd1_raid11F<ùmd1_raid1(}Aù€Š…xmd1_raid1'fNù€Š…xmd1_raid11¹Rùmd1_raid1(žUù€Š…xmd1_raid1œ`ùmd1_raid1ÄSˆý.M èkùmd1_raid1kworker/0:1#m33ù# 73ù!\:3ù"Ì<3ù!>3ù"SC3ù#e fù!Qfù"fù#±å˜ù!sñ˜ù"\ó˜ù#öËËù#ÑËù!ˆÓËùx×Ëùkworker/2:2 x"ÛËù!¯ÜËù"áËùæËùkworker/0:1kworker/2:2 VóËùkworker/2:2 h5fòL åýËùkworker/2:2 kworker/0:1/šÌùmd1_raid1xŸÌùkworker/0:1md1_raid13è§Ìù€:x€€„0 -:ªÌù€:xmd1_raid1.|°Ìù€:xmd1_raid10ñ³Ìùmd1_raid13f·Ìù€:x€€„0 -‚¹Ìù€:xmd1_raid1.ê½Ìù€:xmd1_raid1'ÃÌù€:xmd1_raid11ôÈÌùmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÎÌùÈ7ƒËúÈ7€(ÎÌù€:xmd1_raid1'ºÞÌù€:xmd1_raid11dãÌùmd1_raid1(‘æÌù€:xmd1_raid1õÌùmd1_raid1÷\Z/M öüÌùmd1_raid1kworker/0:1#W©þù!;¯þù ·þùltt-kconsumerd2p¼þùltt-kconsumerd2x"žÁþù1Åþùkworker/0:1ltt-kconsumerd2­îþùÀóþùö{öþùIøþùö€@ŽK=¿«ùþù‘ûþùHŽK=¿„ÿù[ ÿùHDÿùñFÿù0-|Oÿù †0 ltt-kconsumerd"[ÿùmd1_raid1ÈcÿùÞeÿù ©jÿùnlÿùÝ kuÿùÝTwÿùövyÿù©|ÿù°Ä@ ÿÿÿÿÿÿÿÿ¯ˆÿùltt-kconsumerd2#ͪM Þ’ÿùltt-kconsumerd2kworker/0:1#ކ1ú#Š1ú!ùŒ1ú"'1ú!,1ú"•1úÝ2úmd1_raid1xä2úkworker/0:1md1_raid13­2ú€‚‚x€È…0 -D 2ú€‚‚xmd1_raid1.D&2ú€‚‚xmd1_raid10§)2úmd1_raid13+2ú€‚‚x€È…0 -ˆ-2ú€‚‚xmd1_raid1.l12ú€‚‚xmd1_raid1'é52ú€‚‚xmd1_raid11:2úmd1_raid1(z>2ú€‚‚xmd1_raid1'xL2ú€‚‚xmd1_raid11êO2úmd1_raid1(÷Q2ú€‚‚xmd1_raid1Þ[2úmd1_raid1*KÃ0M Óc2úmd1_raid1kworker/0:1]³6úahci#h½6ú ¿6úhÀ6úuhci_hcd:usb3 ÓÄ6úÆ6úeth1 ÐÊ6ú!‚Í6ú&‘Ð6ú€‚‚x*ç6úkworker/2:2 x"ð6úXô6úkworker/0:1kworker/2:2 dú6úkworker/2:2 |óL {7úkworker/2:2 kworker/0:1#¾cdú!Òjdú"¾ldú#@>—ú#ÜC—ú!¹E—ú"÷I—ú!çJ—ú"ñO—úÌ"˜úmd1_raid1xÐ'˜úkworker/0:1md1_raid131˜ú€"„x€h‡0 -s3˜ú€"„xmd1_raid1.Í9˜ú€"„xmd1_raid10=˜úmd1_raid13`@˜ú€"„x€h‡0 -ÍB˜ú€"„xmd1_raid1.*F˜ú€"„xmd1_raid1':K˜ú€"„xmd1_raid11UQ˜úmd1_raid1(bV˜ú€"„xmd1_raid1'4c˜ú€"„xmd1_raid11âf˜úmd1_raid1(ñi˜ú€"„xmd1_raid1¶t˜úmd1_raid1 T1M –˜úmd1_raid1kworker/0:1#…Êú!˜#Êú"5&ÊúÐÅÊúmd1_raid1xÈÊÊúkworker/0:1md1_raid13ÔÊú€ †x€P‰0 -\ÖÊú€ †xmd1_raid1.LÝÊú€ †xmd1_raid10ŽàÊúmd1_raid13ŽãÊú€ †x€P‰0 -ÚåÊú€ †xmd1_raid1.êÊú€ †xmd1_raid1'ûîÊú€ †xmd1_raid11–óÊúmd1_raid1(A÷Êú€ †xmd1_raid1'ÅËú€ †xmd1_raid11² Ëúmd1_raid1(­ Ëú€ †xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽËúÈ7ƒ|,ýÈ7x€Ëúmd1_raid1þUm1M Í%Ëúmd1_raid1kworker/0:1#šöüú#ýüú!ÏýúN ýúltt-kconsumerd2¸ýúltt-kconsumerd2x"zýú!¸ýú"Å"ýú&ýúkworker/0:1ltt-kconsumerd2Qýú.VýúöéXýú·Zýúö€@ŽK=¿\ýú^ýúHŽK=¿ÝjýúÌlýúŽ£ýú4¦ýú@-q®ýú¨†0 ltt-kconsumerd̹ýúmd1_raid1<ÂýúXÄýú08Éýú$ËýúÝ0`ÔýúÝUÖýúö˜ØýúàÛýú°Ä@ ÿÿÿÿÿÿÿÿ èýúltt-kconsumerd2šÚ®÷ªM ûðýúltt-kconsumerd2kworker/0:1#}×/û!˜Ý/û"à/ûYo0ûmd1_raid1xz!>>z"Ö>z!À>z"ò>z#GÑpz#HÓpz !ùÝpz"‹ßpz!àpz "ãpz ázahci êñz$ôzuhci_hcd:usb3 ûøzûzeth1 Ežz#ª±£z#º£z #Ò½£z!WÀ£z"g£z!Tãz"ÅÍ£z!£Î£z "žÓ£z #@Öz#ß–Öz !íÖz"—ŸÖz!~ Öz "B£Öz #Ei {#Ûr { #ƒv {!~x {"yz {!r{ {"† {!H‡ { "ÉŠ { oÌ{md1_raid1xØÒ{swappermd1_raid13Õø{€ºð0+€ôè)-ý{€ºð0+md1_raid1.Ð {€ºð0+md1_raid1'È{€ºð0+md1_raid1(Ô{€ÿÿÿÿÿÿÿÿmd1_raid134{€ºð0+€ôè)-Ê6{€ºð0+md1_raid1. ;{€ºð0+md1_raid1'Y>{€ºð0+md1_raid1(÷B{€ÿÿÿÿÿÿÿÿmd1_raid1ÚM{md1_raid1‚ƒîé9.^W{md1_raid1swapper#›ý{!rÿ{&g{€ºð0+*ö{kworker/0:2_(x(+{€ÿÿÿÿÿÿÿÿswapper"*{À.{swapperkworker/0:2_(›5{kworker/0:2_(\"ý+7.¦<{kworker/0:2_(swapper#‚Š"{!ç‹"{&m“"{€ºð0+*S£"{kworker/0:2_(x(¦­"{€ÿÿÿÿÿÿÿÿswapper".¼"{EÀ"{swapperkworker/0:2_(²Å"{kworker/0:2_([#XO7.nÍ"{kworker/0:2_(swapper#¨N<{#cQ<{ !@V<{"ªX<{!©Y<{ "o]<{ #¤!o{#¶*o{ #.o{!à0o{"u2o{!S3o{"Ë?o{!¦@o{ "XCo{ #mÿ¡{! ¢{"é¢{#åÔ{#ÔæÔ{ #ïéÔ{!ÏëÔ{"ÙíÔ{!ÉîÔ{"”ùÔ{!oúÔ{ "ßüÔ{ #¹|#sÁ| !tÆ|"-È|!É| "fË| Lo|ahci ó|m|uhci_hcd:usb3 í…|=‡|eth1 Œ| 0|ahci ö!0|[#0|uhci_hcd:usb3 ó'0|1)0|eth1 á-0|#­:|#’£:|!q¦:|"„¨:|!e©:|"ß³:|¹´H|ahci 5ÃH|ÖÄH|uhci_hcd:usb3 ÑÉH|ËH|eth1 ãÏH|cë^|ahci âù^|û^|uhci_hcd:usb3 mÿ^|™_|eth1 @_|#vsm|#Ê|m| !ƒm|"~ƒm|!h„m| "4ˆm| #BO |#VW | #{\ |!¸^ |"_` |!@a |"l |! m | "Ýo | #l+Ó|#€5Ó| !¨:Ó|"C<Ó|!*=Ó| "s?Ó| #}#¶} #7}!z}"}!ê}" #}!<$} "Ö&} #_ç8}#×î8} !„ó8}"õ8}!-ö8} "ù8} #ËÁk}#uÊk} #ÄÏk}!ÑÑk}"fÓk}!˜Ôk}"ÓÞk}!±ßk} "âk} #<¡ž}#çž} !k®ž}"°ž}!±ž} "B³ž} ¨±¤}ahci „À¤}¤}uhci_hcd:usb3 lƤ}›Ç¤}eth1 H̤}#J}Ñ}#°‰Ñ}!ŒÑ}"ÄÑ}!¢ŽÑ}"†˜Ñ}#b~!h~"úi~# 57~#@7~!oB7~"OD7~!›!•K›"®M›#qÎ#±%Î!c(Î"7*Î!?+Î"¨4Î#/€!ã €" €#ÔÛ3€#¢à3€!]ã3€"(å3€!æ3€"³ð3€#L³f€!…¿f€"Áf€#H™€#n™™€!´›™€"O™€!?ž™€"q¨™€#tÌ€!/{Ì€"Ç|Ì€#ŸOÿ€#ÐTÿ€!Wÿ€ÁüÁõ©‹à‡îØF²ÿbÊ™HŽYÿ€È7^5T‹È7€€"Yÿ€!0^ÿ€"gÿ€#š/2!î52=2ltt-kconsumerd2ÌB2ltt-kconsumerd2x"ÖG2ÞK2swapperltt-kconsumerd2y2Â2!ömƒ2‰…2!ö€@ŽK=¿K‡2ˆ‰2!HŽK=¿;—2r™2"ë2 î2"-¢ø20 ltt-kconsumerd;3á3!öZ3†3°Ä@ ÿÿÿÿÿÿÿÿK+3ltt-kconsumerd20ê€!î.283ltt-kconsumerd2swapper#. e#Þe! e"e!Ñe"9#e© jahci —%j'juhci_hcd:usb3 ¯+jù,jeth1 £1j#ë—!rñ—"©ó—#¼Ê#ÈÊ!sÊÊ"ÌÊ!ÍÊ"ØÊ#™ý!‚¥ý"2§ý# z0‚#¼†0‚!Y‰0‚"3‹0‚!5Œ0‚"Ε0‚#³Rc‚!J^c‚"ú_c‚#…:–‚#!A–‚!²C–‚"5E–‚!%F–‚"`P–‚#ÜÉ‚!ÐÉ‚"‰É‚#þèû‚#„ôû‚!^öû‚" øû‚! ùû‚"Äü‚#>È.ƒ!%Ö.ƒ"Æ×.ƒ#ó¢aƒ!X­aƒ"¯aƒ#8Š”ƒ#<”ƒ!‹‘”ƒ"K­”ƒ!k®”ƒ" ·”ƒ#@]ǃ! jǃFpǃkworker/u:3pxWwǃkworker/0:2_(x"V{ǃ£ǃswapperkworker/u:3p›‡Çƒkworker/u:3p7.}ŠÇƒkworker/u:3pkworker/0:2_(ٔǃkworker/0:2_(h À\7.þŸÇƒkworker/0:2_(swapper##;úƒ#‘Eúƒ!mHúƒ"JJúƒ!CKúƒ" Xúƒ#Ÿ-„!$$-„"¹%-„#ó_„#?ü_„!:þ_„"óÿ_„!Ý`„"G `„#áÏ’„!ÇÛ’„"æÝ’„¸â„ahci ]ò„­ó„uhci_hcd:usb3 'ø„wù„eth1 þ„#ë¬Å„#T¹Å„!L»Å„"q½Å„!a¾Å„"ÊÅ„#0‹ø„! —ø„"(™ø„#f+…#hq+…!Es+…"Èt+…!µu+…"Ç+…#/C^…!5O^…"ÐP^…#(‘…#N,‘…!ß.‘…"‰0‘…!v1‘…"M<‘…#øþÃ…!= Ä…"Ø Ä…#vÙö…#æö…!éö…",ëö…!ìö…"q÷ö…#’¶)†!Á)†"7Ã)†1ä.†ahci "ó.†ô.†uhci_hcd:usb3 ù.†«ú.†eth1 gÿ.†#•\†#× \†!Œ£\†"ü¥\†!þ¦\†";²\†#É{†!÷€†"ª‚†#ñL†#lV†!ýX†"ƒZ†!s[†"=Yˆ#ì@Yˆ!bCYˆ"'EYˆ!)FYˆ"øOYˆ#%Œˆ!ÄŒˆ"›Œˆ#*í¾ˆ#ø¾ˆ!cú¾ˆ×þ¾ˆkworker/u:3px"¿ˆ!„¿ˆ"¹ ¿ˆÖ¿ˆswapperkworker/u:3p忈kworker/u:3py ú77.Z$¿ˆkworker/u:3pswapper#NËñˆ!.Öñˆ"Øñˆ#ѧ$‰#˰$‰!v´$‰"P¶$‰!R·$‰"û¿$‰#ìŒW‰!t’W‰"$”W‰#`Љ#ïjЉ!DmЉ"ñnЉ!óoЉ"¡yЉ#>½‰!ÝH½‰"J½‰#Âð‰#„(ð‰!÷*ð‰"},ð‰!Ä-ð‰"6ð‰#·ÿ"Š!¤#Š"Q#Š# ÕUŠ#ôáUŠ!ããUŠ"«åUŠ!­æUŠ"ðUŠ#“±ˆŠ!%¿ˆŠ",ÁˆŠ#ó»Š#›»Š!Cž»Š", »Š!¡»Š"ö«»Š#ajîŠ!iwîŠ"CyîŠ#H!‹#R!‹!T!‹"&V!‹!W!‹"q_!‹#ó#T‹!63T‹ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÍ>T‹È7;ª¥—È7ð€Í>T‹ltt-kconsumerd2ÃET‹ltt-kconsumerd2x"jJT‹ÓMT‹swapperltt-kconsumerd2wT‹ª|T‹!ö¡T‹T‹!ö€@ŽK=¿7ƒT‹J…T‹!HŽK=¿’T‹ð“T‹"•ÏT‹,ÒT‹"-ÝT‹0 ltt-kconsumerd–øT‹ÇúT‹"ûÿT‹ØU‹Ý"-U‹ÝFU‹!ö’U‹òU‹°Ä@ ÿÿÿÿÿÿÿÿ—$U‹ltt-kconsumerd2ÈßHï.T1U‹ltt-kconsumerd2swapper# ‡‹#‡‹!—‡‹" ‡‹!‡‹"Î$‡‹#j繋!/﹋"ëð¹‹#•ºì‹#Åì‹!Èì‹"ìÉì‹!ÙÊì‹"Ôì‹#RŸŒ!ᦌ"ˆ¨Œ#M}RŒ# RŒ!ƒRŒ"Z…RŒ!\†RŒ"•RŒ#¥Q…Œ!½]…Œ"y_…Œ#Æ8¸Œ#(=¸Œ!#?¸Œ"£@¸Œ!äA¸Œ"_K¸Œ#¼ ëŒ!ðëŒ"ÁëŒ#‰ç#bô!?ö"¿÷!¬ø"ðæ#ahci ‡,#.#uhci_hcd:usb3 ®2#4#eth1 É8##pÆP!³ÑP"ÆÓP#¡ƒ#®ƒ!=°ƒ"²ƒ!þ²ƒ"罃#¶~¶!¶ˆ¶"üж#Bbé#hé!mjé"/lé!.mé"ßvé#³7Ž!ñEŽ"•GŽ#§OŽ#*$OŽ!&OŽ"Ò'OŽ!¼(OŽ":2OŽ#ñúŽ!‰ÿŽ"0‚Ž#‘Ñ´Ž#ÚÜ´Ž!ÆÞ´Ž"Rà´Ž!?á´Ž"eë´Ž#_´çŽ!ö¹çŽ"—»çŽ#ˆ#'•!s—"ð˜! š"¤#ÃdM!qM"²rM#¬J€#êN€!Q€"›R€!…S€"]€#·³!+³"Y-³#ªýå#Dæ!‡ æ" æ!ñ æ"èæ#ð×!qä"æ#ô´K!’ÂK"¢ÄK#ì”~#>¡~!$£~"°¤~!¥~"|®~#w±!¡|±"K~±#vKä#ÂWä!/Zä"¯[ä!ç\ä"¶fä#8(‘!l7‘"s9‘#ùJ‘!zJ‘" J‘— O‘ahci O‘\O‘uhci_hcd:usb3 å"O‘$O‘eth1 »(O‘#è|‘#Pì|‘!?î|‘""ð|‘! ñ|‘"Gû|‘#lÀ¯‘!Ï̯‘"ϯ‘#{›â‘#ø¦â‘!¤©â‘"$«â‘!¬â‘"o´â‘#nx’!Ù…’"€‡’#GUH’!QaH’"cH’#À<{’#w@{’!«B{’"Ì]{’!¼^{’"Øf{’#º®’!²®’"V ®’#}îà’#Äøà’![ûà’">ýà’!.þà’"8 á’#rÈ“!šÓ“"ÈÕ“#J®F“#m²F“!_´F“"¶F“!·F“"ÁF“#B‚y“!by“"‘y“#»^¬“#m¬“!§—ltt-kconsumerd2Ÿƒç„ð.ïJ§—ltt-kconsumerd2swapperÑ£°—ahci ³°—õ´°—uhci_hcd:usb3 x¹°—ݺ°—eth1 r¿°—#„„Ø—#%‰Ø—!.ŒØ—"ÝŽØ—!ëØ—"›Ø—#Z ˜!Èf ˜"h ˜#ý5>˜#?>˜!ªA>˜"$C>˜!D>˜"ïM>˜#%q˜!S!q˜"ñ"q˜#ò£˜#vü£˜!éþ£˜"l¤˜!Y¤˜" ¤˜#½ÏÖ˜!ÜÖ˜"*ÞÖ˜#õµ ™#y¹ ™!¼» ™"B½ ™!2¾ ™ëÔ ™ltt-kconsumerd2x"\Ù ™ˆÝ ™swapperltt-kconsumerd2´ó ™óö ™öÊ ™’ ™ö€@ŽK=¿Õ ™ ™HŽK=¿í ™Ç ™H ™«J ™ -ÐR ™P‚0 ltt-kconsumerdÄd ™md1_raid1 m ™}o ™ˆs ™Yu ™Ý‡ƒ ™Ý… ™öˆ ™ÑŠ ™ö}– ™B˜ ™ö€@ŽK=¿š ™ó› ™HŽK=¿è£ ™ ¦ ™Õ ™˜× ™ð-Øß ™‚0 ltt-kconsumerd“î ™ ð ™àäô ™¯ö ™Ýà~ ™Ý ™ö! ™Í ™°Ä@ ÿÿÿÿÿÿÿÿ> ™ltt-kconsumerd20GÌñ.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽj& ™È7Mf›È7€€j& ™ltt-kconsumerd2swapper#œ™!ž™&¤™€ x*"üÀ™#¶Í™!NÏ™&EÒ™€ x*"Áì™#þŸ™!x¡™&$¤™€º~x*³™kworker/0:2_(x"Ÿ»™@À™swapperkworker/0:2_(ZÇ™kworker/0:2_(Æ:.7Ï™kworker/0:2_(swapper#‹Õ™! ×™&dÛ™€º~x*œî™kworker/0:2_(x"x÷™³û™swapperkworker/0:2_(z™kworker/0:2_(† Ù:.C™kworker/0:2_(swapper#È<™!—<™œ<™ltt-kconsumerd2x"… <™ ¤<™swapperltt-kconsumerd2Û¶<™ÿ¹<™!öo¼<™C¾<™!ö€@ŽK=¿ó¿<™Â<™!HŽK=¿•Ì<™lÎ<™"ø<™²ú<™"0-=™0 ltt-kconsumerd =™=™" ¬=™Î=™Ý" £$=™Ýï&=™!ö8)=™ü+=™°Ä@ ÿÿÿÿÿÿÿÿ‰8=™ltt-kconsumerd2íœiò.òC=™ltt-kconsumerd2swapper#œnA™!gpA™&tuA™€Ò}x*µ…A™kworker/0:2_(xŽA™ahci#FšA™ 2œA™©A™uhci_hcd:usb3 ;¢A™Ö£A™eth1 ž¨A™"±A™!@²A™&âµA™€Ò}x*"ùËA™mÐA™swapperkworker/0:2_(FÙA™kworker/0:2_(ÎÑ›!.ÏÑ›"NÙÑ›#ö™œ!¥œ"…§œ#¢v7œ!ƒ„7œ"†7œ#â]jœ#´ajœ!Hdjœ"õejœ!âfjœ"²ojœ#r8œ!™>œ"4@œÛãœmd1_raid1x¯èœswappermd1_raid13½ñœ€ ~x€P0 --ôœ€ ~xmd1_raid1.*úœ€ ~xmd1_raid10ÿýœmd1_raid13Þžœ€ ~x€P0 -~žœ€ ~xmd1_raid1.Yžœ€ ~xmd1_raid1'u žœ€ ~xmd1_raid11ožœmd1_raid1(žœ€ ~xmd1_raid1'ð$žœ€ ~xmd1_raid11m)žœmd1_raid1(ø+žœ€ ~xmd1_raid1“9žœmd1_raid1ÏW.$P.ôDžœmd1_raid1swapper#t~¢œ! €¢œ&؃¢œ€ ~x*µ”¢œkworker/0:2_(x"^¢œÏ¡¢œswapperkworker/0:2_(#Z§¢œ!Ѩ¢œ&¼«¢œ€ ~x*"ÈÆ¢œŒÌ¢œkworker/0:2_(…8=<.΢œkworker/0:1.&xÕ¢œkworker/0:2_(¦ã<.É×¢œkworker/0:2_(kworker/0:1.&ËÛ¢œkworker/0:1.&Ø+–;. â¢œkworker/0:1.&swapper#М#½М!ŠМ"М!ŒМ"¹(М#Tê!ÿ÷"fü#ÊÇ5#àÐ5!>Ó5"úÔ5!üÕ5"˜ß5#Ñ«h!ª±h"T³h#‚€›!!Ž›"ž›# gÎ#llÎ!ÁnÎ"}pÎ!qÎ"ýzÎ#9:ž!žEž"™Gž#4ž#"4ž!q%4ž"ñ&4ž!Þ'4ž"Œ14ž#æófž!Ãþfž"ggž#ÀЙž#üÚ™žÁüÁõ©‹à‡îØF²ÿbÊ™HŽÏÝ™žÈ7…k3ŸÈ7Ø€!ÏÝ™ž¾ç™žltt-kconsumerd2—홞ltt-kconsumerd2x"ªò™ž!âó™ž"iý™ž)šžswapperltt-kconsumerd2Ù,šž2šž!ö¸5šžà7šž!ö€@ŽK=¿B9šž+;šž!HŽK=¿©Gšž†Išž"Û‡šžÆŠšž"P-Š“šž(0 ltt-kconsumerd¸žšžmd1_raid1H¨šžUªšž"@­¯šžñšžÝ"@Ö¼šžÝ澚ž!ö#ÁšžÚžöqКž<Òšžö€@ŽK=¿pÔšž‰ÖšžHŽK=¿ÁÝšž’ßšž Λž_›ž -›ž0 ltt-kconsumerdu.›ž‹0›ž z5›ž„7›žÝ ŽE›žÝ‰G›žö,J›žwM›ž°Ä@ ÿÿÿÿÿÿÿÿ¦Z›žltt-kconsumerd2BnF×ó.od›žltt-kconsumerd2swapperÄu žahci#›€ ž c‚ žþƒ žuhci_hcd:usb3 ~ˆ ž1Š žeth1 Ꭰž!’ ž&j– ž€â}x*"ߨ ž#Z¬ ž!”® ž&å± ž€â}x*"Uàž#/¥ž!y¥ž&#¥ž€J~x*å4¥žkworker/0:1.&x"+=¥žØA¥žswapperkworker/0:1.&;H¥žkworker/0:1.&U›Ð<.ÌO¥žkworker/0:1.&swapper#°Ìž!¼̞"w¿ÌžMÍžmd1_raid1xÛQÍžswappermd1_raid13ªXÍž€š}x€à€0 ->[Íž€š}xmd1_raid1.³aÍž€š}xmd1_raid10seÍžmd1_raid13˜gÍž€š}x€à€0 -óiÍž€š}xmd1_raid1.ÚmÍž€š}xmd1_raid1'‡rÍž€š}xmd1_raid11xÍžmd1_raid1(›|Íž€š}xmd1_raid1' ‹Íž€š}xmd1_raid11IÍžmd1_raid1( ‘Íž€š}xmd1_raid1œÍžmd1_raid1ìOã‡R.m¤Ížmd1_raid1swapper#í¾Ñž!‹ÀÑž&9ÄÑž€š}x*yÒÑžkworker/0:1.&x"FÛÑž–ßÑžswapperkworker/0:1.&*åÑžkworker/0:1.&Œ'ä<.YìÑžkworker/0:1.&swapper#JòÑž!²óÑž&ÜöÑž€š}x*ð Òžkworker/0:1.&x"¬ÒžÉÒžswapperkworker/0:1.&EÒžkworker/0:1.&ý$ö<.J"Òžkworker/0:1.&swapper#ö“ÿž#˜ÿž!Í›ÿž"àÿž!9Ÿÿž"±¨ÿž#oj2Ÿ!2u2Ÿ"Bz2ŸƒF3Ÿmd1_raid1xÃK3Ÿswappermd1_raid13çT3Ÿ€Â~x€‚0 -xW3Ÿ€Â~xmd1_raid1.B]3Ÿ€Â~xmd1_raid10ê`3Ÿmd1_raid13c3Ÿ€Â~x€‚0 -»e3Ÿ€Â~xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ“i3ŸÈ7¢8ý È7H~€.“i3Ÿ€Â~xmd1_raid1'r3Ÿ€Â~xmd1_raid11¦w3Ÿmd1_raid1(h|3Ÿ€Â~xmd1_raid1'/‹3Ÿ€Â~xmd1_raid11C3Ÿmd1_raid1(õ‘3Ÿ€Â~xmd1_raid1Ÿ3Ÿmd1_raid1íZÐâR.?«3Ÿmd1_raid1swapper#BË7Ÿ!ïÌ7Ÿ&”Ð7Ÿ€Â~x*óà7Ÿkworker/0:1.&x"ué7ŸÔí7Ÿswapperkworker/0:1.&Œó7Ÿkworker/0:1.&³ =.šú7Ÿkworker/0:1.&swapper#Ö8Ÿ!b8Ÿ&¡ 8Ÿ€Â~x*e%8Ÿkworker/0:1.&x"N-8Ÿ˜18Ÿswapperkworker/0:1.&D78Ÿkworker/0:1.&“F=.£>8Ÿkworker/0:1.&swapper# MeŸ#FQeŸ!TeŸ/\eŸltt-kconsumerd2ØaeŸltt-kconsumerd2x"îfeŸ!heŸ"âreŸKveŸswapperltt-kconsumerd2B eŸj¥eŸ!ö[¨eŸzªeŸ!ö€@ŽK=¿ý«eŸé­eŸ!HŽK=¿‚ºeŸa¼eŸ"àñeŸÅôeŸ"`-_ýeŸ00 ltt-kconsumerdfŸmd1_raid1QfŸXfŸ"PDfŸ-fŸÝ"P–#fŸÝ‹%fŸ!ö¹'fŸ+fŸ°Ä@ ÿÿÿÿÿÿÿÿ%7fŸltt-kconsumerd2žÖä­ô.^@fŸltt-kconsumerd2swapperébjŸahci#xmjŸ ^ojŸÉpjŸuhci_hcd:usb3 ujŸÌvjŸeth1 ”{jŸ!U~jŸ&ôjŸ€ê}x*¨‘jŸkworker/0:1.&x#1™jŸ"K jŸ!e¡jŸ&¦jŸ€ê}x*"%¼jŸÀjŸswapperkworker/0:1.&±ÆjŸkworker/0:1.&6çÈ=.ÇÈjŸkworker/0:2_(xQÏjŸkworker/0:1.&¾¥Ñ=.¸ÑjŸkworker/0:1.&kworker/0:2_(ŠÕjŸkworker/0:2_(< ™=.+ÝjŸkworker/0:2_(swapper#§*˜Ÿ!92˜Ÿ"¦4˜Ÿ#uËŸ#V ËŸ! ËŸ"+ËŸ!öËŸ"¼ËŸ#šÚýŸ!²äýŸ"VæýŸ#ܸ0 #ÅÄ0 !Ç0 "ôÈ0 !öÉ0 "òÓ0 #tœc !¢c "â£c #5i !¸i &û i €x*(i kworker/0:2_(x"ë0i 85i swapperkworker/0:2_(A;i kworker/0:2_(©É­=.ýBi kworker/0:2_(swapper#|– #x– !f‚– " „– !™…– "[– #©VÉ !…\É "÷_É #¬*ü #85ü !F9ü ";ü !û;ü "Fü  Þü md1_raid1xnãü swappermd1_raid131êü €¢}x€è€0 -Ôìü €¢}xmd1_raid1.lóü €¢}xmd1_raid102÷ü md1_raid13Tùü €¢}x€è€0 -²ûü €¢}xmd1_raid1.“ÿü €¢}xmd1_raid1'[ý €¢}xmd1_raid11ˆ ý md1_raid1(Sý €¢}xmd1_raid1'ý €¢}xmd1_raid112!ý md1_raid1(ö#ý €¢}xmd1_raid1I.ý md1_raid1%PA²T.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽX7ý È7óË¢È7X€X7ý md1_raid1swapper#B:¡!û;¡&v?¡€¢}x* N¡kworker/0:2_(x"òV¡B[¡swapperkworker/0:2_(ñ`¡kworker/0:2_(&ïÀ=.Õg¡kworker/0:2_(swapper#»o¡!5q¡&\t¡€¢}x*xˆ¡kworker/0:2_(x"[¡™”¡swapperkworker/0:2_(œš¡kworker/0:2_(ɸÓ=.S¡¡kworker/0:2_(swapper#Î/¡!/¡×/¡ltt-kconsumerd2»/¡ltt-kconsumerd2x"œ#/¡¼'/¡swapperltt-kconsumerd2•?/¡RC/¡!öàE/¡ºG/¡!ö€@ŽK=¿I/¡öJ/¡!HŽK=¿R/¡tT/¡"~/¡±€/¡"p-‰/¡80 ltt-kconsumerdº’/¡md1_raid1¾š/¡Μ/¡"`„¡/¡g£/¡Ý"`ý¬/¡Ýé®/¡!ö±/¡ÿ³/¡°Ä@ ÿÿÿÿÿÿÿÿÉ¿/¡ltt-kconsumerd2° ”Nõ.!Ë/¡ltt-kconsumerd2swapper#44¡!ð54¡&¥;4¡€ò}x*K4¡kworker/0:2_(x"ÂT4¡# Z4¡!Ä[4¡&ä_4¡€ò}x*"qu4¡©y4¡swapperkworker/0:2_(Í4¡kworker/0:2_(‹5i>.Î4¡kworker/0:1.&xˆ4¡kworker/0:2_(‹ªq>.;Š4¡kworker/0:2_(kworker/0:1.& Ž4¡kworker/0:1.&ý‘9>.*•4¡kworker/0:1.&swapper#jïa¡#óa¡!öa¡"šb¡!¥b¡"`b¡#”¡!oΔ¡"1Ó”¡JÒ™¡ahci#!Ý™¡ ÝÞ™¡<à™¡uhci_hcd:usb3 ¼ä™¡晡eth1 §ê™¡!Þ왡&w𙡀Jx*–š¡kworker/0:1.&x#Aš¡"Ñš¡!ôš¡&ך¡€Jx*"0š¡î3š¡swapperkworker/0:1.&:š¡kworker/0:1.&{9 s>.ì;š¡kworker/0:2_(xòAš¡kworker/0:1.&"{>.#Dš¡kworker/0:1.&kworker/0:2_(§Gš¡kworker/0:2_(Êtw>.¸Nš¡kworker/0:2_(swapper#¤§Ç¡#Ϭǡ!Y°Ç¡"±²Ç¡!ª³Ç¡"—½Ç¡#×{ú¡!B‡ú¡"ž‹ú¡#}`-¢#Ze-¢!4g-¢"½h-¢!­i-¢"ýs-¢#¼4`¢!]B`¢"òC`¢#A“¢!;“¢"î“¢#§Õ™¢!`×™¢&FÜ™¢€ª}x*"]#𠚢!š¢&Pš¢€ª}x*"e,š¢#ø%ž¢!'ž¢&+ž¢€Ê~x*S9ž¢kworker/0:2_(x"Až¢DEž¢swapperkworker/0:2_(zKž¢kworker/0:2_(5©Š>.åRž¢kworker/0:2_(swapper#‘Xž¢!êYž¢&š^ž¢€Ê~x*Ûtž¢kworker/0:2_(x"E}ž¢qž¢swapperkworker/0:2_(熞¢kworker/0:2_(¥N>.zž¢kworker/0:2_(swapper#cñÅ¢#wüÅ¢!ÿÅ¢"{Æ¢!wÆ¢"Z Æ¢ âÊ¢ahci#VíÊ¢ ïÊ¢†ðÊ¢uhci_hcd:usb3 úôÊ¢JöÊ¢eth1 îúÊ¢!ýÊ¢&XË¢€Ò~x*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽjË¢È79Ò–£È7Ø€jË¢kworker/0:2_(x"]Ë¢˜"Ë¢swapperkworker/0:2_(#\(Ë¢! )Ë¢&¹.Ë¢€Ò~x*"JË¢\OË¢kworker/0:2_((>vÛ>.?QË¢kworker/0:1.&xcWË¢kworker/0:2_(4ªã>.÷YË¢kworker/0:2_(kworker/0:1.&±]Ë¢kworker/0:1.&u—>.’dË¢kworker/0:1.&swapper#Öø¢!aÛø¢Ãâø¢ltt-kconsumerd2|çø¢ltt-kconsumerd2x"ìø¢qïø¢swapperltt-kconsumerd2aù¢­ù¢!ö_"ù¢<$ù¢!ö€@ŽK=¿‰%ù¢o'ù¢!HŽK=¿Y4ù¢N6ù¢"‘qù¢:tù¢"€-ì|ù¢@ƒ0 ltt-kconsumerd"ù¢,‘ù¢"pµ•ù¢•—ù¢Ý"p7¡ù¢Ý,£ù¢!öf¥ù¢“¨ù¢°Ä@ ÿÿÿÿÿÿÿÿ`´ù¢ltt-kconsumerd2ªÍ>ö.Àù¢ltt-kconsumerd2swapper# 4þ¢!î5þ¢&n:þ¢€úx*Oþ¢kworker/0:1.&x"øXþ¢Ÿ]þ¢swapperkworker/0:1.&xcþ¢kworker/0:1.&!_?.×jþ¢kworker/0:1.&swapper#þ²+£#Ķ+£!”¹+£"1¼+£!6½+£"Ç+£yF,£md1_raid1xüJ,£swappermd1_raid13>Q,£€²}x€ø€0 -½S,£€²}xmd1_raid1.YZ,£€²}xmd1_raid10ò],£md1_raid13ð_,£€²}x€ø€0 -!b,£€²}xmd1_raid1.f,£€²}xmd1_raid1'µj,£€²}xmd1_raid11ßo,£md1_raid1(Ïs,£€²}xmd1_raid1'1,£€²}xmd1_raid11Ù„,£md1_raid1(݆,£€²}xmd1_raid1•’,£md1_raid1ªL?bX.êš,£md1_raid1swapper#o¢0£!¤0£&”§0£€²}x*d¶0£kworker/0:1.&x"‹¿0£Ä0£swapperkworker/0:1.&ÛÉ0£kworker/0:1.&@Ÿ*?.ãÐ0£kworker/0:1.&swapper#SÖ0£!Ü×0£&ëÚ0£€²}x*Ãí0£kworker/0:1.&x"—õ0£Øù0£swapperkworker/0:1.& ÿ0£kworker/0:1.&å„1¬Ý9@1¬ö¯B1¬UE1¬°Ä@ ÿÿÿÿÿÿÿÿ•V1¬ltt-kconsumerd2e`xåø.ú`1¬ltt-kconsumerd2swapper#|%7¬!Y'7¬&Ü+7¬€â~x*"‡D7¬# ¾;¬!z¿;¬&¬Ã;¬€€x*"OÑ;¬#Üø;¬!&ú;¬&Sý;¬€€x*"É <¬#Ž?¬!?¬&ü ?¬€Š€x*‰?¬kworker/0:2_(x"Ã?¬#?¬swapperkworker/0:2_(»)?¬kworker/0:2_(ÑIÞA.A1?¬kworker/0:2_(swapper#™‚¬!p@‚¬"’E‚¬!…F‚¬"FR‚¬#ºµ¬!=µ¬"µ¬#÷ç¬#·ûç¬!åýç¬"•ÿç¬!—è¬"J è¬`í¬ahci#d*í¬ _,í¬ñ-í¬uhci_hcd:usb3 †2í¬÷3í¬eth1 õ8í¬! ;í¬&­>í¬€Rx*=Qí¬kworker/0:2_(x#9Xí¬"_í¬!L`í¬&]dí¬€Rx*"‘~í¬«‚í¬swapperkworker/0:2_(‰í¬kworker/0:2_(9Ÿ*B.T‹í¬kworker/0:1.&xŸ‘í¬kworker/0:2_(¯N3B.ß“í¬kworker/0:2_(kworker/0:1.&«—í¬kworker/0:1.& „ÐA..Ÿí¬kworker/0:1.&swapper#Ô­!®Ù­"$Ü­#I¦M­#â³M­!¶M­"6ºM­!#»M­"CÅM­#­!â‘€­"ד€­#&a³­#k³­!^n³­" p³­!"q³­"dz³­#dEæ­!7Kæ­"óLæ­#ª®#&®ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ„(®È7æïO¯È7x€!„(®à/®ltt-kconsumerd2À4®ltt-kconsumerd2x"9®!9:®"¾B®_F®swapperltt-kconsumerd24e®j®!ö«l®vn®!ö€@ŽK=¿Òo®»q®!HŽK=¿›|®~®"‡Ã®lÆ®"À-*Ï®hƒ0 ltt-kconsumerdªß®Àá®"°"æ® è®Ý"°„ð®Ý|ò®!ö‰ô®¿÷®°Ä@ ÿÿÿÿÿÿÿÿ ®ltt-kconsumerd2Jеù.% ®ltt-kconsumerd2swapper#i‡®!‰®&&Ž®€"€x*y¤®kworker/0:1.&x"¨®®[³®swapperkworker/0:1.&F¹®kworker/0:1.&Øš°B.œÀ®kworker/0:1.&swapper#€þK®!¹L®"L®¶”L®md1_raid1xl™L®swappermd1_raid13áŸL®€’€x€Øƒ0 -r¢L®€’€xmd1_raid1.¥¨L®€’€xmd1_raid10J¬L®md1_raid13T®L®€’€x€Øƒ0 -U°L®€’€xmd1_raid1.ô³L®€’€xmd1_raid1'b¸L®€’€xmd1_raid11ð½L®md1_raid1(ÂÁL®€’€xmd1_raid1'ÀÏL®€’€xmd1_raid11eÓL®md1_raid1(0ÕL®€’€xmd1_raid1­ßL®md1_raid1ÛK•£`.çL®md1_raid1swapper#1Q®!Q®&ƒQ®€’€x*{*Q®kworker/0:1.&x"3Q®_7Q®swapperkworker/0:1.&öö}¯Ýø}¯!ö:ú}¯yý}¯°Ä@ ÿÿÿÿÿÿÿÿ‘ ~¯ltt-kconsumerd2‚ËDú.~¯ltt-kconsumerd2swapper A‚¯ahci#æK‚¯ ¨M‚¯(O‚¯uhci_hcd:usb3 ®S‚¯U‚¯eth1 ÉY‚¯!\‚¯&V`‚¯€*€x*^p‚¯kworker/0:2_(x"ôy‚¯,~‚¯swapperkworker/0:2_(J„‚¯kworker/0:2_(D{C.ˆ‹‚¯kworker/0:2_(swapper#‘‚¯!‡’‚¯&:—‚¯€*€x*Šª‚¯kworker/0:2_(x"¯ö¶‚¯swapperkworker/0:2_('¼‚¯kworker/0:2_(T˜C.炯kworker/0:2_(swapper#É °¯#ž°¯!•°¯"ü°¯!°¯"…°¯#gÞâ¯!íâ¯"oòâ¯#ò¹°#áİ!ÆÇ°"yɰ!~ʰ"VÔ°#ã–H°!Y¦H°"OÂH°#T}{°#¹{°!V„{°"ý…{°!í†{°"){°#)X®°!É]®°"d_®°#†/á°#%<á°!.?á°"ê@á°!ìAá°">Já°#E±!ʱ"†±#®èF±#zòF±!zõF±"ýöF±!ê÷F±"G±#-cL±!¼dL±& iL±€ê~x*t…L±kworker/0:2_(x"ŽL±ˆ’L±swapperkworker/0:2_(U˜L±kworker/0:2_(Iá¡C.“ŸL±kworker/0:2_(swapper#_Çy±! Óy±"~Õy±’z±md1_raid1x—z±swappermd1_raid13¦z±€¢€x€èƒ0 - z±€¢€xmd1_raid1.Q¦z±€¢€xmd1_raid10Ï©z±md1_raid13Á«z±€¢€x€èƒ0 -Ô­z±€¢€xmd1_raid1.¦±z±€¢€xmd1_raid1'2¶z±€¢€xmd1_raid116»z±md1_raid1(e¿z±€¢€xmd1_raid1':Ìz±€¢€xmd1_raid11ôÏz±md1_raid1(¿Ñz±€¢€xmd1_raid1Ýz±md1_raid1NK­¶b. äz±md1_raid1swapper#…þ~±!)±&°±€¢€x*±kworker/0:2_(x"W±§±swapperkworker/0:2_(&$±kworker/0:2_(bCµC.û*±kworker/0:2_(swapper#_0±!ë1±&5±€¢€x*óG±kworker/0:2_(x"µO±ÞS±swapperkworker/0:2_(!Y±kworker/0:2_( OÇC.Ÿ_±kworker/0:2_(swapper#œ£¬±#W­¬±!c°¬±"U²¬±!N³¬±"2½¬±# €ß±!·‹ß±"Xß±#JZ²!i²"ˆj²#;:E²#bFE²!¥HE²"%JE²!KE²"UE²#ëx²! !x²"õ"x²ÁüÁõ©‹à‡îØF²ÿbÊ™HŽLòª²È7Ì ´È7È€#Lòª²#!ÿª²!v«²À«²ltt-kconsumerd2â «²ltt-kconsumerd2x"½«²!Ñ«²"F«²ú«²swapperltt-kconsumerd2B5«²89«²!öÛ;«²¾=«²!ö€@ŽK=¿?«²÷@«²!HŽK=¿šI«²ŒK«²"?w«²z«²"à-»‚«²xƒ0 ltt-kconsumerd'Œ«²md1_raid1"”«²–«²"Ð¸š«²¤œ«²Ý"Ц«²Ý¨«²!öEª«²-­«²°Ä@ ÿÿÿÿÿÿÿÿ“¹«²ltt-kconsumerd2°á1û.x«²ltt-kconsumerd2swapper#J0°²!2°²&E8°²€2€x*ÄI°²kworker/0:2_(x"¢S°²IX°²swapperkworker/0:2_(#¿]°²!_°²&µd°²€2€x*"¸y°²4°²kworker/0:2_(K6,MD.5°²kworker/0:1.&xM‡°²kworker/0:2_(UUD.;а²kworker/0:2_(kworker/0:1.&Lް²kworker/0:1.&óÔD.ñ”°²kworker/0:1.&swapper#ð×ݲ!&Þݲ"oàݲÝâ²ahci#4èâ² äéâ²jëâ²uhci_hcd:usb3 Õïâ²ñâ²eth1 Àõâ²!ß÷â²&Nûâ²€~x* ã²kworker/0:1.&x#aã²"4ã²!Kã²&!ã²€~x*"ú<ã²í@ã²swapperkworker/0:1.&ÉFã²kworker/0:1.&Œ:`XD.¾Hã²kworker/0:2_(x»Nã²kworker/0:1.&1‘`D.àPã²kworker/0:1.&kworker/0:2_(sTã²kworker/0:2_(ÁB[D.`[ã²kworker/0:2_(swapper#ë³!.·³"๳#Ûß³!ˆá³&áå³€Z~x*w³kworker/0:2_(x"ƒ ³Ó³swapperkworker/0:2_(³kworker/0:2_(CoD.“³kworker/0:2_(swapper#ÿC³#F•C³!^˜C³"ÝšC³!Ù›C³"‹§C³SD³md1_raid1x¦WD³swappermd1_raid13^D³€ª€x€ðƒ0 -y`D³€ª€xmd1_raid1.ÍfD³€ª€xmd1_raid10BjD³md1_raid13lD³€ª€x€ðƒ0 -YnD³€ª€xmd1_raid1.[rD³€ª€xmd1_raid1'ÞvD³€ª€xmd1_raid11]|D³md1_raid1(M€D³€ª€xmd1_raid1'xŽD³€ª€xmd1_raid11’D³md1_raid1(<”D³€ª€xmd1_raid1 žD³md1_raid1K®d.Z¦D³md1_raid1swapper#¾ÎH³!_ÐH³&ÑÓH³€ª€x*ÆáH³kworker/0:2_(x"êH³ÅîH³swapperkworker/0:2_(#\ôH³!ÊõH³&”øH³€ª€x*"‰ I³áI³kworker/0:2_(Ä/ŸD.ÊI³kworker/0:1.&xÇI³kworker/0:2_(%,§D.ˆI³kworker/0:2_(kworker/0:1.&BI³kworker/0:1.&{ gD.M&I³kworker/0:1.&swapper#pv³!&wv³"Nyv³#A©³# L©³!}N©³"`S©³!ST©³"`©³#èܳ!ç)ܳ"©+ܳ#›´ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ… ´È7×Ó–¶È7x€#… ´!Ø´´ltt-kconsumerd21´ltt-kconsumerd2x"Ö´!ù´"Œ)´‚-´swapperltt-kconsumerd2E´èH´!ö»K´’M´!ö€@ŽK=¿O´æP´!HŽK=¿êX´ÄZ´"z†´2‰´"ð-ç‘´€ƒ0 ltt-kconsumerdM›´md1_raid1E£´=¥´"àÒ©´¾«´Ý"à—´´ÝŒ¶´!öø´½»´°Ä@ ÿÿÿÿÿÿÿÿùÇ´ltt-kconsumerd2v­Wßû.Àдltt-kconsumerd2swapper#<4´!6´&<´€:€x*M´kworker/0:1.&x#•Y´"Ì[´!þ\´&Þa´€:€x*"Žx´}´swapperkworker/0:1.&Dƒ´kworker/0:1.&ü6SûD.™…´kworker/0:2_(xº‹´kworker/0:1.&©üE.Ž´kworker/0:1.&kworker/0:2_(á‘´kworker/0:2_(rÊD.¤˜´kworker/0:2_(swapper#ÏÙA´!3èA´"šêA´#V´t´#Ú¾t´!€Át´"9Æt´!>Çt´"9Òt´#Dœ§´!ý §´"¹¢§´# wÚ´#{Ú´!ý}Ú´"}Ú´!j€Ú´"§‹Ú´#‰S µ!ZX µ" Z µ#¤(@µ#L3@µ!È5@µ"]7@µ!M8@µ"6C@µ#Ñ sµ!³sµ"]sµ#Œâ¥µ#쥵!~ð¥µ"ò¥µ!ñò¥µ"ÿ¥µ#¾Øµ!‹Êص"2ÌØµ#£ ¶#A§ ¶!$© ¶"˪ ¶!»« ¶"¸ ¶#´w>¶!xƒ>¶"…>¶#@\q¶#cq¶!eq¶"Ÿfq¶!gq¶"rq¶<“¶uhci_hcd:usb4 î@“¶MB“¶eth0#öG“¶ ïH“¶!)K“¶½e“¶sshdf(+j“¶sshdf(x"Åu“¶z“¶swappersshdf(K‰“¶_“¶𢴀ÿp£´€ÿÞ“¶å‘“¶p£´€ÿ­““¶ɘ“¶àc´€ÿ@ “¶0”¸“¶@ù¨ª2 ù¨ª2zÆ“¶áÈ“¶𢴀ÿp£´€ÿ²Ê“¶‰Ì“¶p£´€ÿ÷Í“¶ŽÐ“¶ Eªª2ËØ“¶sshdf(²¶Ý`2K²¶Ý„M²¶öS²¶™X²¶°Ä@ ÿÿÿÿÿÿÿÿp²¶¯r²¶öƒz²¶i|²¶ö€@ŽK=¿×}²¶ç²¶HŽK=¿Íв¶ÎŒ²¶ªË²¶kβ¶à-öÖ²¶øƒ0 ltt-kconsumerdèç²¶ïé²¶ÐÕî²¶²ð²¶ÝÐiú²¶Ý=ü²¶ö¶þ²¶V³¶°Ä@ ÿÿÿÿÿÿÿÿ|³¶ltt-kconsumerd2Êþ!Þü.³¶ltt-kconsumerd2swapper#­¶¶!i¶¶&ˆ ¶¶€ú€x*"ܶ¶#–c¶¶! e¶¶&²h¶¶€ú€x*"O}¶¶ûœº¶ahci#C©º¶ öªº¶X¬º¶uhci_hcd:usb3 ÿ°º¶O²º¶eth1 綺¶!?¹º¶&R»º¶€²€x* ɺ¶kworker/0:2_(x"KѺ¶#(Öº¶!~׺¶&{Úº¶€²€x*"€íº¶»ñº¶swapperkworker/0:2_(Ä÷º¶kworker/0:2_(£/ÄòE.Îùº¶kworker/0:1.&x$»¶kworker/0:2_(o 3üE.‚»¶kworker/0:2_(kworker/0:1.&9»¶kworker/0:1.&9ZÉE.ã»¶kworker/0:1.&swapper#Õ×¶#’×¶!¶×¶"w!×¶!j"×¶"¿-×¶#=ë ·!#ù ·"þ ·#"Ò<·#Ô×<·!çÙ<·"vÛ<·!cÜ<·"æ<·# ¦o·!̱o·"ß³o·# ƒ¢·#Q¢·!:‘¢·"±’¢·!›“¢·"ý¢·#ÎaÕ·!;»&ÖB;»€J€x*>S;»kworker/0:1.&x#…Z;»"ºa;»!éb;»&Ng;»€J€x*"0|;»z€;»swapperkworker/0:1.&†;»kworker/0:1.&V4(ÙF.Šˆ;»kworker/0:2_(xÆŽ;»kworker/0:1.&IqáF.‘;»kworker/0:1.&kworker/0:2_(¥”;»kworker/0:2_(â´ªF.(œ;»kworker/0:2_(swapper#Tèh»!>õh»"Ÿ÷h»#/n»!™0n»&b4n»€"x*½Nn»kworker/0:2_(x"‡Wn»Ô[n»swapperkworker/0:2_(›an»kworker/0:2_(‘E¿F.vhn»kworker/0:2_(swapper#ÆÌ›»#¹Ð›»!¶Ó›»"Ö›»!ûÖ›»"»à›»#ð§Î»!¯¬Î»"{°Î»#Ò{¼#J…¼!Ї¼"j‰¼!oм"q”¼#qâ¼!!ä¼&Íé¼€b~x*Žû¼kworker/0:2_(x"¬¼#^ ¼!í ¼&ò¼€b~x*"b-¼41¼swapperkworker/0:2_(a7¼kworker/0:2_(½<üF.V9¼kworker/0:1.&xY?¼kworker/0:2_(G.öA¼kworker/0:2_(kworker/0:1.&­E¼kworker/0:1.&cÔçF.pL¼kworker/0:1.&swapper#ôZ4¼!6g4¼"ñi4¼Ï05¼md1_raid1x…55¼swappermd1_raid13<5¼€Â€x€„0 -¸>5¼€Â€xmd1_raid1.BE5¼€Â€xmd1_raid10I5¼md1_raid13*K5¼€Â€x€„0 -1M5¼€Â€xmd1_raid1.Q5¼€Â€xmd1_raid1'›U5¼€Â€xmd1_raid11ðZ5¼md1_raid1(ò^5¼€Â€xmd1_raid1' o5¼€Â€xmd1_raid11ºr5¼md1_raid1(yt5¼€Â€xmd1_raid1f5¼md1_raid1cQÏûj.‰5¼md1_raid1swapper#9¼!’9¼&••9¼€Â€x*½£9¼kworker/0:1.&x" ¬9¼z°9¼swapperkworker/0:1.&ÁüÁõ©‹à‡îØF²ÿbÊ™HŽe¶9¼È7Ò9ÀÈ7€e¶9¼kworker/0:1.&&úúF.ο9¼kworker/0:1.&swapper#£Ø9¼!>Ú9¼&zÝ9¼€Â€x*”ð9¼kworker/0:1.&x"hø9¼ ü9¼swapperkworker/0:1.&‘:¼kworker/0:1.&½· G.Š :¼kworker/0:1.&swapper#¡>g¼#£Bg¼!ÍEg¼³Jg¼ltt-kconsumerd2ÁNg¼ltt-kconsumerd2x"“Rg¼!ªSg¼"”]g¼ag¼swapperltt-kconsumerd2%zg¼~g¼!ö÷€g¼Ô‚g¼!ö€@ŽK=¿9„g¼(†g¼!HŽK=¿°Žg¼‡g¼"%¿g¼éÁg¼" -¶Êg¼˜ƒ0 ltt-kconsumerd Õg¼md1_raid1sÝg¼zßg¼" äg¼øåg¼Ý"7ïg¼Ý/ñg¼!öZóg¼]ög¼°Ä@ ÿÿÿÿÿÿÿÿSh¼ltt-kconsumerd2Dµuþ.7 h¼ltt-kconsumerd2swapperl¼ahci#U'l¼ 8)l¼ *l¼uhci_hcd:usb3 /l¼¸0l¼eth1 q5l¼!)8l¼& uü¾#Ñxü¾!Àzü¾"R|ü¾!?}ü¾"ˇü¾#™P/¿!V/¿"Ãq/¿#ÿ%b¿#3b¿!û5b¿f:b¿kworker/u:3px­Ab¿kworker/0:1.&x"REb¿!iFb¿"ÈPb¿¯Tb¿swapperkworker/u:3p]b¿kworker/u:3p;QvG.G_b¿kworker/u:3pkworker/0:1.&?jb¿kworker/0:1.&M ^«G.?pb¿kworker/0:1.&swapper## •¿!Q•¿"[•¿#ÄéÇ¿# íÇ¿!‚ïÇ¿"VñÇ¿!jòÇ¿"ðüÇ¿#ž¼ú¿!¤Éú¿"ZËú¿#Š™-À#u¦-À!©-À"”«-À!¥¬-À"q¶-À#Àmd1_raid1x2â>Àswappermd1_raid13Èè>À€Z€x€ ƒ0 ->ë>À€Z€xmd1_raid1.7ò>À€Z€xmd1_raid10 ö>Àmd1_raid13=ø>À€Z€x€ ƒ0 -Yú>À€Z€xmd1_raid1.øý>À€Z€xmd1_raid1'c?À€Z€xmd1_raid11X?Àmd1_raid1(T ?À€Z€xmd1_raid1'/?À€Z€xmd1_raid11¿?Àmd1_raid1(‡?À€Z€xmd1_raid1*?Àmd1_raid1ÉNHæm.‰3?Àmd1_raid1swapper}c?Àmd1_raid1xh?Àswappermd1_raid13ëm?À€Ò€x€„0 -4p?À€Ò€xmd1_raid1.Du?À€Ò€xmd1_raid10Yx?Àmd1_raid13Ðy?À€Ò€x€„0 -é{?À€Ò€xmd1_raid1.,€?À€Ò€xmd1_raid1'4„?À€Ò€xmd1_raid11lˆ?Àmd1_raid1(º‹?À€Ò€xmd1_raid1'ž•?À€Ò€xmd1_raid11™?Àmd1_raid1(íš?À€Ò€xmd1_raid1Ó¥?Àmd1_raid1öB>)n.¹­?Àmd1_raid1swapper#ÎàDÀ!xâDÀ&öåDÀ€Ê€x*"½ôDÀ# EÀ!h EÀ&áEÀ€Ê€x*üEÀltt-kconsumerd2ÎEÀltt-kconsumerd2x"G.EÀ…2EÀswapperltt-kconsumerd2Ô=EÀ­@EÀÝÛKEÀÝôMEÀö»PEÀµSEÀ°Ä@ ÿÿÿÿÿÿÿÿMgEÀltt-kconsumerd2vGŒ¼þ.ÀoEÀltt-kconsumerd2swapper#÷1IÀ!›3IÀ&7IÀ€Êx*"ÂEIÀ#á[IÀ!]IÀ&ƒ_IÀ€Êx*"bqIÀ#“ÑLÀ!"ÓLÀ&­ÕLÀ€Z€x*"®àLÀ­íLÀahci#oøLÀ +úLÀ«ûLÀuhci_hcd:usb3 IMÀ“MÀeth1 OMÀ!¸MÀ&k MÀ€Z€x*"QMÀ# PÀ!MPÀ&iPÀ€Ò€x*·PÀkworker/0:1.&x"×PÀ<PÀswapperkworker/0:1.&l"PÀkworker/0:1.&~ܽG.°)PÀkworker/0:1.&swapper#<€`À!r†`À"<‰`À#4S“À#^“À!Æ`“À"Ýd“À!Íe“À"q“À#§0ÆÀ! ?ÆÀ"¡@ÆÀ#ËùÀ#ÖùÀ!ÑùÀ"]ùÀ!JùÀ"¿*ùÀ#®é+Á!Sö+Á"ø+Á#eÇ^Á!´Ó^Á"=Õ^Á#.­‘Á#²‘Á! ´‘Á"‰µ‘Á!y¶‘Á"ø¾‘Á#€ÄÁ!ÄÁ"¡ÄÁ#¡f÷Á#åj÷Á!òl÷Á"un÷Á!bo÷Á"íw÷Á#C*Â!G*Â"%I*Â#r]Â#_#]Â!´%]Â"v']Â!x(]Â" 1]Â#ÇüÂ!bÂ"úÂ#.ÚÂÂ#zßÂÂ!ØáÂÂ"‚ãÂÂ!‡äÂÂ"ÓìÂÂ#­õÂ!ǸõÂ"wºõÂ#»‰(Ã#à”(Ã!Ý—(Ã"Š™(Ã!Œš(Ã"q£(Ã#šf[Ã!1u[Ã"Þv[Õ\Ãmd1_raid1x$\Ãswappermd1_raid13û+\Àbx€¨‚0 -e.\Àbxmd1_raid1.¬5\Àbxmd1_raid109\Ãmd1_raid13Ž;\Àbx€¨‚0 -Â=\Àbxmd1_raid1.šA\Àbxmd1_raid1'bF\Àbxmd1_raid11 M\Ãmd1_raid1(PR\Àbxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÒ`\ÃÈ7‡•ZÄÈ7€€'Ò`\Àbxmd1_raid11€g\Ãmd1_raid1(#j\Àbxmd1_raid15v\Ãmd1_raid1XFn.•‚\Ãmd1_raid1swapper#×¹`Ã!x»`Ã#%À`Ã&4Ã`Àbx*kÔ`Ãkworker/0:1.&x"ÿÜ`Ã!OÞ`Ã&â`Àbx*"ùú`ÃCÿ`Ãswapperkworker/0:1.&jaÃkworker/0:1.&à1¼ïG.PaÃkworker/0:2_(x³ aÃkworker/0:1.&O øG.ØaÃkworker/0:1.&kworker/0:2_(zaÃkworker/0:2_(îz§G.¦aÃkworker/0:2_(swapper#·EŽÃ#¡PŽÃ!qSŽÃHXŽÃltt-kconsumerd2D\ŽÃltt-kconsumerd2x"Ä`ŽÃ!ðaŽÃ"ŒkŽÃoŽÃswapperltt-kconsumerd2zŽŽÃè’ŽÃ!öµ•ŽÃ˜—ŽÃ!ö€@ŽK=¿ý˜ŽÃ㚎Ã!HŽK=¿º¥ŽÃš§ŽÃ"%ÝŽÃÝߎÃ"@-òèŽÃ¨ƒ0 ltt-kconsumerd–óŽÃmd1_raid1KüŽÃIþŽÃ"0ÀþÃÝ"0ÉÃݾÃ!öéà ðÄ@ ÿÿÿÿÿÿÿÿ‹"Ãltt-kconsumerd2ÏÆ[ƒÿ.L+Ãltt-kconsumerd2swapper#^f“Ã!)h“Ã&kn“Àb€x*s~“Ãkworker/0:2_(x"Õˆ“ÃX“Ãswapperkworker/0:2_(L““Ãkworker/0:2_(Þ9~H.{š“Ãkworker/0:2_(swapper#Û¥“Ã!C§“Ã&¿¬“Àb€x*£¿“Ãkworker/0:2_(x"dÈ“ÃÌ“Ãswapperkworker/0:2_(Ò“Ãkworker/0:2_(ü5‘H.ÀØ“Ãkworker/0:2_(swapper#+ÁÃ!1ÁÃ"É3ÁÃ#pþóÃ#EôÃ!ô ôÃ"4ôÃ!'ôÃ",ôÃ#`PùÃ!×QùÃ&ƒWùÀj~x*sjùÃkworker/0:2_(x"dsùÃÕwùÃswapperkworker/0:2_(#Ì}ùÃ!ùÃ&„ƒùÀj~x*"žùÃd£ùÃkworker/0:2_(b:—ËH.Y¥ùÃkworker/0:1.&xh«ùÃkworker/0:2_("¹ÓH.®ùÃkworker/0:2_(kworker/0:1.&ì±ùÃkworker/0:1.&{ÖnH.œ¹ùÃkworker/0:1.&swapper#;ç&Ä!Cî&Ä"¿ð&Äðò+Äahci#Hþ+Ä ïÿ+Äi,Äuhci_hcd:usb3 ì,Ä!,Äeth1 ï ,Ä! ,Ä&>,Ä€Òx*¬!,Äkworker/0:1.&x"7*,Äx.,Äswapperkworker/0:1.& 4,Äkworker/0:1.&e;‚H.à;,Äkworker/0:1.&swapper#J,Ä!L,Ä&•P,Ä€Òx*Xi,Äkworker/0:1.&x"=r,Ä„v,Äswapperkworker/0:1.&Ù{,Äkworker/0:1.&J…•H.´‚,Äkworker/0:1.&swapper#6¾YÄ#/ÂYÄ!_ÅYÄ"çÇYÄ!éÈYÄ"&ÔYÄyZÄmd1_raid1x·}ZÄswappermd1_raid13„ZÄ€Ú€x€ „0 -†ZÄ€Ú€xmd1_raid1.ðŒZÄ€Ú€xmd1_raid10_ZÄmd1_raid13Ã’ZÄ€Ú€x€ „0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽt–ZÄÈ7qˆÇÈ7X€-t–ZÄ€Ú€xmd1_raid1.›ZÄ€Ú€xmd1_raid1'¡ŸZÄ€Ú€xmd1_raid11„¤ZÄmd1_raid1(q¨ZÄ€Ú€xmd1_raid1'ø·ZÄ€Ú€xmd1_raid11Ü»ZÄmd1_raid1(ŽZÄ€Ú€xmd1_raid1•ÉZÄmd1_raid1Q—p.2ÒZÄmd1_raid1swapper•[Ämd1_raid1xW [Äswappermd1_raid13”[Ä€j€x€°ƒ0 -Î[Ä€j€xmd1_raid1.G[Ä€j€xmd1_raid10V[Ämd1_raid136[Ä€j€x€°ƒ0 -7[Ä€j€xmd1_raid1.Ì"[Ä€j€xmd1_raid1'"'[Ä€j€xmd1_raid11E+[Ämd1_raid1(‡.[Ä€j€xmd1_raid1' 9[Ä€j€xmd1_raid11…<[Ämd1_raid1(Y>[Ä€j€xmd1_raid1çI[Ämd1_raid1*E=Üp.£Q[Ämd1_raid1swapper#š{`Ä!P}`Ä&€`Ä€Ú€x*"G”`Ä#×™dÄ!'›dÄ&ŸdÄ€j€x*é«dÄkworker/0:1.&x"·³dÄò·dÄswapperkworker/0:1.&¼½dÄkworker/0:1.&¥*¨H.ÄÄdÄkworker/0:1.&swapper#•ÏdÄ!ÑdÄ&ÔdÄ€j€x*mådÄkworker/0:1.&x")ídÄgñdÄswapperkworker/0:1.&¶ödÄkworker/0:1.&ú$ºH.jýdÄkworker/0:1.&swapper#7 ŒÄ!Ú¥ŒÄZªŒÄkworker/u:3px"e®ŒÄñ²ŒÄswapperkworker/u:3pT¿ŒÄkworker/u:3p f~H.YÉŒÄkworker/u:3pswapper#.z¿Ä#R}¿Ä!Ö€¿Ä"¹…¿Ä!»†¿Ä"ÿÄ#lWòÄ!”\òÄ"e^òÄ#d+%Å#-5%Å!¬7%Å"/9%Å!":%Å"ˆC%Å_ç%Åmd1_raid1x<ì%Åswappermd1_raid13‰ó%Å€*x€p‚0 -Ûõ%Å€*xmd1_raid1.xû%Å€*xmd1_raid10Ãþ%Åmd1_raid13l&Å€*x€p‚0 -Ž&Å€*xmd1_raid1.H&Å€*xmd1_raid1'µ &Å€*xmd1_raid11:&Åmd1_raid1(ÿ&Å€*xmd1_raid1'`%&Å€*xmd1_raid11)&Åmd1_raid1(z,&Å€*xmd1_raid1£9&Åmd1_raid1KTˆ0q.:B&Åmd1_raid1swapper#˜o*Å!Bq*Å&Àt*Å€*x*„*Åkworker/0:1.&x"ÌŒ*Å‘*Åswapperkworker/0:1.&#ø–*Å!Z˜*Å&i›*Å€*x*" ²*ÅD·*Åkworker/0:1.&ó3îH.B¹*Åkworker/0:2_(xÿ*Åkworker/0:1.&š±öH.NÂ*Åkworker/0:1.&kworker/0:2_(;Æ*Åkworker/0:2_(œUÚH.×Ì*Åkworker/0:2_(swapper#YXÅ!êXÅ"XÅ#ÜãŠÅ!VïŠÅ"*ôŠÅ#Ó˽Å#ÞϽÅ!ÖѽÅ"‰Ó½Å!|Ô½Å"EÞ½Å#~ðÅ! «ðÅ"½¬ðÅ#Tz#Æ!t„#Æ"®†#Æ#tYVÆ#ÛeVÆ!HhVÆ"æiVÆ!èjVÆ"{tVÆ#V5‰Æ!@‰Æ"ÔA‰Æ#M¼Æ#â¼Æ! ¼Æ"¢!¼Æ!¡"¼Æ".¼Æ#ëøîÆ!1þîÆ"ØÿîÆ#4Ó!Ç#–×!Ç!‚Ù!Ç"Û!Ç!Ü!Ç"1å!Ç#ý°TÇ!L¶TÇ"í·TÇ#„‡Ç! ‡Ç"(“‡Çg_ˆÇmd1_raid1xGdˆÇswappermd1_raid13älˆÇ€ x€P„0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽŸoˆÇÈ75÷·ÉÈ7ð~€-ŸoˆÇ€ xmd1_raid1.£wˆÇ€ xmd1_raid10{ˆÇmd1_raid13Ü}ˆÇ€ x€P„0 -àˆÇ€ xmd1_raid1.߃ˆÇ€ xmd1_raid1'¹ˆˆÇ€ xmd1_raid11/ŽˆÇmd1_raid1(©’ˆÇ€ xmd1_raid1'5¦ˆÇ€ xmd1_raid11‘ªˆÇmd1_raid1('®ˆÇ€ xmd1_raid1ø»ˆÇmd1_raid1ã^kq.¼ÇˆÇmd1_raid1swapper ‰Çmd1_raid1x,‰Çswappermd1_raid13ʉǀr€x€¸ƒ0 -‰Ç€r€xmd1_raid1. ‰Ç€r€xmd1_raid10”$‰Çmd1_raid13d'‰Ç€r€x€¸ƒ0 -w)‰Ç€r€xmd1_raid1..-‰Ç€r€xmd1_raid1'Æ1‰Ç€r€xmd1_raid11þ5‰Çmd1_raid1(X9‰Ç€r€xmd1_raid1'†D‰Ç€r€xmd1_raid11æG‰Çmd1_raid1(ÀI‰Ç€r€xmd1_raid1ìV‰Çmd1_raid14MŸÜq.Ø^‰Çmd1_raid1swapperqŽÇahci#€#ŽÇ 6%ŽÇ¡&ŽÇuhci_hcd:usb3 +ŽÇP,ŽÇeth1 ú0ŽÇ!¦3ŽÇ&‚6ŽÇ€ x*"…HŽÇ##_ŽÇ!j`ŽÇ&³bŽÇ€ x*"0|ŽÇ#˜£’Ç!Ö¤’Ç&‚§’Ç€r€x*€¾’Çkworker/0:2_(x"9ƒǧʒÇswapperkworker/0:2_(ÔÐ’Çkworker/0:2_(A–íH.2Ø’Çkworker/0:2_(swapper#kºÇ#»oºÇ!yrºÇ"auºÇ!`vºÇ"¤€ºÇ#'?íÇ!RJíÇ"÷MíÇ#5* È#ì- È!Ò/ È"p1 È!Z2 È"ñ= È#„÷RÈ!ŒSÈ"!SÈ#:Ô…È#Îà…È!Ìâ…È"Oä…È!9å…È"·î…È#‹¹¸È!⿸È"’Á¸È#÷ëÈ#ú™ëÈ!OœëÈ" žëÈ!"ŸëÈ"S§ëÈèJìÈmd1_raid1xPìÈswappermd1_raid13‚YìÈ€*~x€p0 -ï[ìÈ€*~xmd1_raid1.EcìÈ€*~xmd1_raid10ºfìÈmd1_raid13jìÈ€*~x€p0 --lìÈ€*~xmd1_raid1.{oìÈ€*~xmd1_raid1'‹tìÈ€*~xmd1_raid11jzìÈmd1_raid1(JìÈ€*~xmd1_raid1'¦ŒìÈ€*~xmd1_raid11JìÈmd1_raid1()“ìÈ€*~xmd1_raid1‰ŸìÈmd1_raid1²VQ3r..©ìÈmd1_raid1swapper#¥ÓðÈ!7ÕðÈ&ÇØðÈ€*~x*pêðÈkworker/0:2_(x"+óðÈf÷ðÈswapperkworker/0:2_(#ÜüðÈ!#þðÈ&JñÈ€*~x*"3ñÈ ñÈkworker/0:2_(ð6†$I.›"ñÈkworker/0:1.&xò(ñÈkworker/0:2_(… -I.È+ñÈkworker/0:2_(kworker/0:1.&Ä/ñÈkworker/0:1.&ÒƒýH.~6ñÈkworker/0:1.&swapper#lÉ!ñyÉ"U|É# HQÉ#«SQÉ!QVQÉ"ËZQÉ!Í[QÉ"ÀeQÉ#$„É!b2„É"u4„É#Û ·É#• ·É!S·É"·É!·É"ˆ·É5Ê·Émd1_raid1xñηÉswappermd1_raid13HÕ·É€â€x€(„0 -µ×·É€â€xmd1_raid1.sÝ·É€â€xmd1_raid10¬à·Émd1_raid13Jâ·É€â€x€(„0 -fä·É€â€xmd1_raid1.Õç·É€â€xmd1_raid1'õë·É€â€xmd1_raid11 ñ·Émd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ ö·ÉÈ7+ƒ~ÍÈ7è€( ö·É€â€xmd1_raid1'o¸É€â€xmd1_raid11¡ ¸Émd1_raid1(¸ɀâ€xmd1_raid1!¸Émd1_raid1•Ræ…r.¯$¸Émd1_raid1swapper#ÐM¼É!_O¼É&øR¼É€â€x*a¼Ékworker/0:1.&x"Ûi¼ÉOn¼Éswapperkworker/0:1.&.t¼Ékworker/0:1.&† I.H{¼Ékworker/0:1.&swapper#U¿É!’V¿É&éY¿É€â€x*Òm¿Ékworker/0:1.&x"‘u¿Éz¿Éswapperkworker/0:1.&¿¿Ékworker/0:1.&¥®#I.‹†¿Ékworker/0:1.&swapper#àéÉ!ÿíéÉ÷òéÉltt-kconsumerd2çöéÉltt-kconsumerd2x"õúéÉLþéÉswapperltt-kconsumerd2¦êÉÀêÉ!öGêÉ êÉ!ö€@ŽK=¿¶!êÉê#êÉ!HŽK=¿,êÉæ-êÉ"ËiêɉlêÉ"p-¶uêÉ@…0 ltt-kconsumerd€êÉmd1_raid1 ˆêɪŠêÉ"`WêÉX‘êÉÝ"`­œêÉÝ™žêÉ!öÇ êÉÙ£êɰÄ@ ÿÿÿÿÿÿÿÿB°êÉltt-kconsumerd2ºm=/ñ»êÉltt-kconsumerd2swapperÚïÉahci# ïÉ Ö ïÉnïÉuhci_hcd:usb3 ôïÉwïÉeth1 0ïÉ!ñïÉ&„ ïÉ€úx*­0ïÉkworker/0:1.&x":ïÉ ?ïÉswapperkworker/0:1.&wEïÉkworker/0:1.&Àn9I.'MïÉkworker/0:1.&swapper#ÜRïÉ!GTïÉ&ŠYïÉ€úx*ÔlïÉkworker/0:1.&x"AuïÉUyïÉswapperkworker/0:1.&¹~ïÉkworker/0:1.&Æ4LI.s…ïÉkworker/0:1.&swapper#VÆÊ#4ÊÊ!LÍÊ"›ÏÊ!¦ÐÊ"ºÚÊ#Û™OÊ!Ò¥OÊ"èªOÊ#’t‚Ê#Vƒ‚Ê!-…‚Ê"³†‚Ê!£‡‚Ê"ì’‚Ê#³RµÊ!Ó]µÊ"³_µÊ#h.èÊ#E7èÊ!Ó9èÊ"I;èÊ!9<èÊ"IGèÊ#* Ë!ÒË"‚Ë#ÌèMË#¢õMË!øMË"†ùMË!vúMË"ðNË#Í€Ë!„Ó€Ë"Õ€Ë#Ï¡³Ë!Ú®³Ë"Õ°³Ë#æË#à‰æË!”ŒæË"ŽæË! æË"ð™æË#a[Ì!riÌ"²kÌ#8LÌ#ØBLÌ!ûELÌ"rGLÌ!•HLÌ"ÓRLÌ#ìÌ!O!Ì"G#Ì#Åô±Ì#n²Ì!I²Ì"í²Ì!Ú²Ì"²Ì#ºÎäÌ!æÙäÌ"ÛÛäÌ#QµÍ#5¹Í!$»Í"˜¼Í!ˆ½Í"™ÇÍ#CˆJÍ!_”JÍ"–JÍ#‚f}Í#©p}Í!Is}Í"Ëu}Í!Ív}Í"‚}ÍT-~Ímd1_raid1x.2~Íswappermd1_raid13Ü8~Í€ê€x€0„0 -d;~Í€ê€xmd1_raid1.ÓA~Í€ê€xmd1_raid10]E~Ímd1_raid13IG~Í€ê€x€0„0 -ŒI~Í€ê€xmd1_raid1.=M~Í€ê€xmd1_raid1'ØQ~Í€ê€xmd1_raid11W~Ímd1_raid1(S[~Í€ê€xmd1_raid1'šh~Í€ê€xmd1_raid11Zl~Ímd1_raid1(1n~Í€ê€xmd1_raid1ny~Ímd1_raid17M37t.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÿ~ÍÈ7,)yÐÈ7€ÿ~Ímd1_raid1swapper#š”‚Í! –‚Í&¤™‚Í€ê€x*ð§‚Íkworker/0:1.&x"o°‚Í×´‚Íswapperkworker/0:1.&Œº‚Íkworker/0:1.&hœ_I.‘Á‚Íkworker/0:1.&swapper#+Ç‚Í!™È‚Í&ÿ˂̀ê€x*Eß‚Íkworker/0:1.&x".ç‚Íië‚Íswapperkworker/0:1.&¾ð‚Íkworker/0:1.&9ÕqI.]÷‚Íkworker/0:1.&swapper#rM°Í!'U°ÍËY°Íltt-kconsumerd2÷]°Íltt-kconsumerd2x"Þa°ÍÈe°Íswapperltt-kconsumerd2ì}°Íš°Í!öX„°Í/†°Í!ö€@ŽK=¿…‡°Ít‰°Í!HŽK=¿‘°Íg“°Í"yưÍ(ɰÍ"€-%Ò°ÍH…0 ltt-kconsumerdåÛ°Ímd1_raid1ä°Íóå°Í"pXê°Í ì°ÍÝ"pÀô°Íݵö°Í!öÑø°ÍÝû°Í°Ä@ ÿÿÿÿÿÿÿÿ¿±Íltt-kconsumerd2¯ªè/›±Íltt-kconsumerd2swapper#éBµÍ!EµÍ&JµÍ€‚x*PYµÍkworker/0:1.&x"©cµÍÿgµÍswapperkworker/0:1.&ümµÍkworker/0:1.&x”âI.=uµÍkworker/0:1.&swapper#ГµÍ!G•µÍ&ô™µÍ€‚x*ó¬µÍkworker/0:1.&x"¢µµÍ×¹µÍswapperkworker/0:1.&)¿µÍkworker/0:1.&üõI.ìŵÍkworker/0:1.&swapper#x'ãÍ#…,ãÍ!£/ãÍ"æ1ãÍ!ú2ãÍ"">ãÍ#ªÎ!S Î"C(Î#ùàHÎ#­äHÎ!æHÎ"èHÎ!éHÎ"XôHÎ#=¶{Î!vÂ{Î"JÄ{Î#á›®Î#SŸ®Î!<¡®Î"¹¢®Î!¨£®Î"Ú­®Î#únáÎ!¤}áÎ"6áÎ#³LÏ#XÏ!ŽZÏ"\Ï! ]Ï"|eÏ#S…Ï! ‡Ï&t‹Ï€jx*ÿœÏkworker/0:1.&x"}¦Ï«Ïswapperkworker/0:1.&ç±Ïahci# ¾Ï пÏ\ÁÏuhci_hcd:usb3 úÅÏ­ÇÏeth1 `ÌÏ!ÜÎÏ&ÒÏ€jx*"€ëÏñÏkworker/0:1.&óTƒJJ.óÏkworker/0:2_(x*ùÏkworker/0:1.&mðRJ.üÏkworker/0:1.&kworker/0:2_(ÕÿÏkworker/0:2_(¨ÄÓI.RÏkworker/0:2_(swapper#.+GÏ!|7GÏ"×9GÏ#…zÏ#²zÏ!ËzÏ"¥zÏ!¤zÏ"1$zÏ#…ê¬Ï!²ð¬Ï"qò¬Ï#ãÆßÏ#¨ËßÏ!iÎßÏ" ÐßÏ!ÑßÏ"’ÛßÏ#G§Ð!Q¬Ð"à­Ð#ŸÐ!Ð#·Ð&XЀÚx*N/Ðkworker/0:2_(x"'8Ð!S9Ð&>ЀÚx*"YÐÈ]Ðswapperkworker/0:2_(¿cÐkworker/0:2_([5 J.¥eÐkworker/0:1.&x¢kÐkworker/0:2_( ,J.nÐkworker/0:2_(kworker/0:1.&rqÐkworker/0:1.&ñáXJ.ˆyÐkworker/0:1.&swapper##‚EÐ#}…EÐ!ˆEÐ"¢ŠEÐ!ª‹EÐ"u–EÐ#cVxÐ!`xÐ"ìdxÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽô'yÐÈ7‹DÐÈ7X~€ô'yÐmd1_raid1x¥.yÐswappermd1_raid13>5yЀò€x€8„0 -®7yЀò€xmd1_raid1.>yЀò€xmd1_raid10˜AyÐmd1_raid13™CyЀò€x€8„0 -EyЀò€xmd1_raid1.6IyЀò€xmd1_raid1'˜MyЀò€xmd1_raid112SyÐmd1_raid1(0XyЀò€xmd1_raid1'UfyЀò€xmd1_raid11`jyÐmd1_raid1( myЀò€xmd1_raid1yyÐmd1_raid1GR.v.R„yÐmd1_raid1swapper<±yÐmd1_raid1x¶yÐswappermd1_raid13z»yЀx€X„0 -«½yЀxmd1_raid1.ÐÂyЀxmd1_raid10âÅyÐmd1_raid13zÇyЀx€X„0 -“ÉyЀxmd1_raid1.þÍyЀxmd1_raid1'îÑyЀxmd1_raid11kÖyÐmd1_raid1(ªÙyЀxmd1_raid1'ßæyЀxmd1_raid11ŠêyÐmd1_raid1(yìyЀxmd1_raid1møyÐmd1_raid1ÙGòuv.VzÐmd1_raid1swapper«;zÐmd1_raid1xI@zÐswappermd1_raid13¤EzЀ ‚x€P…0 -ØGzЀ ‚xmd1_raid1.ñLzЀ ‚xmd1_raid10¸OzÐmd1_raid13qQzЀ ‚x€P…0 -ŸSzЀ ‚xmd1_raid1.ŒWzЀ ‚xmd1_raid1'Ð[zЀ ‚xmd1_raid11_`zÐmd1_raid1(ŒczЀ ‚xmd1_raid1'ËrzЀ ‚xmd1_raid11%vzÐmd1_raid1(çwzЀ ‚xmd1_raid1m…zÐmd1_raid1UJGÀv.½ŒzÐmd1_raid1swapper¯²zÐmd1_raid1xq·zÐswappermd1_raid13À¼zЀú‚x€@†0 -ý¾zЀú‚xmd1_raid1.¿ÃzЀú‚xmd1_raid10ÈÆzÐmd1_raid13~ÈzЀú‚x€@†0 -—ÊzЀú‚xmd1_raid1.ÓÍzЀú‚xmd1_raid1'½ÑzЀú‚xmd1_raid11ìÕzÐmd1_raid1(ÙzЀú‚xmd1_raid1'—åzЀú‚xmd1_raid11åèzÐmd1_raid1(³êzЀú‚xmd1_raid1özÐmd1_raid1DHw.ÃýzÐmd1_raid1swapper#O„Ð!ÌP„Ð&nT„Ѐò€x*" c„Ð#%v„Ð!ow„Ð&3z„Ѐò€x*…„Ðltt-kconsumerd2“‰„Ðltt-kconsumerd2x"З„Ð2œ„Ðswapperltt-kconsumerd2Y¨„Ð#«„ÐÝ`Rµ„ÐÝY·„Ðöº„ÐƼ„аÄ@ ÿÿÿÿÿÿÿÿ"Í„Ðltt-kconsumerd2žCº+/VÕ„Ðltt-kconsumerd2swapper#…®ˆÐ!2°ˆÐ&ѳˆÐ€x*"õÁˆÐ#àÖˆÐ!0؈Ð&ýڈЀx*"´êˆÐ®â‹Ðahci#î‹Ð ¿ï‹Ðñ‹Ðuhci_hcd:usb3 ¡õ‹ÐÙö‹Ðeth1 Œû‹Ð!Éý‹Ð&Žÿ‹Ð€ ‚x*" ŒÐ#ŒÐ!CŒÐ&nŒÐ€ ‚x*"K*ŒÐ#r!Ð!¿"Ð&ê$Ѐú‚x*\7Ðkworker/0:1.&x"¬>ÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽeCÐÈ7F^×ÔÈ7È€eCÐswapperkworker/0:1.&ÆKÐkworker/0:1.&B#nJ.mSÐkworker/0:1.&swapper#u=«Ð#‰A«Ð!bD«ÐŽH«Ðltt-kconsumerd2x"™L«Ð!¶M«Ð"xX«Ð \«Ðswapperltt-kconsumerd2šo«Ð-s«Ð!ö²u«Ð}w«Ð!ö€@ŽK=¿Üx«ÐËz«Ð!HŽK=¿…«Ðõ†«Ð"K²«Ðµ«Ð" -¯½«ÐX…0 ltt-kconsumerdTÇ«Ðmd1_raid1²Ï«ÐÈÑ«Ð"ŸÖ«Ð‹Ø«ÐÝ"¦á«Ðݪã«Ð!öÀå«Ðâç«ÐöNñ«Ðó«Ðö€@ŽK=¿ô«Ðyö«ÐHŽK=¿Ÿý«Ðsÿ«ÐX/¬Ð2¬Ðp-99¬Ðx‚0 ltt-kconsumerdtH¬ÐáJ¬Ð`O¬ÐÞP¬ÐÝ`U[¬ÐÝ_]¬Ðöð_¬Ðºb¬Ð°Ä@ ÿÿÿÿÿÿÿÿ8o¬Ðltt-kconsumerd2 'ÚR/ x¬Ðltt-kconsumerd2swapper#˜‡±Ð!–‰±Ð&r±Ð€‚x*"4 ±Ð#謱Ð!J®±Ð&L²±Ð€‚x*"ïñÐ#VÚµÐ!ÁÛµÐ& ÞµÐ€2x*?ëµÐkworker/0:1.&x" óµÐ;øµÐswapperkworker/0:1.&#µÿµÐ!¶Ð&ζЀ2x*³¶Ðkworker/0:1.&7)aK.ä¶Ðkworker/0:2_(x"÷¶ÐU#¶Ðkworker/0:1.&óqK.7&¶Ðkworker/0:1.&kworker/0:2_(*¶Ðkworker/0:2_(´Ž>K.X1¶Ðkworker/0:2_(swapper#²ÞÐ!Ð ÞÐ"7#ÞÐ#¼íÑ#NöÑ!áùÑ"lÿÑ!nÑ" Ñ# ÓCÑ! ÙCÑ"ÛCÑ#I°vÑ#õµvÑ!_¸vÑ"0ºvÑ!2»vÑ"2ÄvÑ#¨‚©Ñ!Ë©Ñ"ù©Ñ#ˆlÜÑ# pÜÑ!rÜÑ"«sÜÑ!˜tÜÑ"S}ÜÑ#DÒ!`IÒ"þJÒ#!BÒ#š%BÒ!ì'BÒ"u)BÒ!e*BÒ"ù2BÒ#1uÒ! uÒ"ëuÒ#Û§Ò#0ß§Ò!¦á§Ò"\ã§Ò!^ä§Ò"sí§Ò#u¶ÚÒ!-¼ÚÒ"Ú½ÚÒ#`— Ó#+œ Ó!ž Ó"…Ÿ Ó!r  Ó"ÿ¨ Ó#Ji@Ó!þs@Ó"äu@Ó#kOsÓ#œTsÓ!©VsÓ")XsÓ!YsÓ"[asÓ#l+¦Ó!Ô/¦Ó"l1¦Ó#ËÙÓ#Ô ÙÓ!ÀÙÓ"|ÙÓ!{ÙÓ"ýÙÓ#`Ý Ô!Hê Ô"jì Ô#tÂ>Ô#£Æ>Ô!¶È>Ô"`Ê>Ô!bË>Ô"hÔ>Ô#½˜qÔ!ó¢qÔ"—¤qÔ¢;xÔahci#ÂExÔ GxÔ IxÔuhci_hcd:usb3 ®MxÔOxÔeth1 áSxÔ!*VxÔ&ÆYxÔ€ƒx*"lxÔ# ¤xÔ!Y¥xÔ&y©xÔ€ƒx*"%ÁxÔ#„÷|Ô!ãø|Ô&*ü|Ô€2~x*ê}Ôkworker/0:2_(x"ý}Ôƒ!}Ôswapperkworker/0:2_(ž'}Ôkworker/0:2_(4ÂRK./}Ôkworker/0:2_(swapper#t¤Ô#7¤Ô!1‚¤Ô"Ô!ô…¤Ô"8¤Ô#R×ÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽ]×ÔÈ7Üì ØÈ7€!]×Ôzi×Ôltt-kconsumerd2Œn×Ôltt-kconsumerd2x"s×ÔZv×Ôswapperltt-kconsumerd2ÖŸ×Ô—¥×Ô!ö:¨×Ô ª×Ô!ö€@ŽK=¿d«×ÔG­×Ô!HŽK=¿n¹×ÔE»×Ô"cñ×Ôô×Ô"°-—ü×Ô`…0 ltt-kconsumerddØÔkØÔ" ôØÔÈØÔÝ" . ØÔÝ&"ØÔ!öT$ØÔ`'ØÔ°Ä@ ÿÿÿÿÿÿÿÿ~3ØÔltt-kconsumerd2÷ÅÑ/9?ØÔltt-kconsumerd2swapper#lÜÔ!!nÜÔ#)tÜÔ&hwÜÔ€‚x*$ˆÜÔkworker/0:2_(x"’ÜÔ!L“ÜÔ&k˜ÜÔ€‚x*"¯ÜÔž³ÜÔswapperkworker/0:2_(¤¹ÜÔkworker/0:2_(U2&0L.¨»ÜÔkworker/0:1.&xðÁÜÔkworker/0:2_(…«8L.'ÄÜÔkworker/0:2_(kworker/0:1.&ÆÇÜÔkworker/0:1.&Ó¤L.4ÏÜÔkworker/0:1.&swapper#C8 Õ#Ó; Õ!²> Õ"%A Õ!0B Õ"µM Õ#D =Õ!ˆ=Õ"S=Õ#€íoÕ#|ñoÕ!nóoÕ"3õoÕ!5öoÕ"åpÕ#¥Ì¢Õ!6Ò¢Õ"ïÓ¢Õ#y¢ÕÕ#«ÕÕ!±°ÕÕ"v²ÕÕ!x³ÕÕ"ý»ÕÕ#Î|Ö!¹†Ö"cˆÖ#”É Ö!8Ë Ö&ôÏ Ö€úƒx*ñá Ökworker/0:1.&x"Bë Ö›ï Öswapperkworker/0:1.&jõ Ökworker/0:1.&ÄhL.™ü Ökworker/0:1.&swapper#ÞÖ!4Ö&Î!Ö€úƒx*;Ökworker/0:1.&x"DÖtHÖswapperkworker/0:1.&ÌMÖkworker/0:1.&Œô+L.­TÖkworker/0:1.&swapper#¿b;Ö#Lf;Ö!Ri;Ö"Ôk;Ö!Ðl;Ö"0v;Ö#ã?nÖ!eEnÖ"îInÖ#ã¡Ö#€ ¡Ö!o"¡Ö"û#¡Ö!è$¡Ö".¡Ö#QðÓÖ!ŠýÓÖ"1ÿÓÖ#Í×#tØ×!ÕÚ×"RÜ×!?Ý×"çæ×#Ñ©9×!´9×"´µ9×##Žl×#•‘l×!„“l×"(•l×!-–l×"Ížl×#‚dŸ×!ÀlŸ×"0oŸ×#îBÒ×#´LÒ×!uOÒ×"QÒ×!RÒ×"mZÒ×#QØ!€(Ø"i*ØRìØmd1_raid1xçðØswappermd1_raid13¡÷Ø€ ƒx€P†0 -PúØ€ ƒxmd1_raid1.õØ€ ƒxmd1_raid10ÊØmd1_raid13ûØ€ ƒx€P†0 - Ø€ ƒxmd1_raid1.¡ Ø€ ƒxmd1_raid1'0Ø€ ƒxmd1_raid11–Ømd1_raid1(ÐØ€ ƒxmd1_raid1'Ò,Ø€ ƒxmd1_raid11é0Ømd1_raid1(å3Ø€ ƒxmd1_raid1¶AØmd1_raid1RVN'{.JØmd1_raid1swapper#5‚ Ø!åƒ Ø&f‡ Ø€ ƒx*£• Økworker/0:1.&x¤ Øahci#Z¨ Ø Cª ØØ« Øuhci_hcd:usb3 m° Øð± Øeth1 ¬¶ Ø"¡¾ Ø!»¿ Ø&æÁ Ø€ ƒx*"¶Ö ØÁÚ Øswapperkworker/0:1.&Äà Økworker/0:1.&óKçwL.×â Økworker/0:2_(xé Økworker/0:1.&aH€L.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ¤ë ØÈ7®—ÜÈ7À€¤ë Økworker/0:1.&kworker/0:2_(€ñ Økworker/0:2_(‹6AL.Óø Økworker/0:2_(swapper#K8Ø#§ 8Ø!È 8Ø"Õ8Ø!ã8Ø"Ä"8Ø]è8Ømd1_raid1xˆí8Øswappermd1_raid13îö8Ø€"‚x€h…0 -Xù8Ø€"‚xmd1_raid1.ûþ8Ø€"‚xmd1_raid10ß9Ømd1_raid13ú9Ø€"‚x€h…0 -û9Ø€"‚xmd1_raid1.X 9Ø€"‚xmd1_raid1'J9Ø€"‚xmd1_raid11!9Ømd1_raid1(Ÿ9Ø€"‚xmd1_raid1'$9Ø€"‚xmd1_raid11œ'9Ømd1_raid1(g)9Ø€"‚xmd1_raid1D79Ømd1_raid1Qix{.Ì?9Ømd1_raid1swapperÕi9Ømd1_raid1xîn9Øswappermd1_raid13w9Ø€âx€(ƒ0 -Jy9Ø€âxmd1_raid1.“~9Ø€âxmd1_raid10É9Ømd1_raid13E„9Ø€âx€(ƒ0 -‹†9Ø€âxmd1_raid1.Ö‰9Ø€âxmd1_raid1'ƒŽ9Ø€âxmd1_raid11â’9Ømd1_raid1(–9Ø€âxmd1_raid1'|¡9Ø€âxmd1_raid11è¤9Ømd1_raid1(Œ¦9Ø€âxmd1_raid1ð±9Ømd1_raid1FJ¯Â{.º9Ømd1_raid1swapper#͉>Ø!w‹>Ø#>Ø& “>Ø€"‚x*"ð¢>Ø!ì£>Ø&þ¦>Ø€"‚x*"½º>Ø#AàjØ!"çjØ"£êjØ#ǵØ#ÂØ!tÄØ"îÅØ!䯨"”ÑØ#±‘ÐØ!6›ÐØ"ÈœÐØ#zxÙ#Î{Ù!®}Ù"dÙ!Q€Ù"“‰Ù#4J6Ù!3T6Ù"ÑU6Ù#'iÙ#5iÙ!a7iÙ"Ø8iÙ!Â9iÙ"ìBiÙ#çœÙ!gœÙ"œÙ#WêÎÙ#8îÎÙ!3ðÎÙ"°ñÎÙ! òÎÙ"©ûÎÙ#c¾Ú!3ËÚ"ÝÌÚ#nš4Ú# §4Ú!ç©4Ú"¬«4Ú!®¬4Ú"ÿµ4Ú#;€gÚ!<…gÚ"à†gÚ#áSšÚ#µašÚ!4dšÚ"ºešÚ!ÔfšÚ"òošÚ#í0ÍÚ!˜;ÍÚ"T=ÍÚ#² Û#µÛ!Û"Û!ÿÛ"Â(Û´ÛÛmd1_raid1xáÛswappermd1_raid13ÑèÛ€rx€¸‚0 - ëÛ€rxmd1_raid1.³ñÛ€rxmd1_raid10õÛmd1_raid13:øÛ€rx€¸‚0 -VúÛ€rxmd1_raid1.¦þÛ€rxmd1_raid1'¤Û€rxmd1_raid11ƒ Ûmd1_raid1(ÌÛ€rxmd1_raid1'€Û€rxmd1_raid11! Ûmd1_raid1(#Û€rxmd1_raid1í.Ûmd1_raid1±T`|.A8Ûmd1_raid1swapper#cÛ!é‚Û&O†Û€rx*l–Ûkworker/0:2_(x"ÙžÛA£Ûswapperkworker/0:2_(#[ªÛ!ç«Û&ä®Û€rx*ÅÛkworker/0:2_(7/mpL.&ÇÛkworker/0:1.&x"lÏÛsÔÛkworker/0:2_(«€L.ïÖÛkworker/0:2_(kworker/0:1.&»ÚÛkworker/0:1.&H†L. âÛkworker/0:1.&swapper#&ô2Û!¤ú2Û"Õü2Û#CÏeÛ#ÄÕeÛ!ª×eÛ"ÜeÛ!ðÜeÛ"üåeÛ#­˜Û!D²˜Û"ܳ˜Û#ƒŠËÛ#|ŽËÛ!¶ËÛ"3’ËÛ! “ËÛ"JœËÛ#¨^þÛ!FjþÛ"blþÛ#^D1Ü#êH1Ü!¥K1Ü"M1Ü! N1Ü"!W1Ü#¡dÜ!‡#dÜ"7%dÜ#cû–Ü#Ýÿ–Ü! —Ü"š—Ü!Š—ÜÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‘—ÜÈ7ò=,ßÈ7Ѐ"‘—Ü#ßÚÉÜ!ÄàÉÜòåÉÜltt-kconsumerd2¼ëÉÜltt-kconsumerd2x"rðÉÜPôÉÜswapperltt-kconsumerd2ÖÊÜVÊÜ!öõÊÜÊÜ!ö€@ŽK=¿ŽÊÜq!ÊÜ!HŽK=¿3,ÊÜ.ÊÜ"$hÊÜîjÊÜ"Ð-£sÊÜp…0 ltt-kconsumerd›~ÊÜmd1_raid1%ˆÊÜ2ŠÊÜ"ÀÐŽÊÜæÊÜÝ"À ›ÊÜÝþœÊÜ!öAŸÊ܉¢ÊܰÄ@ ÿÿÿÿÿÿÿÿÅ®ÊÜltt-kconsumerd2¡ÄrÝ/³ºÊÜltt-kconsumerd2swapper#QÿÎÜ!ÏÜ&üÏÜ€*‚x*ÒÏÜkworker/0:1.&x"°!ÏÜQ&ÏÜswapperkworker/0:1.&{,ÏÜkworker/0:1.&´&ØL.:4ÏÜkworker/0:1.&swapper#ÞAÏÜ!yCÏÜ&2HÏÜ€*‚x*Í[ÏÜkworker/0:1.&x"…dÏÜíhÏÜswapperkworker/0:1.&unÏÜkworker/0:1.&µëL.,uÏÜkworker/0:1.&swapper#õ·üÜ#s»üÜ!s¾üÜ"ºÙüÜ!¶ÚüÜ"•ãüÜ#w•/Ý!-š/Ý"þž/Ý#°gbÝ!'sbÝ"ÈtbÝ#G•Ý#|R•Ý!XU•Ý"›W•Ý!X•Ý"zc•Ý#¤œšÝ!„žšÝ&Ô¢šÝ€z„x*µšÝkworker/0:1.&x":¾šÝšÝswapperkworker/0:1.&¨ÈšÝkworker/0:1.&â—M.æÏšÝkworker/0:1.&swapperBàšÝahci#*ìšÝ %îšÝÀïšÝuhci_hcd:usb3 aôšÝÀõšÝeth1 ÐúšÝ!1ýšÝ&›Ý€z„x*›Ýkworker/0:1.&x"ä"›Ý '›Ýswapperkworker/0:1.&Ñ,›Ýkworker/0:1.&}M.-4›Ýkworker/0:1.&swapper#q"ÈÝ!«1ÈÝ"Z4ÈÝJìÈÝmd1_raid1x!ñÈÝswappermd1_raid13½÷ÈÝ€ƒx€X†0 -“úÈÝ€ƒxmd1_raid1.¨ÉÝ€ƒxmd1_raid10GÉÝmd1_raid136ÉÝ€ƒx€X†0 -vÉÝ€ƒxmd1_raid1.‡ ÉÝ€ƒxmd1_raid1'XÉÝ€ƒxmd1_raid11hÉÝmd1_raid1(dÉÝ€ƒxmd1_raid1' )ÉÝ€ƒxmd1_raid11H-ÉÝmd1_raid1(I/ÉÝ€ƒxmd1_raid1·9ÉÝmd1_raid1N×}.íAÉÝmd1_raid1swapper#[rÍÝ!ósÍÝ#ŽxÍÝ&{ÍÝ€ƒx*³‰ÍÝkworker/0:1.&x"e’ÍÝ!»“ÍÝ&Í–ÍÝ€ƒx*"4«ÍÝœ¯ÍÝswapperkworker/0:1.&µÍÝkworker/0:1.&j,~@M.£·ÍÝkworker/0:2_(x¾ÍÝkworker/0:1.&‘IM.ÀÍÝkworker/0:1.&kworker/0:2_(ÄÍÝkworker/0:2_(-ŸÈL.ËÍÝkworker/0:2_(swapper#³ûÝ#ý ûÝ!*ûÝ"XûÝ!cûÝ"ßûÝ#üÝ-Þ!ë-Þ"Ïï-Þ#¹`Þ!¢Ä`Þ"‹Æ`Þ#†“Þ#%¡“Þ!j¤“Þ"#¦“Þ!%§“Þ"²“Þ#„qÆÞ! ƒÆÞ"Þ„ÆÞ#ýWùÞ#]ùÞ!t_ùÞ"EaùÞ!2bùÞ"–mùÞ#G-,ß!°:,ßÁüÁõ©‹à‡îØF²ÿbÊ™HŽ·<,ßÈ7¶.§àÈ7Ð~€"·<,ß#ÿ_ß#5_ß!§_ßÜ_ßltt-kconsumerd2ä_ßltt-kconsumerd2x"’!_ß!¯"_ß"Ÿ,_ßP0_ßswapperltt-kconsumerd2ØG_ß­K_ß!öbN_ß6P_ß!ö€@ŽK=¿žQ_ß{S_ß!HŽK=¿Ð[_ß¿]_ß"´Œ_ßl_ß"à- ˜_ßx…0 ltt-kconsumerdo¡_ßmd1_raid1v©_߉«_ß"Ðc°_ßL²_ßÝ"Р»_ßݘ½_ß!ö·¿_ßÄÁ_ßöyÍ_ß;Ï_ßö€@ŽK=¿ÐÐ_ßïÒ_ßHŽK=¿EÚ_ß4Ü_ß B `ßÇ`ß -)`ßH‡0 ltt-kconsumerd¨$`ßµ&`ß €ó*`ßµ,`ßÝ €;7`ßÝ'9`ßöÁ;`ß»>`ß°Ä@ ÿÿÿÿÿÿÿÿÕK`ßltt-kconsumerd2. /äT`ßltt-kconsumerd2swapper#Ô¬eß!¨®eß&C³e߀2‚x*" Êeß#»iß!Ú¼iß#=Ãiß&°Åi߀„x*HÓißkworker/0:2_(x"9Üiß!eÝiß&†ài߀„x*"äñiß^öißswapperkworker/0:2_(Oüißkworker/0:2_(*$N.Jþißkworker/0:1.&xjßkworker/0:2_(Os#N.Õjßkworker/0:2_(kworker/0:1.&} jßkworker/0:1.&ú ÷M. jßkworker/0:1.&swapper#6î‘ß!Çö‘ß"ù‘ß#ÅÃÄß#ŸÏÄß!™ÒÄß"£×Äß!±ØÄß"†âÄß#†ž÷ß!äª÷ß"¸¬÷ß#I‚*à#M‡*à!T‰*à"ÔŠ*à!Ä‹*à" —*à##[]à!Ðe]à"bg]à#P5à#Aà!ûBà"~Dà!nEà"Nà à›àahci#cê›à "ì›à¢í›àuhci_hcd:usb3 :ò›à¢ó›àeth1 [ø›à!ú›à&§ý›à€x*"«œà#Iœà!{Jœà&\Nœà€x*6_œàltt-kconsumerd2Qeœàltt-kconsumerd2x"…vœàízœàswapperltt-kconsumerd2c‹œàŽœàݰ¬™œàݰ›œàöŠ œàú¥œà°Ä@ ÿÿÿÿÿÿÿÿÚÈœàltt-kconsumerd2¨c·o/ Óœàltt-kconsumerd2swapper#‡Ÿ à!¡ à&£¤ à€êx*"» à#ç‹£à!.£à&‘£à€ƒx*"%Ÿ£à#mí£à!Õî£à&Wñ£à€ƒx*"¤à#õצà!EÙ¦à&fܦà€"x*‰é¦àkworker/0:1.&x"Nñ¦à§õ¦àswapperkworker/0:1.&’û¦àkworker/0:1.&Û’gN.¬§àkworker/0:1.&swapper#d§à!Õ §à&# §à€"x*” §àkworker/0:1.&x"Â(§àÁüÁõ©‹à‡îØF²ÿbÊ™HŽo-§àÈ7©¾æÈ7X~€o-§àswapperkworker/0:1.& 5§àkworker/0:1.&<Î|N.»;§àkworker/0:1.&swapper#‰Ãà!P#Ãà¯'Ãàltt-kconsumerd2x"-Ãà1Ãàswapperltt-kconsumerd2}DÃàæGÃà!ö¤JÃàlLÃà!ö€@ŽK=¿ÎMÃà±OÃà!HŽK=¿ó[Ãàß]Ãà"²“ÃàC–Ãà"ð-›žÃà€…0 ltt-kconsumerdó¯Ãà²Ãà"à¶Ãàñ·ÃàÝ"à™ÁÃàÝÃÃà!ö¼ÅÃàtÈÃà°Ä@ ÿÿÿÿÿÿÿÿGÔÃàltt-kconsumerd2I­/#àÃàltt-kconsumerd2swapper¹Èàahci#á Èà xÈà Èàuhci_hcd:usb3 ·ÈàÈàeth1 Ì"Èà!f%Èà&J)Èà€:‚x*ø8Èàkworker/0:1.&x&|EÈà€:‚x*""ZÈàÞ^Èàswapperkworker/0:1.&2eÈàkworker/0:1.&-/O.KgÈàkworker/0:2_(xmÈàkworker/0:1.&……7O.ÄoÈàkworker/0:1.&kworker/0:2_(sÈàkworker/0:2_(ññO.}zÈàkworker/0:2_(swapper#ˆøõà#üüõà!íÿõà"3öà!8öà"L öà#Í(á!+Ù(á"ÕÝ(á#{²[á#ζ[á!·¸[á"sº[á!c»[á"kÅ[á#w8bá!ú9bá&y?bá€ú„x*"ðObá#ªqá!?«qá&r®qá€ú„x*"[Åqá#&ÿuá!svá&ævá€"ƒx*©vákworker/0:2_(x"¿váú!váswapperkworker/0:2_(Í'vákworker/0:2_(§˜O.ÿ.vákworker/0:2_(swapper#„‡Žá!!”Žá"p–Žá#újÁá#éoÁá!ÃqÁá"5uÁá!1vÁá"šÁá#3Fôá!—Nôá"/Pôá#Ç#'â#)'â!+'â"¦,'â!–-'â"8'â#ùþYâ!òZâ"¥Zâ#NÕŒâ#îÞŒâ!¦áŒâ"&ãŒâ!äŒâ"ÁíŒâ#´¿â!’Á¿â"-ÿâ#p‘òâ#pžòâ!Å òâ"E¢òâ!5£òâ"‰¬òâ#Âk%ã!Gz%ã"å{%ã#]JXã#9TXã!/XXã"åYXã!çZXã"ýbXã#{%‹ã!d1‹ã"3‹ã#=¾ã#̾ã!¯¾ã"2¾ã!"¾ã"Ô¾ã#àðã!%ìðã"îðã#Ä#ä#qÉ#ä!¢Ë#ä"+Í#ä!Î#ä"¨×#ä#ǘVä!Ï£Vä"j¥Vä#Bx‰ä#‰ƒ‰ä!ê…‰ä"¬‡‰ä!®ˆ‰ä"ö‘‰ä#mR¼ä!X^¼ä"2`¼ä#w8ïä#Ú;ïä!Æ=ïä"@?ïä!*@ïä"…Hïä#n "å!Y"å">"å#„õTå#ùTå!'ûTå"³üTå!£ýTå" Uå#åȇå!Õ‡å";ׇå#í«ºå#+°ºå!}²ºå"6´ºå!8µºå"Y¾ºå#díå!ñŒíå"íå# e æ# i æ!ék æ"–m æ!˜n æ"{ æ#BSæ!GSæ"2ISæ#û†æ# !†æ!r#†æ"ò$†æ!â%†æ"“/†æ#Åò¸æ!ˆÿ¸æ"¹æ#÷A¾æ!­C¾æ#[J¾æ&éL¾æ€z…x* ^¾ækworker/0:2_(x"®f¾æ!h¾æ&Am¾æ€z…x*"ˆ¾æjŒ¾æswapperkworker/0:2_(d’¾ækworker/0:2_(d5üPO.Y”¾ækworker/0:1.&x,š¾ækworker/0:2_(ÝÙXO.™œ¾ækworker/0:2_(kworker/0:1.& ¾ækworker/0:1.&‹=O.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÊ§¾æÈ7ÔGOéÈ7x€ʧ¾ækworker/0:1.&swapper#ý×ëæ#Pßëæ!#âëæ˜èëæltt-kconsumerd2™íëæltt-kconsumerd2x"ïñëæ!óëæ"hýëæÑìæswapperltt-kconsumerd2Ÿìæ°#ìæ!ö/&ìæ(ìæ!ö€@ŽK=¿q)ìæZ+ìæ!HŽK=¿Å5ìæ¢7ìæ"Tjìæëlìæ"-@uìæˆ…0 ltt-kconsumerdS†ìæfˆìæ"ðeŒìæ9ŽìæÝ"ðÌ—ìæÝë™ìæ!öœìæ Ÿìæ°Ä@ ÿÿÿÿÿÿÿÿéªìæltt-kconsumerd2D¾DÛ/ųìæltt-kconsumerd2swapper# Üðæ!Þðæ&gãðæ€B‚x*óðækworker/0:1.&x"DýðæÁñæswapperkworker/0:1.&šñækworker/0:1.&`¤ÕO.æñækworker/0:1.&swapper#»$ñæ!)&ñæ&Ã+ñæ€B‚x*˜>ñækworker/0:1.&x"Gñæ.Kñæswapperkworker/0:1.&¡Pñækworker/0:1.&5ÙèO.ˆWñækworker/0:1.&swapper# µç!’ºç"ç¼çéCçmd1_raid1xTHçswappermd1_raid13·Nç€*ƒx€p†0 -BQç€*ƒxmd1_raid1.„Wç€*ƒxmd1_raid10#[çmd1_raid13ú\ç€*ƒx€p†0 -_ç€*ƒxmd1_raid1.Óbç€*ƒxmd1_raid1'Pgç€*ƒxmd1_raid11]lçmd1_raid1()pç€*ƒxmd1_raid1'Úç€*ƒxmd1_raid11£ƒçmd1_raid1(\…ç€*ƒxmd1_raid1I’çmd1_raid1OÚ”„.bšçmd1_raid1swapper+#çahci#ަ#ç 5¨#粩#çuhci_hcd:usb3 ,®#çs¯#çeth1 G´#ç!·#ç&·¹#ç€*ƒx*ŽÇ#çkworker/0:1.&x#<Ñ#ç"~Ô#ç!žÕ#ç&MØ#ç€*ƒx*"]ì#çð#çswapperkworker/0:1.&zö#çkworker/0:1.&Ó/¬P.rø#çkworker/0:2_(xŠþ#çkworker/0:1.&@ì P.µ$çkworker/0:1.&kworker/0:2_(Z$çkworker/0:2_(ÐÆO.; $çkworker/0:2_(swapper#½‹Qç#¿–Qç! šQç"8œQç!IQç"‚©Qç#!o„ç!mt„ç")y„ç#øK·ç#6P·ç!(R·ç"çS·ç!æT·ç"«_·ç#Ìêç!á+êç".êç#Qè# è!P è"Ç è!·è"Nè#vÙOè!ÙåOè"ìçOè#T·‚è#Á‚è!¡Å‚è"!Ç‚è!È‚è"SÑ‚è#3“µè! µè"(¢µè#\xèè#;~èè!6€èè"õèè!ô‚èè"èè#pTé!"Zé"ÿ[é#²)Né#¶4Né!#7Né"î8Né!ð9Né" DNé¯Oémd1_raid1xÅOéswappermd1_raid13õ Oé€2ƒx€x†0 -q#Oé€2ƒxmd1_raid1.­)Oé€2ƒxmd1_raid104-Oémd1_raid13ò/Oé€2ƒx€x†0 -2Oé€2ƒxmd1_raid1.Ë5Oé€2ƒxmd1_raid1'Ø:Oé€2ƒxmd1_raid11Ã@Oémd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ3FOéÈ7jçéÈ7€(3FOé€2ƒxmd1_raid1'ÿUOé€2ƒxmd1_raid11ÑYOémd1_raid1(Å\Oé€2ƒxmd1_raid1~gOémd1_raid1WÝë„.“pOémd1_raid1swapper~‘Oémd1_raid1xd–Oéswappermd1_raid13ìžOé€òx€8ƒ0 -/¡Oé€òxmd1_raid1.–¦Oé€òxmd1_raid10ä©Oémd1_raid13œ¬Oé€òx€8ƒ0 -!¯Oé€òxmd1_raid1.½²Oé€òxmd1_raid1'|·Oé€òxmd1_raid11¼Oémd1_raid1(S¿Oé€òxmd1_raid1'ÐOé€òxmd1_raid11/ÔOémd1_raid1(!ÖOé€òxmd1_raid1ÔàOémd1_raid1öQÓ=….{èOémd1_raid1swapperÞ6Pémd1_raid1xˆ;Péswappermd1_raid13CPé€J‚x€…0 -ØEPé€J‚xmd1_raid1.ÚKPé€J‚xmd1_raid10|OPémd1_raid13RPé€J‚x€…0 -VTPé€J‚xmd1_raid1.pXPé€J‚xmd1_raid1']Pé€J‚xmd1_raid11"aPémd1_raid1(UdPé€J‚xmd1_raid1'ÊpPé€J‚xmd1_raid11&P.ý¾òékworker/0:2_(swapper#Ωê#I­ê!°ê"‰²ê!…³ê"ô¼ê#aLê!‹‡Lê"/ŒLê#6`ê#eê!\gê"Ühê!Æiê"stê#†3²ê!?²ê"Á@²ê#åê#Àåê!š åê"S"åê!U#åê"Ñ+åê#›÷ë!µûë"YýëÍÆëmd1_raid1x§Ëëswappermd1_raid13ÅÔë€*x€p„0 -×ë€*xmd1_raid1.ÒÜë€*xmd1_raid10_àëmd1_raid13äâë€*x€p„0 -0åë€*xmd1_raid1.ièë€*xmd1_raid1'‚íë€*xmd1_raid11¡òëmd1_raid1(E÷ë€*xmd1_raid1'Ôë€*xmd1_raid11 ëmd1_raid1(¦ ë€*xmd1_raid1©ëmd1_raid1þU؆.O&ëmd1_raid1swapper#Kvë!àwë&ý{ë€*x*ó‹ëkworker/0:2_(x"É”ë.™ëswapperkworker/0:2_(#þžë!B ë&*£ë€*x*"&¼ërÁëkworker/0:2_(66t\P.OÃëkworker/0:1.&xsÉëkworker/0:2_(dP.þËëkworker/0:2_(kworker/0:1.&»Ïëkworker/0:1.&`-jP.·Öëkworker/0:1.&swapper#aÓJë#¸ÖJë!¦ÙJë"%ÜJë!TÝJë"#çJëøˆKëmd1_raid1x;ŽKëswappermd1_raid132—Kë€ „x€P‡0 -“™Kë€ „xmd1_raid1.!ŸKë€ „xmd1_raid10Ÿ¢Këmd1_raid130¥Kë€ „x€P‡0 -v§Kë€ „xmd1_raid1.!«Kë€ „xmd1_raid1'ø¯Kë€ „xmd1_raid11o´Këmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽY¸KëÈ7oæíÈ7Ø€(Y¸Kë€ „xmd1_raid1'wÊKë€ „xmd1_raid11:ÎKëmd1_raid1(ÐKë€ „xmd1_raid1BÞKëmd1_raid1EWÄ/‡.ÉçKëmd1_raid1swapperáOëahci#ÿéOë »ëOë>íOëuhci_hcd:usb3 ÷ñOëAóOëeth1 ý÷Oë!—úOë&¯ýOë€ „x*W Pëkworker/0:1.&x#fPë"7Pë!fPë&ñPë€ „x*"J8Pë|­í#ºàí!Ïàí"^àíEÕàímd1_raid1xÚàíswappermd1_raid13 ààí€:ƒx€€†0 -.ãàí€:ƒxmd1_raid1.fêàí€:ƒxmd1_raid10 îàímd1_raid13'ðàí€:ƒx€€†0 -Còàí€:ƒxmd1_raid1.oöàí€:ƒxmd1_raid1'7ûàí€:ƒxmd1_raid11@áímd1_raid1(;áí€:ƒxmd1_raid1'Páí€:ƒxmd1_raid11páímd1_raid1(Xáí€:ƒxmd1_raid1Î'áímd1_raid1ySE‰. 0áímd1_raid1swapperÁüÁõ©‹à‡îØF²ÿbÊ™HŽ7æíÈ7ćGðÈ7Ѐ#7æí!! æí&´æí€:ƒx*#$æíkworker/0:2_(x"¨,æí61æíswapperkworker/0:2_(7æíkworker/0:2_([LÕP.Î>æíkworker/0:2_(swapper#[àî#•ëî!¼îîuóîltt-kconsumerd2åøîltt-kconsumerd2x"óüî!(þî"fîØ îswapperltt-kconsumerd2…!î<%î!ö(îû)î!ö€@ŽK=¿u+îp-î!HŽK=¿5îå6î"3dî¸fî"@-‹o0 ltt-kconsumerd·yîmd1_raid1¦îïƒî"0ºˆî¬ŠîÝ"0Q”îÝp–î!ö›˜îÔ›î°Ä@ ÿÿÿÿÿÿÿÿ+¨îltt-kconsumerd2è°,d/Œ°îltt-kconsumerd2swapper#`óî!õî#'üî&xÿî€b‚x*hîkworker/0:2_(x" î!Aî&! î€b‚x*"Þ7îŽ<îswapperkworker/0:2_(ÁBîkworker/0:2_( 4L}Q.ÈDîkworker/0:1.&xòJîkworker/0:2_(d°…Q.SMîkworker/0:2_(kworker/0:1.&Qîkworker/0:1.& 8OQ.ÙWîkworker/0:1.&swapper#±ÅEî!8ÌEî"ºÎEî#˜xî#¡xî!̤xî"£©xî!¢ªxî"aµxî#Ct«î!«î"ׂ«î#ÝQÞî#j[Þî!‘^Þî"`Þî!þ`Þî"´kÞî#â-ï!ª;ï"?=ï#N Dï#NDï!¯Dï"hDï!jDï"]&Dï#Jçvï!‘ñvï">óvï#JÄ©ï#ûË©ï!1Ï©ï"´Ð©ï!¡Ñ©ï"óÜ©ï# ¡Üï!°Üï"ß±Üï#q6âï!?8âï&¼<âï€2x*BPâïkworker/0:1.&xvXâïahci#Ldâï ,fâï—gâïuhci_hcd:usb3 lâï^mâïeth1 ùqâï"ñyâï!{âï&_~âï€2x*"í›âïïŸâïswapperkworker/0:1.& ¦âïkworker/0:1.&ÀWø¦Q.#¨âïkworker/0:2_(x8®âïkworker/0:1.&[S¯Q.Ÿ°âïkworker/0:1.&kworker/0:2_(b´âïkworker/0:2_(Bò‹Q.Ä»âïkworker/0:2_(swapper#Áð#zŠð!›ð"#ð!.‘ð"H›ð#=|ð!½}ð&”‚ð€†x*†“ðkworker/0:2_(x"#œð1 ðswapperkworker/0:2_(¦ðkworker/0:2_(’„ŸQ.­ðkworker/0:2_(swapper#t\Bð!dlBð"ŽoBð}"Cðmd1_raid1xÜ&Cðswappermd1_raid13Q-Cð€Bƒx€ˆ†0 -â/Cð€Bƒxmd1_raid1.6Cð€Bƒxmd1_raid10Ã9Cðmd1_raid13©;Cð€Bƒx€ˆ†0 -Â=Cð€Bƒxmd1_raid1.šACð€Bƒxmd1_raid1';FCð€Bƒxmd1_raid113KCðmd1_raid1(,OCð€Bƒxmd1_raid1'…\Cð€Bƒxmd1_raid11W`Cðmd1_raid1(7bCð€Bƒxmd1_raid1$lCðmd1_raid1vJY?‹.RtCðmd1_raid1swapper#ZGð!GðÁüÁõ©‹à‡îØF²ÿbÊ™HŽ˜†GðÈ7³ŒnôÈ7è€#˜†Gð&½‹Gð€Bƒx*‚™Gðkworker/0:2_(x"³¡Gð!â¢Gð&ñ¥Gð€Bƒx*"H»GðÅ¿Gðswapperkworker/0:2_(¤ÅGðkworker/0:2_(å,iÌQ.üÇGðkworker/0:1.&x ÎGðkworker/0:2_(‚ëÔQ.3ÐGðkworker/0:2_(kworker/0:1.&íÓGðkworker/0:1.&úMµQ.’ÚGðkworker/0:1.&swapper#o9uð#uEuð!–HuðâMuðltt-kconsumerd2_Ruðltt-kconsumerd2x":Vuð!WWuð"auð˜duðswapperltt-kconsumerd2ò|uðî€uð!öµƒuðŒ…uð!ö€@ŽK=¿ë†uðÚˆuð!HŽK=¿)‘uð“uð"Û½uðÀuð"P-Éuð°…0 ltt-kconsumerdNÒuðmd1_raid1|ÚuðhÜuð"@áuðþâuðÝ"@ìuðÝSîuð!ö]ðuð~óuð°Ä@ ÿÿÿÿÿÿÿÿ·ÿuðltt-kconsumerd2*®V /Hvðltt-kconsumerd2swapper#wzð!óxzð&Yzð€j‚x*dzðkworker/0:1.&x"W™zðòzðswapperkworker/0:1.&ã£zðkworker/0:1.&rÈ R.Īzðkworker/0:1.&swapper#WÞzð!Åßzð&Wäzð€j‚x*´özðkworker/0:1.&x"`ÿzð§{ðswapperkworker/0:1.&2 {ðkworker/0:1.&âR.¹{ðkworker/0:1.&swapper#§¨ð![$¨ð"¶&¨ð#EñÚð#!ýÚð!»ÿÚð"›Ûð!‘Ûð"…Ûð#Î ñ!¡Ù ñ"ÒÛ ñ#Ý«@ñ#éµ@ñ!>¸@ñ"º@ñ!»@ñ"Å@ñ#ÖFñ!JFñ&¥Fñ€ …x*Ò(Fñkworker/0:1.&x">2Fñ#¨7Fñ!L9Fñ&t>Fñ€ …x*"ÁWFñÛ[Fñswapperkworker/0:1.&bFñkworker/0:1.&8:ZR.WdFñkworker/0:2_(x6jFñkworker/0:1.&RlbR.‘lFñkworker/0:1.&kworker/0:2_(6pFñkworker/0:2_(úPýQ.5wFñkworker/0:2_(swapper#Ž“sñ!ô™sñ"Xœsñ#ªd¦ñ#Šo¦ñ!or¦ñ"øv¦ñ!ýw¦ñ"ü¦ñ#™JÙñ!oPÙñ"RÙñ#ù' ò#¿+ ò!Ì- ò"I/ ò!90 ò"Ú: ò#û>ò!Ó?ò"z ?ò#¸Øqò#jâqò!våqò"2çqò!1èqò"Bòqò#-¼¤ò!£Á¤ò"Aäò#q‘×ò#"ž×ò!_ ×ò"ß¡×ò!Ì¢×ò"}¬×ò#úy ó!ô ó"Ô ó#K=ó#.W=ó!ƒY=ó"[=ó!ó[=ó"g=ó#õ'pó!A3pó"Ù4pó#’£ó#:£ó!&£ó"Ó£ó!Õ£ó"©!£ó#±áÕó!<îÕó"õïÕó#ÈÅô#Ëô!«Íô"4Ïô!'Ðô"#Úô#¤¢;ô!¨;ô"lª;ôÿhBôahci#xtBô 4|BôÏ}Bôuhci_hcd:usb3 d‚BôƃBôeth1 ¯ˆBô! ‹Bô&[ŽBô€„x*&6¤Bô€„x*"®¼Bô#…Fô!ä‚Fô&˜†Fô€Jƒx*a“Fôkworker/0:2_(x"öšFôIŸFôswapperkworker/0:2_(v¥Fôkworker/0:2_( [R.A­Fôkworker/0:2_(swapper#zznô#øƒnô!Ȇnô"ŠnôÁüÁõ©‹à‡îØF²ÿbÊ™HŽ{‹nôÈ7kiøÈ7È€!{‹nô"T—nô#8U¡ô!¢`¡ôàj¡ôltt-kconsumerd2Åp¡ôltt-kconsumerd2x"Nu¡ôóx¡ôswapperltt-kconsumerd22£¡ôr¨¡ô!öo«¡ô@­¡ô!ö€@ŽK=¿¥®¡ôš°¡ô!HŽK=¿!½¡ô¿¡ô"rö¡ôù¡ô"`-¢ô¸…0 ltt-kconsumerd¢ôþ¢ô"P±¢ô¢ôÝ"PH&¢ôÝa(¢ô!öz*¢ôÛ,¢ôö‰9¢ôW;¢ôö€@ŽK=¿[=¢ôw?¢ôHŽK=¿G¢ôI¢ôûx¢ô}{¢ô -÷‚¢ôЇ0 ltt-kconsumerdQ’¢ô^”¢ô†˜¢ôQš¢ôÝÇ¥¢ôÝ­§¢ôöDª¢ôe­¢ô°Ä@ ÿÿÿÿÿÿÿÿyº¢ôltt-kconsumerd2VK¬] /ñâôltt-kconsumerd2swapper#º§ô!J¼§ô&Á§ô€r‚x*"ÖÒ§ô#ܨô!G¨ô&õ¨ô€r‚x*"8(¨ô#[¬ô!ɬô&Ьô€Š„x*/'¬ôkworker/0:2_(x"x/¬ôï3¬ôswapperkworker/0:2_(:¬ôkworker/0:2_(³_VS.™A¬ôkworker/0:2_(swapper#9e¬ô!’f¬ô&‚j¬ô€Š„x*;{¬ôkworker/0:2_(x"A„¬ôuˆ¬ôswapperkworker/0:2_(¾¬ôkworker/0:2_(M¬iS.u”¬ôkworker/0:2_(swapper#1:Ôô#'>Ôô!ÿAÔô"{DÔô!ƒEÔô"¤NÔô#õ!Øõ"£ õ#-í9õ#­÷9õ!,ú9õ"Áû9õ!±ü9õ"¿:õ#hÈlõ!£Ölõ"GØlõ#¿«Ÿõ#°Ÿõ!²Ÿõ"´Ÿõ!þ´Ÿõ"Õ¿Ÿõ#)‚Òõ!¨Òõ"(Òõ#·hö#˜lö!±nö"+pö!qö"zö#Â;8ö!=H8ö"öI8ö#¤kö#†$kö!á&kö"…(kö!r)kö"x5kö#„õö!„žö"žö#3ÒÐö#ÕÜÐö!<ßÐö"¼àÐö!¬áÐö"ÞëÐö#¯÷!úº÷"ݼ÷#O—6÷#Íš6÷!¹œ6÷"<ž6÷!)Ÿ6÷"—©6÷#åri÷!Ywi÷"yi÷#oEœ÷#·Qœ÷!îSœ÷"nUœ÷!^Vœ÷"å_œ÷#W"Ï÷!ó.Ï÷"£0Ï÷#Fø## ø!Ûø"²ø!·ø"Àø$§ømd1_raid1x¼«øswappermd1_raid13²ø€Rƒx€˜†0 -.µø€Rƒxmd1_raid1.*¼ø€Rƒxmd1_raid10½¿ømd1_raid13Áø€Rƒx€˜†0 -žÃø€Rƒxmd1_raid1.UÇø€Rƒxmd1_raid1'ðËø€Rƒxmd1_raid11çÑømd1_raid1(W×ø€Rƒxmd1_raid1'Ìæø€Rƒxmd1_raid11æêømd1_raid1(˜íø€Rƒxmd1_raid1èúømd1_raid1«T1i.dømd1_raid1swapper#aSø! Uø&£Xø€Rƒx*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ0høÈ7µÿùÈ7Ѐ0høkworker/0:2_(x€røahci#}ø ø®€øuhci_hcd:usb3 L…øÆøeth1 y‹ø"ð’ø!”ø&n–ø€Rƒx*"ͬøưøswapperkworker/0:2_(Õ¶økworker/0:2_(³O_¹S.ë¸økworker/0:1.&x?¿økworker/0:2_(üÁS.©Áøkworker/0:2_(kworker/0:1.&uÅøkworker/0:1.&HôHS.;Ìøkworker/0:1.&swapper#ã4ø!±ê4øgï4øltt-kconsumerd2ó4øltt-kconsumerd2x"’÷4øü4øswapperltt-kconsumerd2²5ør5ø!ö5øõ5ø!ö€@ŽK=¿f5øR5ø!HŽK=¿&'5ø )5ø"`V5ø Y5ø"p-ya5øÀ…0 ltt-kconsumerdKk5ømd1_raid1Us5øpu5ø"`\z5ør|5øÝ"`Z…5øÝg‡5ø!ö‰5øªŒ5ø°Ä@ ÿÿÿÿÿÿÿÿ¶˜5øltt-kconsumerd2ù¥¥ /ª¤5øltt-kconsumerd2swapper#ÓÂ9ø!‰Ä9ø&™É9ø€z‚x*tÙ9økworker/0:1.&x"Ùã9øqè9øswapperkworker/0:1.&nî9økworker/0:1.&ÕzþS.põ9økworker/0:1.&swapper#CÂgø#¢Ægø!êÉgø"ÌÌgø!×Ígø"µ×gø#敚ø!ø"⥚ø#MsÍø#½~Íø!Á€Íø"t‚Íø!yƒÍø"òŽÍø#—Xù!H_ù"aù#ö}ù!vù&>„ù€Š…x*>–ùkworker/0:1.&x"€ŸùÙ£ùswapperkworker/0:1.&Ü©ùkworker/0:1.&}T.±ùkworker/0:1.&swapper#ù!ˆù& ù€Š…x*~#ùkworker/0:1.&x"S-ù¾1ùswapperkworker/0:1.&O7ùkworker/0:1.&—(T.å=ùkworker/0:1.&swapper#U33ù#Õ63ù!ù93ù"Z<3ù!P=3ù"EH3ù#n fù!fù"nfù#Üç˜ù#Åó˜ù!ö˜ù"»÷˜ù!¥ø˜ù"Ñ™ù#æÂËù![ÍËù"ÏËù#„-Ñù!./Ñù&¥3Ñù€:x*yDÑùkworker/0:1.&x"%MÑùQQÑùswapperkworker/0:1.&#–WÑù! YÑù&x]Ñù€:x*"=wÑùw|Ñùkworker/0:1.&~9’aT.`~Ñùkworker/0:2_(x¢„Ñùkworker/0:1.&FØiT.W‡Ñùkworker/0:1.&kworker/0:2_(V‹Ñùkworker/0:2_(·\ïS.¬’Ñùkworker/0:2_(swapper#ï§þù#S¬þù!\¯þù"ç±þù!õ²þù"¼þùÂcÿùmd1_raid1x–hÿùswappermd1_raid13°oÿù€Zƒx€ †0 -nrÿù€Zƒxmd1_raid1.hxÿù€Zƒxmd1_raid10|ÿùmd1_raid13ÿ}ÿù€Zƒx€ †0 -€ÿù€Zƒxmd1_raid1.Òƒÿù€Zƒxmd1_raid1'gˆÿù€Zƒxmd1_raid11Mÿùmd1_raid1(‘ÿù€Zƒxmd1_raid1'I ÿù€Zƒxmd1_raid11¤ÿùmd1_raid1(û¥ÿù€Zƒxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽä³ÿùÈ7EãýúÈ7h€ä³ÿùmd1_raid1CPv^‘.¿ÿùmd1_raid1swapper#Ì·ú!^¹ú&å¼ú€Zƒx*ËÊúkworker/0:2_(x"AÓú Øúswapperkworker/0:2_(Þúkworker/0:2_(lT.óäúkworker/0:2_(swapper;úahci# ú ú!úuhci_hcd:usb3 ¶úúeth1 ïú!hú&½ú€Zƒx*Ë0úkworker/0:2_(x"38úk<úswapperkworker/0:2_()Búkworker/0:2_(~T."Iúkworker/0:2_(swapper#M~1ú!{‰1ú+Ž1últt-kconsumerd2]’1últt-kconsumerd2x"–1úßš1úswapperltt-kconsumerd2î²1ú¨¶1ú!ö`¹1ú=»1ú!ö€@ŽK=¿À¼1ú¯¾1ú!HŽK=¿òÆ1úÉ1ú"æó1ú}ö1ú"€-ÿ1úÈ…0 ltt-kconsumerdª2úmd1_raid1Ã2ú2ú"pò2ú±2úÝ"pí"2úÝý$2ú!öL'2úL*2ú°Ä@ ÿÿÿÿÿÿÿÿ¯62últt-kconsumerd2¥º¨ /ŽB2últt-kconsumerd2swapper#qœ6ú!`ž6ú&Ü£6ú€‚‚x*®³6úkworker/0:2_(x"Ô½6úZÂ6úswapperkworker/0:2_(È6úkworker/0:2_(½w£T.­Ï6úkworker/0:2_(swapper#cdú#Ìgdú!Ôkdú"tndú!odú"œydú#è>—ú!óD—ú"þH—ú#Oµœú!öœú& ½œú€"„x*AÏœúkworker/0:2_(x";ØœúvÜœúswapperkworker/0:2_(#¾âœú!)äœú&éœú€"„x*"lú‹ úkworker/0:2_( ;ßT.Ñ úkworker/0:1.&xúkworker/0:2_(¬ÃçT.Ýúkworker/0:2_(kworker/0:1.&ëúkworker/0:1.&ÒŒ”T.˜ úkworker/0:1.&swapper#0Êú#; Êú!##Êú"‹?Êú!ù@Êú"ÞIÊú#Ú8Ïú!~:Ïú&â?Ïú€ †x*ØOÏúkworker/0:1.&x"kYÏú¯]Ïúswapperkworker/0:1.&ÄcÏúkworker/0:1.& ˜©T.,kÏúkworker/0:1.&swapper#)µÏú!޶Ïú&û»Ïú€ †x*ÉÕÏúkworker/0:1.&x"zßÏú²ãÏúswapperkworker/0:1.&CéÏúkworker/0:1.&1ɽT.-ðÏúkworker/0:1.&swapper#Zúüú!fýúýúkworker/u:3px‚ ýúkworker/0:1.&x"/ýúvýúswapperkworker/u:3pöýúkworker/u:3p'áŸT.ýúkworker/u:3pkworker/0:1.&U)ýúkworker/0:1.& XËT.“0ýúkworker/0:1.&swapperÍÁýúmd1_raid1xhÆýúswappermd1_raid13éÌýú€bƒx€¨†0 -hÏýú€bƒxmd1_raid1.³Õýú€bƒxmd1_raid10OÙýúmd1_raid13wÛýú€bƒx€¨†0 -ÆÝýú€bƒxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽòáýúÈ7¡w-ýÈ7Ð~€.òáýú€bƒxmd1_raid1'éýú€bƒxmd1_raid11øíýúmd1_raid1(òýú€bƒxmd1_raid1'þú€bƒxmd1_raid11®þúmd1_raid1(þú€bƒxmd1_raid1œþúmd1_raid1>RúJ“.Áþúmd1_raid1swapper#\û!A^û&ìaû€bƒx*óoûkworker/0:1.&x"Nxû¶|ûswapperkworker/0:1.&P‚ûkworker/0:1.&DœÞT.L‰ûkworker/0:1.&swapperÍÁûahci#ðËû ÁÍûAÏûuhci_hcd:usb3 ÙÓû›Õûeth1 Úû!âÜû&Lßû€bƒx*òûkworker/0:1.&x"@úû„þûswapperkworker/0:1.&ûkworker/0:1.&WóðT.A ûkworker/0:1.&swapper#Õ/û#Ù/û!9Ü/ûãà/ûltt-kconsumerd2²ä/ûltt-kconsumerd2x"Àè/û!àé/û"ó/û¢÷/ûswapperltt-kconsumerd2®0û•0û!öP0ûœ0û!ö€@ŽK=¿(0û20û!HŽK=¿t$0ûN&0û"ÂQ0û\T0û"-¨\0ûÐ…0 ltt-kconsumerdef0ûmd1_raid1Kn0ûp0û"€,u0ûúv0ûÝ"€i€0ûÝ[‚0û!ö€„0ûz‡0û°Ä@ ÿÿÿÿÿÿÿÿÅ“0ûltt-kconsumerd2¶¯pX /Sœ0ûltt-kconsumerd2swapper#‚ç4û!‰é4û&Ûî4û€Š‚x*,þ4ûkworker/0:1.&x"ì5û3 5ûswapperkworker/0:1.& 5ûkworker/0:1.&Ä4RU.Y5ûkworker/0:1.&swapper#±´bû! »bû"¾bû#*•û#ß“•û!7–•û"Eš•û!A›•û"奕û#}mÈû!ƒsÈû"fuÈû#Jûû#4Nûû!Pûû"‹Qûû!xRûû"-[ûû#þ‰ü!–‹ü&ûü€…x*b¡ükworker/0:1.&x"ªªü ¯üswapperkworker/0:1.&µükworker/0:1.&ÓgU.2¼ükworker/0:1.&swapper#®çü!7éü&Œîü€…x*iükworker/0:1.&x"¢üéüswapperkworker/0:1.&Pükworker/0:1.&ÂÉzU."ükworker/0:1.&swapper#µ&.ü!ˆ,.ü"×..ü#Daü#‘aü!àaü"{ aü!q aü"‹aü#Æ×“ü!Pâ“ü"èã“ü#²»Æü#´¿Æü!©ÁÆü"vÃÆü!xÄÆü"®ÍÆü#ùü! œùü"¨ùü#v,ý#G|,ý!°~,ý"r€,ý!e,ý"x’,ýÃ.-ýmd1_raid1xÙ3-ýswappermd1_raid13æ;-ý€jƒx€°†0 -b>-ý€jƒxmd1_raid1.VD-ý€jƒxmd1_raid10ìG-ýmd1_raid13bJ-ý€jƒx€°†0 -cL-ý€jƒxmd1_raid1.ùO-ý€jƒxmd1_raid1'âT-ý€jƒxmd1_raid11£Z-ýmd1_raid1(¼_-ý€jƒxmd1_raid1'tn-ý€jƒxmd1_raid11¸r-ýmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽTv-ýÈ7x¼BýÈ70n€(Tv-ý€jƒxmd1_raid1ˆ-ýmd1_raid1xZè—U.U“-ýmd1_raid1swapperôÅ-ýmd1_raid1xÔÊ-ýswappermd1_raid13úÑ-ý€†x€X‰0 -:Ô-ý€†xmd1_raid1.eÙ-ý€†xmd1_raid10Ü-ýmd1_raid13·Þ-ý€†x€X‰0 -Ðà-ý€†xmd1_raid1.Hä-ý€†xmd1_raid1'ûè-ý€†xmd1_raid11Hí-ýmd1_raid1(ñ-ý€†xmd1_raid1'}.ý€†xmd1_raid11.ýmd1_raid1(‰.ý€†xmd1_raid1À.ýmd1_raid1N÷åU.â.ýmd1_raid1swapper®_.ýmd1_raid1x¯d.ýswappermd1_raid13Øk.ý€’‚x€Ø…0 -n.ý€’‚xmd1_raid1.çt.ý€’‚xmd1_raid10Vx.ýmd1_raid13´z.ý€’‚x€Ø…0 -Ó|.ý€’‚xmd1_raid1.À€.ý€’‚xmd1_raid1'R….ý€’‚xmd1_raid11Љ.ýmd1_raid1(ÆŒ.ý€’‚xmd1_raid1'x˜.ý€’‚xmd1_raid11Õ›.ýmd1_raid1(¾.ý€’‚xmd1_raid1š©.ýmd1_raid1½K´1V.…².ýmd1_raid1swapper%ñ.ýmd1_raid1xÕõ.ýswappermd1_raid13÷ü.ý€Bx€ˆ„0 -Iÿ.ý€Bxmd1_raid1.Ö/ý€Bxmd1_raid10â/ýmd1_raid13" /ý€Bx€ˆ„0 -A /ý€Bxmd1_raid1.=/ý€Bxmd1_raid1'¢/ý€Bxmd1_raid11Ë/ýmd1_raid1(ì/ý€Bxmd1_raid1']*/ý€Bxmd1_raid11¨-/ýmd1_raid1(|//ý€Bxmd1_raid1,:/ýmd1_raid10Kä|V.QB/ýmd1_raid1swapperMŽ/ýmd1_raid1x6“/ýswappermd1_raid13„™/ý€"…x€hˆ0 -Í›/ý€"…xmd1_raid1.E¢/ý€"…xmd1_raid10Q¥/ýmd1_raid13ˆ§/ý€"…x€hˆ0 -ã©/ý€"…xmd1_raid1.(­/ý€"…xmd1_raid1'²/ý€"…xmd1_raid11:¶/ýmd1_raid1(‹¹/ý€"…xmd1_raid1'¹Ç/ý€"…xmd1_raid11"Ë/ýmd1_raid1(#Í/ý€"…xmd1_raid1Ú/ýmd1_raid1åMÉÊV.äá/ýmd1_raid1swapperå·:ýahci#ðÁ:ý ÓÃ:ýbÅ:ýuhci_hcd:usb3 ýÉ:ý_Ë:ýeth1 Ð:ý!ÊÒ:ý&¾Õ:ý€jƒx*"é:ý#;I;ý!‹J;ý&M;ý€jƒx*"üc;ý#þž?ý!Z ?ý&Ê¢?ý€†x*"öµ?ý#H€Bý!ãBý&v…Bý€’‚x*"›“Bý#°Bý!Y±Bý&´Bý€’‚x*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<ÅBýÈ7„ƒÚiÉ7€"<ÅBýbabeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_70000755000175000017500000035000011616325072023141 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽL È7`^ŸzÈ7h€ÿÿÔ¯yÈ7ltt-kconsumerd2x”¯ykworker/0:1ltt-kconsumerd2þ¨¯yÒ¿¯y/PžË=¿@ͯy/xݯy°žË=¿ÿÿÿÿÿÿÿÿ ã¯yËç¯y/žË=¿Íú¯y/Ú°yØr@AÿÏ€-çT°y0 ltt-kconsumerd3‹b°y€Âüw€0 -=e°y€Âüwltt-kconsumerd.{°y€Âüwltt-kconsumerd'7ƒ°y€Âüwltt-kconsumerd(V”°y€Âüwltt-kconsumerd#µ°yltt-kconsumerd2)oÞM %¿°yltt-kconsumerd2kworker/0:1#pBØy#7EØy #HØy!ÇKØy"¯NØy!ÉOØy"™UØy!€VØy "¶YØy #P" z#œ$ z !õ( z"œ* z!Œ+ z "_. z # õ=z#.÷=z #ìý=z!8>z"Í>z!®>z"˜>z!Ž>z " >z #>Ñpz#¥Ópz !’Þpz"Nàpz!Mápz "Õæpz 4 qzlttng2xÜqzkworker/0:1lttng2\qz/ƒ(qz0=,qz0F8qz znKÿ znKÿ·ùõ`s;qz›=qz "ÿÿÿÿ=Dqz üõ`±Tqzüõ`11üõ`pì@veqzlttng27M C’qzkworker/7:0x¢–qzlttng2kworker/7:0}Áqzkworker/7:0»/r]ØL Åqzkworker/7:0lttng2·Ìqz1<üqzç<h·—õ`ç¨ÿÿÿÿÿÿÿ Rärzlttng2ñszbash1eszlttng2ˆXÆM %#szlttng2@kworker/0:1±t‘zahci#…‘z n‘zɃ‘zuhci_hcd:usb3 ‹ˆ‘z°Š‘zeth1 ‘z!,“‘z&2™‘z€Âüw(!¤‘zltt-kconsumerd2xbº‘zkworker/7:0x"AÆ‘z0Ë‘zkworker/0:1kworker/7:0#Ò‘zkworker/7:09ÿŒÙL ¨Ô‘zkworker/7:0ltt-kconsumerd2-dú‘zÈ0 $ltt-kconsumerd31’z€‚ýw€È0 -ª’z€‚ýwltt-kconsumerd.s ’z€‚ýwltt-kconsumerd'ì’z€‚ýwltt-kconsumerd(7’z€‚ýwltt-kconsumerdw)’zltt-kconsumerd2$W“5M #2’zltt-kconsumerd2kworker/0:1g€žzltt-kconsumerd2x³…žzkworker/0:1ltt-kconsumerd2žz_—žz¯ŽK=¿Ô¢žz°¥žzÊàCf>¿€àCf>¿2\«žzltt-kconsumerd2,+l}M Á²žzltt-kconsumerd2kworker/0:13þžzltt-kconsumerd2xïŸzkworker/0:1ltt-kconsumerd2ôŸzÊ)ŸzÊàCf>¿°ž>¿°ž>¿cŸzÊñŸzPb@ÿÿÿÿÿÿÿÿ°ž>¿%$Ÿz_&Ÿz¯ŽK=¿°ž>¿Q+Ÿzj-ŸzÊàCf>¿€àCf>¿2Ù0Ÿzltt-kconsumerd232Ÿ}M «7Ÿzltt-kconsumerd2kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽã\ŸzÈ7WÉ£zÈ7€€ã\Ÿzltt-kconsumerd2x9dŸzkworker/0:1ltt-kconsumerd2ÿgŸzÊ—uŸzÊàCf>¿°ž>¿ؤ>¿°ž>¿ÈwŸzÊzŸz0“@ÿÿÿÿÿÿÿÿ°ž>¿UŸzzƒŸz¯ŽK=¿°ž>¿£‡Ÿz‰ŸzÊàCf>¿€àCf>¿2(Ÿzltt-kconsumerd2;1mÐ}M ꔟzltt-kconsumerd2kworker/0:1™ÇŸzltt-kconsumerd2xCÌŸzkworker/0:1ltt-kconsumerd2÷ÏŸzÊÑÜŸzÊàCf>¿°ž>¿°ž>¿´ÞŸzʦàŸz0“@ÿÿÿÿÿÿÿÿ°ž>¿ÖæŸzéŸz¯ŽK=¿°ž>¿ðíŸzcðŸzÊàCf>¿€àCf>¿2¥óŸzltt-kconsumerd2—,ý}M )úŸzltt-kconsumerd2kworker/0:10/ zltt-kconsumerd2x³3 zkworker/0:1ltt-kconsumerd2p7 zÊME zÊàCf>¿°ž>¿°ž>¿úF zÊI z £@ÿÿÿÿÿÿÿÿ°ž>¿ÏP zèR z¯ŽK=¿°ž>¿ W z Y zÊàCf>¿€àCf>¿2?\ zltt-kconsumerd2Ÿ-£*~M ™b zltt-kconsumerd2kworker/0:1ož zltt-kconsumerd2xÚ¢ zkworker/0:1ltt-kconsumerd2p¦ zÊö³ zÊàCf>¿°ž>¿°ž>¿޵ zÊq· z £@ÿÿÿÿÿÿÿÿ°ž>¿ü¿ z z¯ŽK=¿°ž>¿2Æ zcÈ zÊàCf>¿€àCf>¿2‡Ë zltt-kconsumerd2«-NX~M ÞÑ zltt-kconsumerd2kworker/0:1Êú zltt-kconsumerd2xàÿ zkworker/0:1ltt-kconsumerd2|¡zʹ¡zÊàCf>¿°ž>¿°ž>¿Q¡zÊ@¡z`Ä@ÿÿÿÿÿÿÿÿ°ž>¿6¡zU ¡z¯ŽK=¿°ž>¿~$¡zs&¡zÊàCf>¿€àCf>¿2Ö)¡zltt-kconsumerd2©/÷‡~M v,¡zltt-kconsumerd2kworker/0:1…_¡zltt-kconsumerd2xd¡zkworker/0:1ltt-kconsumerd2•g¡zÊqs¡zÊàCf>¿°ž>¿@°ž>¿xu¡zʾw¡z`Ä@ ÿÿÿÿÿÿÿÿ°ž>¿¿‚¡zØ„¡z¯ŽK=¿°ž>¿¡ˆ¡zŸŠ¡zÊàCf>¿€àCf>¿2Û¡zltt-kconsumerd2°.§¶~M ?¡zltt-kconsumerd2kworker/0:1ÊÅ¡zltt-kconsumerd2x8Ê¡zkworker/0:1ltt-kconsumerd2ΡzÊÝÙ¡zÊàCf>¿°ž>¿ °ž>¿‡Û¡zÊXÝ¡z°Ä@ ÿÿÿÿÿÿÿÿ°ž>¿}è¡zíê¡z¯ŽK=¿°ž>¿Îî¡zñ¡z°Ä@ ÿÿÿÿÿÿÿÿ°ž>¿ðù¡zߢzöS¢z¢zö€@ŽK=¿Š¢z¸¢zHŽK=¿#õ®£z#G¸£z ¼£zltt-kconsumerd2àõ‡¬€M #œ½£z!zÁ£z"ÚÄ£z!ÜÅ£z"æÇ£zÁüÁõ©‹à‡îØF²ÿbÊ™HŽ>Ê£zÈ7qN|È7ø~€!>Ê£z "®Ï£z `C®zNF®z-$p®z0 ltt-kconsumerd3Mw®z€ºüw€0 -“y®z€ºüwltt-kconsumerd.솮z€ºüwltt-kconsumerd'É‹®z€ºüwltt-kconsumerd(þ˜®z€ºüwltt-kconsumerd:±®zltt-kconsumerd2“õ ¢‹M µ®zltt-kconsumerd2kworker/0:1#mÖz!†˜Öz"¡›Öz#‹h {!Ft {"Îv {#ºD<{#©M<{ !}R<{"T<{!}U<{ #Ya<{ "Ob<{ !]c<{ #j<{ "k<{ !l<{ "9o<{ #é!o{#)o{ !ˆ.o{"1o{!ú1o{ "44o{ #zþ¡{!` ¢{"Ä¢{#ÛÔ{#¹àÔ{ !ÿåÔ{"·èÔ{!ªéÔ{ #‡ñÔ{ "zòÔ{ !yóÔ{ "QúÔ{ #i¸|#‹Á| !)É|"ÏË|!ÂÌ| "’Ï|  |ahci#— | ³ |6 |uhci_hcd:usb3 ¹! | # |eth1 Ë' |! * |&í; |€ºð0+*XF |md1_raid1éK |md1_raid1xja |kworker/7:0x"Ôl |ës |kworker/0:1kworker/7:0{ |kworker/7:0/.ÙL æ‡ |kworker/7:0kworker/0:1W§ |md1_raid1x(¬ |kworker/0:1md1_raid13ƒ´ |€º|x€€0 -· |€º|xmd1_raid1.À |€º|xmd1_raid10^Ç |md1_raid13 Ê |€º|x€€0 ->Ì |€º|xmd1_raid1.RÓ |€º|xmd1_raid1'ÜÙ |€º|xmd1_raid11™à |md1_raid1(µå |€º|xmd1_raid1'þó |€º|xmd1_raid11õù |md1_raid1(lþ |€º|xmd1_raid1‚ |md1_raid1”hÀÊÝL   |md1_raid1kworker/0:1é& |md1_raid1xü+ |kworker/0:1md1_raid13ê1 |€ú|x€@€0 -ä7 |€ú|xmd1_raid1.%> |€ú|xmd1_raid10A |md1_raid13C |€ú|x€@€0 -|€Â|xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽM|È7 +1|È7€'M|€Â|xmd1_raid11uS|md1_raid1(aU|€Â|xmd1_raid1Ë`|md1_raid1”Jƒ¦ÞL rh|md1_raid1kworker/0:1b^|md1_raid1xBc|kworker/0:1md1_raid13h|€}x€H€0 -×j|€}xmd1_raid1.ªp|€}xmd1_raid10¤s|md1_raid13u|€}x€H€0 -4w|€}xmd1_raid1.©z|€}xmd1_raid1'‡~|€}xmd1_raid11΂|md1_raid1(Ý…|€}xmd1_raid1'è•|€}xmd1_raid11]™|md1_raid1(L›|€}xmd1_raid1g©|md1_raid1–KòÞL °|md1_raid1kworker/0:1k|md1_raid1xë|kworker/0:1md1_raid131$|€B}x€ˆ€0 -b&|€B}xmd1_raid1.ý*|€B}xmd1_raid10Í-|md1_raid13k/|€B}x€ˆ€0 -l1|€B}xmd1_raid1.æ5|€B}xmd1_raid1'Ù9|€B}xmd1_raid11á=|md1_raid1(Û@|€B}xmd1_raid1'ÄN|€B}xmd1_raid11ŸR|md1_raid1(ÙT|€B}xmd1_raid1óa|md1_raid10HI:ßL i|md1_raid1kworker/0:1 ¡$|md1_raid1xÐ¥$|kworker/0:1md1_raid13s«$|€Ê|x€€0 -Å­$|€Ê|xmd1_raid1.u²$|€Ê|xmd1_raid10`µ$|md1_raid13 ·$|€Ê|x€€0 -#¹$|€Ê|xmd1_raid1.ݼ$|€Ê|xmd1_raid1'‘À$|€Ê|xmd1_raid11™Ä$|md1_raid1(ŠÇ$|€Ê|xmd1_raid1'zÔ$|€Ê|xmd1_raid11Ñ×$|md1_raid1(ËÙ$|€Ê|xmd1_raid1àå$|md1_raid1EEŽßL âì$|md1_raid1kworker/0:1 í)|ahci#áö)| šø)|ðù)|uhci_hcd:usb3 [þ)|®ÿ)|eth1 R*|!*|&× *|€Â|x*p*|ltt-kconsumerd2K*|ltt-kconsumerd2x"D-*|¬1*|kworker/0:1ltt-kconsumerd2CC*|ìE*|Ý‚R*|ݪT*|öŒW*|ÕY*|ö£[*|q]*|ö€@ŽK=¿Í^*|Å`*|HŽK=¿j*|l*|aš*|*| -”¦*|P€0 ltt-kconsumerd¥°*|md1_raid1\º*|~¼*|Á*|ltt-kconsumerd2I§V:M ’É*|ltt-kconsumerd2kworker/0:1Æü0|md1_raid1x²1|kworker/0:1md1_raid13»1|€J}x€€0 -R 1|€J}xmd1_raid1.X1|€J}xmd1_raid10Ä1|md1_raid13°1|€J}x€€0 -É1|€J}xmd1_raid1.˜1|€J}xmd1_raid1'E 1|€J}xmd1_raid11@%1|md1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™Hޱ)1|È7Ó°P|È7 €(±)1|€J}xmd1_raid1'D<1|€J}xmd1_raid11Ô?1|md1_raid1(ØA1|€J}xmd1_raid1ªP1|md1_raid1–T'àL ¨X1|md1_raid1kworker/0:1U,7|md1_raid1x 17|kworker/0:1md1_raid1367|€Ò|x€€0 -Ð87|€Ò|xmd1_raid1.×=7|€Ò|xmd1_raid10Î@7|md1_raid13xB7|€Ò|x€€0 -‘D7|€Ò|xmd1_raid1.oH7|€Ò|xmd1_raid1'bL7|€Ò|xmd1_raid11¬P7|md1_raid1(úS7|€Ò|xmd1_raid1'b7|€Ò|xmd1_raid11Xe7|md1_raid1(>g7|€Ò|xmd1_raid1¢u7|md1_raid1æIüpàL Kx7|md1_raid1kworker/0:1#€:|!`¥:|"è:|4Z=|md1_raid1xä^=|kworker/0:1md1_raid13`d=|€}x€X€0 -‘f=|€}xmd1_raid1.|l=|€}xmd1_raid10^o=|md1_raid13öp=|€}x€X€0 -÷r=|€}xmd1_raid1.·v=|€}xmd1_raid1'æz=|€}xmd1_raid11!=|md1_raid1(i‚=|€}xmd1_raid1'=|€}xmd1_raid11‘“=|md1_raid1(h•=|€}xmd1_raid1Š =|md1_raid1G¸àL E£=|md1_raid1kworker/0:1åðB|ahci#1ûB| çüB|pþB|uhci_hcd:usb3 C|‘C|eth1 ; C|!ü C|&&C|€ }x*ÒC|ltt-kconsumerd2hC|ltt-kconsumerd2x"‡/C| 4C|kworker/0:1ltt-kconsumerd2ÿ>C|AC|Ý "LC|Ý,NC|ö~PC|»RC|öìfC|ÿhC|ö€@ŽK=¿ajC|†lC|HŽK=¿“tC|yvC|ŸC|΢C|0-D«C|˜€0 ltt-kconsumerdLµC|md1_raid1#½C|?¿C| ÛÂC|ltt-kconsumerd2ߤ¥4‘M ÆC|ltt-kconsumerd2kworker/0:1 J|md1_raid1x*J|kworker/0:1md1_raid13uJ|€Ú|x€ €0 -J|€Ú|xmd1_raid1.ÊJ|€Ú|xmd1_raid10K#J|md1_raid13.%J|€Ú|x€ €0 -D'J|€Ú|xmd1_raid1.y+J|€Ú|xmd1_raid1'Õ/J|€Ú|xmd1_raid11 4J|md1_raid1(u8J|€Ú|xmd1_raid1'¡HJ|€Ú|xmd1_raid11OLJ|md1_raid1(tNJ|€Ú|xmd1_raid1È]J|md1_raid12RÐûáL ¹`J|md1_raid1kworker/0:1ìŽP|md1_raid1xc“P|kworker/0:1md1_raid13÷˜P|€Z}x€ €0 -I›P|€Z}xmd1_raid1.\ P|€Z}xmd1_raid10V£P|md1_raid13¥P|€Z}x€ €0 -+§P|€Z}xmd1_raid1.«P|€Z}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽz¯P|È7@YÒ}È7 €'z¯P|€Z}xmd1_raid11C¶P|md1_raid1(޹P|€Z}xmd1_raid1'ˆÇP|€Z}xmd1_raid11åÊP|md1_raid1(ÔÌP|€Z}xmd1_raid1ZÚP|md1_raid1çK·GâL ÝP|md1_raid1kworker/0:1:˜Z|ahci#¢Z| C¤Z|É¥Z|uhci_hcd:usb3 gªZ|Ï«Z|eth1 ˆ°Z|!U³Z|&?·Z|€R}x*aÂZ|ltt-kconsumerd2÷ÅZ|ltt-kconsumerd2x"ØZ|LÜZ|kworker/0:1ltt-kconsumerd2æZ|!éZ|Ý0#óZ|Ý$õZ|ö¾÷Z|ÇúZ|°Ä@ ÿÿÿÿÿÿÿÿê[|« [|ö°[|{[|ö€@ŽK=¿Ë[|«[|HŽK=¿Ç[|˜ [|æG[|¤J[|P- S[|(€0 ltt-kconsumerdÅ\[|md1_raid1ud[|¬f[|@{j[|ltt-kconsumerd2ܤّM –m[|ltt-kconsumerd2kworker/0:1¶Œ`|md1_raid1x´‘`|kworker/0:1md1_raid13Þ—`|€}x€`€0 -?š`|€}xmd1_raid1.] `|€}xmd1_raid10A¤`|md1_raid13¦`|€}x€`€0 -+¨`|€}xmd1_raid1.å«`|€}xmd1_raid1'h°`|€}xmd1_raid11Tµ`|md1_raid1(2¹`|€}xmd1_raid1';È`|€}xmd1_raid11ãË`|md1_raid1(ÉÍ`|€}xmd1_raid1ÓÛ`|md1_raid1ªO ˆãL  Þ`|md1_raid1kworker/0:1#üzm|#Œ~m| !Òƒm|"±†m|!ׇm| "Ým| jÓ| "½CÓ| #}!ð}"¬}#Ðì8}#yï8} !xó8}"øô8}!ëõ8} "„ÿ8} #jÂk}#ƒÈk} !?Ík}"Ïk}!ñÏk} "Òk} #JŸž}!U¬ž}"®ž}« }md1_raid1xÜ  }kworker/0:1md1_raid13Ö }€z}x€À€0 -4 }€z}xmd1_raid1.ë }€z}xmd1_raid10E  }md1_raid13ß" }€z}x€À€0 -æ$ }€z}xmd1_raid1.ß( }€z}xmd1_raid1'b- }€z}xmd1_raid11¶3 }md1_raid1(–8 }€z}xmd1_raid1'CF }€z}xmd1_raid11J }md1_raid1(M }€z}xmd1_raid1¢Y }md1_raid1V ÞãL Df }md1_raid1kworker/0:1#…Ñ}!@ŠÑ}"³ŒÑ})CÒ}md1_raid1xèGÒ}kworker/0:1md1_raid13¬MÒ}€ê|x€0€0 -ÝOÒ}€ê|xmd1_raid1.®TÒ}€ê|xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽùWÒ}È7­Ï.ƒÈ7¸€0ùWÒ}md1_raid13|\Ò}€ê|x€0€0 -€^Ò}€ê|xmd1_raid1.ObÒ}€ê|xmd1_raid1'{fÒ}€ê|xmd1_raid11¹jÒ}md1_raid1(nÒ}€ê|xmd1_raid1'ÚÒ}€ê|xmd1_raid11šƒÒ}md1_raid1(k…Ò}€ê|xmd1_raid1$“Ò}md1_raid1ÐPÚ.äL :›Ò}md1_raid1kworker/0:1ÑÆÒ}md1_raid1x´ËÒ}kworker/0:1md1_raid13ÑÒ}€"}x€h€0 -jÓÒ}€"}xmd1_raid1.ÙÒ}€"}xmd1_raid10ÝÛÒ}md1_raid13;ÞÒ}€"}x€h€0 -ZàÒ}€"}xmd1_raid1.¢ãÒ}€"}xmd1_raid1'žçÒ}€"}xmd1_raid11ÄëÒ}md1_raid1(ßîÒ}€"}xmd1_raid1'3ûÒ}€"}xmd1_raid11þÒ}md1_raid1(aÓ}€"}xmd1_raid18 Ó}md1_raid1EòsäL vÓ}md1_raid1kworker/0:1#£`~!If~"qh~#=57~!(A7~",C7~#aj~!×j~"« j~#·îœ~!ûœ~"Úüœ~#óËÏ~!GÖÏ~"Ó×Ï~#±!˶"f¸#ò‹5!Ø5"d’5#ëah!Tlh"×mh#¶?›!ãH›]M›kworker/7:0x"×Q›mU›kworker/0:1kworker/7:0d›kworker/7:0aQëÚL šm›kworker/7:0kworker/0:1#¤Î!ú'Î"×)Î#¾€!w€"! €#ôÜ3€!Òã3€"må3€#î¹f€!L¿f€"ÛÀf€#-™€!˜™€"Lš™€#ækÌ€!~wÌ€"%yÌ€#2Pÿ€!Vÿ€"©Wÿ€#”%2!ò.2"02ß3md1_raid1xª3kworker/0:1md1_raid138#3€º}x€0 -l%3€º}xmd1_raid1.É+3€º}xmd1_raid102/3md1_raid13–13€º}x€0 -š33€º}xmd1_raid1.á73€º}xmd1_raid1'v<3€º}xmd1_raid11¶A3md1_raid1(6F3€º}xmd1_raid1'\S3€º}xmd1_raid11µW3md1_raid1( [3€º}xmd1_raid1Ãg3md1_raid1÷SéÇäL ýr3md1_raid1kworker/0:1È7ahci#ô§7 •©7 «7uhci_hcd:usb3 w¯7Á°7eth1 vµ7!¸7&õº7€º}x*%Ö7kworker/7:0x"˜Þ7ââ7kworker/0:1kworker/7:0ëè7kworker/7:0•æþÚL kð7kworker/7:0kworker/0:1#ý e!e"e<Íemd1_raid1xÂÑekworker/0:1md1_raid13ï×e€ò|x€8€0 ->Úe€ò|xmd1_raid1.Õße€ò|xmd1_raid10ãemd1_raid13ôäe€ò|x€8€0 -çe€ò|xmd1_raid1.¸êe€ò|xmd1_raid1'Ûîe€ò|xmd1_raid11póemd1_raid1(÷e€ò|xmd1_raid1'f€ò|xmd1_raid11¥fmd1_raid1(‘f€ò|xmd1_raid1Àfmd1_raid1GF0åL 4fmd1_raid1kworker/0:1#Þè—!xî—"Íð—#“¼Ê!ÆÊ"—ÇÊ#v™ý!÷¢ý"Œ¤ý#Œv0‚!ç‚0‚"|„0‚#­Rc‚!Sac‚"÷bc‚#ø/–‚!ó>–‚"y@–‚#! É‚!*É‚"°É‚#ûèû‚!öû‚"™÷û‚ÁüÁõ©‹à‡îØF²ÿbÊ™HŽzÈ.ƒÈ7ZŠø…È7€#zÈ.ƒ!°Õ.ƒÚ.ƒltt-kconsumerd2Þ.ƒltt-kconsumerd2x" â.ƒ™æ.ƒkworker/0:1ltt-kconsumerd2íû.ƒãÿ.ƒöõ/ƒÛ/ƒö€@ŽK=¿O/ƒ;/ƒHŽK=¿W/ƒ./ƒ%/ƒ`-›G/ƒp€0 ltt-kconsumerdZR/ƒmd1_raid17Z/ƒO\/ƒP¶a/ƒŸc/ƒÝPˆn/ƒÝnp/ƒöŠr/ƒou/ƒ°Ä@ ÿÿÿÿÿÿÿÿ^ƒ/ƒltt-kconsumerd2&¦§’M 1/ƒltt-kconsumerd2kworker/0:1#É«aƒ!2²aƒ"®´aƒ#€”ƒ!Š”ƒ"ÆŒ”ƒ#æ\ǃ!Miǃ"6kǃ#"9úƒ!ÇEúƒ"kGúƒ#g-„!ð!-„"y#-„#Õò_„!aû_„"êü_„#,Ð’„!PÚ’„"*Ü’„ ”“„md1_raid1x™“„kworker/0:1md1_raid13DŸ“„€:~x€€0 -·¡“„€:~xmd1_raid1.ç“„€:~xmd1_raid10V«“„md1_raid13B­“„€:~x€€0 -^¯“„€:~xmd1_raid1.³“„€:~xmd1_raid1'€·“„€:~xmd1_raid11r¼“„md1_raid1(eÀ“„€:~xmd1_raid1'õÏ“„€:~xmd1_raid11vÓ“„md1_raid1(SÕ“„€:~xmd1_raid1_á“„md1_raid1N±æL é“„md1_raid1kworker/0:10õ“„md1_raid1xú“„kworker/0:1md1_raid13tÿ“„€z~x€À0 -Ô„€z~xmd1_raid1.-”„€z~xmd1_raid10< ”„md1_raid13þ ”„€z~x€À0 -”„€z~xmd1_raid1.¡”„€z~xmd1_raid1'¾”„€z~xmd1_raid11프md1_raid1(&”„€z~xmd1_raid1'Ž'”„€z~xmd1_raid11+”„md1_raid1(æ,”„€z~xmd1_raid1Á6”„md1_raid1B4óæL P>”„md1_raid1kworker/0:1Ê»„ahci#çÅ„  Ç„ É„uhci_hcd:usb3 »Í„ Ï„eth1 ÊÓ„!vÖ„&ŠÚ„€z~x*më„kworker/7:0x"õ„tù„kworker/0:1kworker/7:0þÿ„kworker/7:0EìyÛL µž„kworker/7:0kworker/0:1#A´Å„!E¼Å„"v¾Å„#e‰ø„!™ø„"ø„#9f+…!§q+…"?s+…#ûC^…!ÃN^…"IP^…#w ‘…!«)‘…"¦+‘…#¦üÃ…!, Ä…"¯ Ä…#ZÚö…!çäö…"gæö…[,ø…md1_raid1x 1ø…kworker/0:1md1_raid13Å:ø…€ú~x€@‚0 -2=ø…€ú~xmd1_raid1.VCø…€ú~xmd1_raid10ÈFø…md1_raid13Iø…€ú~x€@‚0 -Kø…€ú~xmd1_raid1.,Oø…€ú~xmd1_raid1'‚Sø…€ú~xmd1_raid11•Xø…md1_raid1(3]ø…€ú~xmd1_raid1'hø…€ú~xmd1_raid115mø…md1_raid1(ªpø…€ú~xmd1_raid1}ø…md1_raid1mS¡FçL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽËˆø…È7~âUŠÈ7¸€ˈø…md1_raid1kworker/0:1œ¨ø…md1_raid1x6®ø…kworker/0:1md1_raid13'¶ø…€:x€€‚0 -j¸ø…€:xmd1_raid1.Žø…€:xmd1_raid10pÁø…md1_raid13YÃø…€:x€€‚0 -Éø…€:xmd1_raid1.0Îø…€:xmd1_raid1';Òø…€:xmd1_raid11‹Öø…md1_raid1(!Úø…€:xmd1_raid1'&äø…€:xmd1_raid11éçø…md1_raid1(öéø…€:xmd1_raid1ƒöø…md1_raid1LPí–çL fþø…md1_raid1kworker/0:1Ž3ù…md1_raid1x58ù…kworker/0:1md1_raid13x@ù…€2}x€x€0 -ÁBù…€2}xmd1_raid1.æGù…€2}xmd1_raid10"Kù…md1_raid13¼Mù…€2}x€x€0 -ÒOù…€2}xmd1_raid1.#Sù…€2}xmd1_raid1'3Xù…€2}xmd1_raid11ò\ù…md1_raid1(…`ù…€2}xmd1_raid1'\kù…€2}xmd1_raid11×nù…md1_raid1(Òpù…€2}xmd1_raid1/}ù…md1_raid1ÞKËâçL ë„ù…md1_raid1kworker/0:1#%½)†!:Ã)†"æÅ)†Án*†md1_raid1xYs*†kworker/0:1md1_raid13Ïx*†€‚~x€È0 - {*†€‚~xmd1_raid1.4€*†€‚~xmd1_raid10ƒ*†md1_raid13Þ„*†€‚~x€È0 -è†*†€‚~xmd1_raid1.oŠ*†€‚~xmd1_raid1'}Ž*†€‚~xmd1_raid11¬’*†md1_raid1(÷•*†€‚~xmd1_raid1'¢*†€‚~xmd1_raid11¡¥*†md1_raid1(´§*†€‚~xmd1_raid1ý²*†md1_raid1»D†'èL Sº*†md1_raid1kworker/0:1š½.†ahci#yÆ.† )È.†‘É.†uhci_hcd:usb3 #Î.†»Ï.†eth1 bÔ.†!ØÖ.†&lÙ.†€‚~x*Üç.†kworker/7:0x"ð.†Wô.†kworker/0:1kworker/7:0ôù.†kworker/7:0öâŒÛL /†kworker/7:0kworker/0:1#Ê›\†!¡\†""¤\†#½q†!÷}†"†#ÜL†!W†" X†#Ï*õ†!#5õ†"²6õ†#w(‡!–(‡":(‡#§êZ‡!3ïZ‡"¿ðZ‡#À‡!ˆÎ‡";Ї#-§À‡!׫À‡"l­À‡#ºyó‡!¦…ó‡" ‡ó‡#J\&ˆ!>b&ˆ"d&ˆ#§3Yˆ!=Yˆ"‹>Yˆ#ðŒˆ!qŒˆ" Œˆ#$í¾ˆ!–÷¾ˆ" ù¾ˆ#vÊñˆ!÷Öñˆ"’Øñˆ#§$‰!ª°$‰"}³$‰#'‹W‰!¼W‰"<‘W‰# aЉ#¸kЉ!ûmЉ"~oЉ!tpЉ"ÞuЉ’/‹‰md1_raid1x`4‹‰kworker/0:1md1_raid13î<‹‰€‚}x€È€0 -I?‹‰€‚}xmd1_raid1.E‹‰€‚}xmd1_raid10mH‹‰md1_raid13yK‹‰€‚}x€È€0 -}M‹‰€‚}xmd1_raid1.ŽQ‹‰€‚}xmd1_raid1'(W‹‰€‚}xmd1_raid11M\‹‰md1_raid1(è`‹‰€‚}xmd1_raid1'¸l‹‰€‚}xmd1_raid11¿q‹‰md1_raid1(¹t‹‰€‚}xmd1_raid10…‹‰md1_raid1ŸW%èL V‹‰md1_raid1kworker/0:1#F?½‰!9J½‰"÷L½‰#?ð‰#•#ð‰!&ð‰"(ð‰!)ð‰"²-ð‰#Oþ"Š!‹#Š"#Š#ÌÜUŠÁüÁõ©‹à‡îØF²ÿbÊ™HŽUáUŠÈ7ÕÈ7P€#UáUŠ!®åUŠFíUŠltt-kconsumerd2­òUŠltt-kconsumerd2x"r÷UŠ!˜øUŠ"îüUŠiVŠkworker/0:1ltt-kconsumerd2**VŠÄ/VŠö*3VŠò4VŠö€@ŽK=¿T6VŠ=8VŠHŽK=¿lEVŠXGVŠåŒVЦVŠ€-I˜VŠÀ‚0 ltt-kconsumerd•£VŠmd1_raid1t¬VŠ{®VŠp޳VŠqµVŠÝp}ÀVŠÝoÂVŠö²ÄVŠÜÇVаÄ@ ÿÿÿÿÿÿÿÿHÔVŠltt-kconsumerd2×â~b“M WàVŠltt-kconsumerd2kworker/0:1#Œ¸ˆŠ!Í¿ˆŠ"=ˆŠ@R‰Šmd1_raid1xAW‰Škworker/0:1md1_raid13¹]‰Š€Š~x€Ð0 -)`‰Š€Š~xmd1_raid1.üe‰Š€Š~xmd1_raid10ti‰Šmd1_raid13Zk‰Š€Š~x€Ð0 -jm‰Š€Š~xmd1_raid1.xq‰Š€Š~xmd1_raid1' v‰Š€Š~xmd1_raid11çz‰Šmd1_raid1(‰Š€Š~xmd1_raid1'\‰Š€Š~xmd1_raid11‘‰Šmd1_raid1(Ø’‰Š€Š~xmd1_raid1d‰Šmd1_raid1LêL ;¥‰Šmd1_raid1kworker/0:1#™™»Š#휻Š!ùŸ»Š"3¢»Š!A£»Š"3¨»Š#ŒrîŠ!ÿwîŠ"©yîŠ#ëG!‹#R!‹!T!‹"ÌU!‹!ÔV!‹"RZ!‹#$T‹!¥0T‹"O2T‹ûT‹md1_raid1xU‹kworker/0:1md1_raid13ãU‹€Â}x€0 -2 U‹€Â}xmd1_raid1.ÂU‹€Â}xmd1_raid10U‹md1_raid13U‹€Â}x€0 -,U‹€Â}xmd1_raid1.(U‹€Â}xmd1_raid1'_#U‹€Â}xmd1_raid11M)U‹md1_raid1(c.U‹€Â}xmd1_raid1'Í9U‹€Â}xmd1_raid11>U‹md1_raid1(•AU‹€Â}xmd1_raid1˜MU‹md1_raid1®TÃWêL õVU‹md1_raid1kworker/0:1zY‹ahci#u„Y‹ (†Y‹¥‡Y‹uhci_hcd:usb3 CŒY‹±Y‹eth1 s’Y‹!%•Y‹&7˜Y‹€Â}x*“´Y‹kworker/7:0x",¾Y‹½ÂY‹kworker/0:1kworker/7:0ÉY‹kworker/7:0]Û\ÜL [ÐY‹kworker/7:0kworker/0:1#Ý ‡‹#[‡‹!‡‹"‰‡‹!|‡‹"º‡‹#¼ß¹‹!’鹋"‚í¹‹#ƒºì‹#¬Äì‹!¹Æì‹"™Èì‹!žÉì‹"Íì‹#®Œ!e¤Œ"¦Œ#¯tRŒ#”~RŒ!›€RŒ"‚RŒ!ƒRŒ"q†RŒ#/[…Œ!B`…Œ"æa…Œ#–.¸Œ#,9¸Œ!u;¸Œ"=¸Œ!!>¸Œ"lA¸Œ#Ñ ëŒ! ëŒ"®ëŒ#4è#Añ!ió"Fõ!Hö"ºùP¡md1_raid1x3¦kworker/0:1md1_raid13*¯€x€H‚0 -—±€xmd1_raid1.¸·€xmd1_raid10?»md1_raid13ß½€x€H‚0 -à¿€xmd1_raid1.¦Ã€xmd1_raid1'žÈ€xmd1_raid11¹Îmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ´ÓÈ7÷9‘È7ð€(´Ó€xmd1_raid1':ä€xmd1_raid11'èmd1_raid1(ˆê€xmd1_raid1ömd1_raid1ÓV–®êL Dmd1_raid1kworker/0:1#gÌP! ÔPÛPltt-kconsumerd2HßPltt-kconsumerd2x"^äPrèPkworker/0:1ltt-kconsumerd2QQöÝQ®Qö€@ŽK=¿QáQHŽK=¿Ô+Qù-QÔdQzgQ- pQÈ‚0 ltt-kconsumerdh|Qmd1_raid1 …Q‡Q€ ŒQäQÝ€#—QÝ$™QöC›Q^žQ°Ä@ ÿÿÿÿÿÿÿÿýªQltt-kconsumerd2*̨.”M δQltt-kconsumerd2kworker/0:1#שƒ#*®ƒ!&²ƒ"i´ƒ!tµƒ"÷¹ƒÕ8„md1_raid1xë=„kworker/0:1md1_raid13?D„€’~x€Ø0 -‘F„€’~xmd1_raid1.ÊL„€’~xmd1_raid10?P„md1_raid13R„€’~x€Ø0 - T„€’~xmd1_raid1.þW„€’~xmd1_raid1'l\„€’~xmd1_raid114a„md1_raid1(3e„€’~xmd1_raid1'ès„€’~xmd1_raid11Nw„md1_raid1(+y„€’~xmd1_raid1½†„md1_raid1ÉN´ìL ¸Ž„md1_raid1kworker/0:1#<€¶!&‹¶"W¶#L[é#,fé!hé"Œié!|jé"Øné#I8Ž!ZCŽ"jEŽ#ËOŽ##"OŽ!-$OŽ"æ%OŽ!è&OŽ"`*OŽ#®ñŽ!àüŽ"ÏþŽ#1δŽ!ÆØ´Ž"mÚ´Ž#›«çŽ#c³çŽ!‹µçŽ"¿·çŽ!¾¸çŽ"6¼çŽ#Ö‡!ã“"~•#JeM#²oM!ÜrM"wtM!guM"cyM#ùA€!éL€"N€#*³#+³!P-³"Q/³!A0³"Ô3³#7ûå!Qæ"éæ#ó×#œà!Çâ"tä!aå"åè#ß´K!*ÄK"ÎÅK#~“~# ›~!\ž~"îŸ~!Þ ~"°¤~#±u±!vz±"P|±#|Kä#Tä!Vä"žWä!ˆXä"-\äØåmd1_raid1xèåkworker/0:1md1_raid13q"å€~x€H0 -«$å€~xmd1_raid1.¼+å€~xmd1_raid10þ.åmd1_raid13"2å€~x€H0 -;4å€~xmd1_raid1.Ç8å€~xmd1_raid1'v>å€~xmd1_raid11 Dåmd1_raid1(óHå€~xmd1_raid1'nUå€~xmd1_raid11œZåmd1_raid1(Z]å€~xmd1_raid1iåmd1_raid1#U×nìL Åsåmd1_raid1kworker/0:1õ·éahci#Âé ¼ÃéKÅéuhci_hcd:usb3 æÉé6Ëéeth1 þÏé!³Òé&ÈÕé€~x*™ñékworker/7:0x"ºúéÿékworker/0:1kworker/7:0mêkworker/7:0 H(ÝL ¢ êkworker/7:0kworker/0:1#j0‘!Ë5‘ÁüÁõ©‹à‡îØF²ÿbÊ™Hް8‘È7By”È7P€"°8‘#ã J‘#J‘! J‘™J‘ltt-kconsumerd2vJ‘ltt-kconsumerd2x"A$J‘!g%J‘"*J‘\-J‘kworker/0:1ltt-kconsumerd2¤KJ‘?PJ‘öâRJ‘ªTJ‘ö€@ŽK=¿VJ‘õWJ‘HŽK=¿&cJ‘eJ‘=—J‘à™J‘ -M¢J‘Ђ0 ltt-kconsumerd—¬J‘md1_raid16µJ‘I·J‘J¼J‘9¾J‘ÝÕÇJ‘ÝèÉJ‘öÌJ‘gÏJ‘°Ä@ ÿÿÿÿÿÿÿÿ¦ÛJ‘ltt-kconsumerd2<½äë”M ³æJ‘ltt-kconsumerd2kworker/0:1#ãé|‘!ªï|‘" ò|‘z}‘md1_raid1x{¢}‘kworker/0:1md1_raid13À¨}‘€¢~x€è0 -`«}‘€¢~xmd1_raid1.ɱ}‘€¢~xmd1_raid10_µ}‘md1_raid13o·}‘€¢~x€è0 -…¹}‘€¢~xmd1_raid1.T½}‘€¢~xmd1_raid1'Â}‘€¢~xmd1_raid11ÿÆ}‘md1_raid1(:Ë}‘€¢~xmd1_raid1'£Ù}‘€¢~xmd1_raid11 Ý}‘md1_raid1(éÞ}‘€¢~xmd1_raid1”ë}‘md1_raid1êN3ÉíL eó}‘md1_raid1kworker/0:1#ȯ‘#N̯‘!Bϯ‘"mѯ‘!{Ò¯‘"¾×¯‘##œâ‘!£ªâ‘"8¬â‘#y’#ï’!烒"†’! ‡’"‹’#UH’!ã_H’"bH’#h:{’#‰={’!l?{’"ï@{’!âA{’"“E{’#9®’!j®’"—®’#%ìà’#°÷à’!Dúà’"Íûà’!Àüà’"¤á’#¿É“!wÕ“"*ד#¡«F“#4¯F“!°±F“"l³F“!w´F“"ηF“#‚y“!Ly“")y“#ºf¬“#€j¬“!l¬“"Žn¬“!o¬“"ör¬“#O<ß“!ÅEß“"oGß“Ÿà“md1_raid1xÓà“kworker/0:1md1_raid13¾à“€Š}x€Ð€0 - à“€Š}xmd1_raid1.ñ&à“€Š}xmd1_raid10<*à“md1_raid13·-à“€Š}x€Ð€0 -Ó/à“€Š}xmd1_raid1.½3à“€Š}xmd1_raid1'-9à“€Š}xmd1_raid11Ç>à“md1_raid1(­Cà“€Š}xmd1_raid1'6Qà“€Š}xmd1_raid11¼Uà“md1_raid1(}Xà“€Š}xmd1_raid1Éfà“md1_raid11Yd"îL Nrà“md1_raid1kworker/0:1#—!”#™%”!u(”"+”!,”"H1”#—ûD”!°E”~E”flush-9:1P x"¶ E”@ E”kworker/0:1flush-9:1P “ E”flush-9:1P ·›ìÝL ¾+E”flush-9:1P kworker/0:1#lÓw”#õÝw”!zàw”"`âw”!_ãw”"ïæw”ÛÀx”md1_raid1xÆx”kworker/0:1md1_raid13Îx”€B~x€ˆ0 -[Ðx”€B~xmd1_raid1.×x”€B~xmd1_raid10Úx”md1_raid13WÝx”€B~x€ˆ0 -[ßx”€B~xmd1_raid1.Ìãx”€B~xmd1_raid1'Eéx”€B~xmd1_raid11Çîx”md1_raid1(}óx”€B~xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚy”È7tT›È7à€'Úy”€B~xmd1_raid11v y”md1_raid1(‚ y”€B~xmd1_raid1Ây”md1_raid1Ð\4îL '%y”md1_raid1kworker/0:1#Š·ª”!˾ª”Àê”ltt-kconsumerd2…Ȫ”ltt-kconsumerd2x";ͪ”ÄѪ”kworker/0:1ltt-kconsumerd2-𪔘ôª”öuüª”Uþª”ö€@ŽK=¿Þÿª”Ä«”HŽK=¿¤ «”“«”¤B«”bE«”Ð-N«”ð0 ltt-kconsumerd?Y«”md1_raid1 c«”6e«”Àj«”l«”ÝÀÊv«”Ýàx«”öq{«”±}«”ö «”_«”ö€@ŽK=¿¬‚«”’„«”HŽK=¿KŒ«”=Ž«”¾²«”@µ«”°-~¼«”Ø‚0 ltt-kconsumerd?Ë«”FÍ«” ÃÑ«””Ó«”Ý mÜ«”݌ޫ”öÒà«”óã«”°Ä@ ÿÿÿÿÿÿÿÿ\ð«”ltt-kconsumerd2Ê(®–M òø«”ltt-kconsumerd2kworker/0:1ëñ°”ahci#8ü°” þ°”žÿ°”uhci_hcd:usb3 <±”³±”eth1 q ±”!> ±”&=±”€ª~x*")"±”#ì”Ý”#î˜Ý”!ߛݔ" žÝ”!ýžÝ”"¤Ý”#0k•!Iv•"íw•##FC•!€PC•"!RC•#ž+v•#./v•!1v•"Ç2v•!·3v•"}7v•#Yÿ¨•!/ ©•"è ©•#žÜÛ•#™çÛ•!‚éÛ•" ëÛ•!øëÛ•"ˆïÛ•#ûÀ–!Æ–"ZÈ–#Ë•A–#JŸA–!'¡A–"ã¢A–!Ó£A–"i§A–#Ärt–!q}t–"t–#KP§–#;[§–!']§–"_§–!ô_§–"üc§–#Ñ,Ú–!Ä:Ú–"}<Ú–#Z —#à —!² —"8 —!% —"Á —#vñ?—!}ö?—"!ø?—#gÃr—!5Îr—"3Ðr—# ¨¥—#ë«¥—!Ú­¥—"¨¯¥—!³°¥—"þ³¥—}°—ahci#–‡°— U‰°—ÆŠ°—uhci_hcd:usb3 O°—¨°—eth1 [•°—!_—°—&¹š°—€²~x*8®°—kworker/7:0x"V·°—Ù»°—kworker/0:1kworker/7:0Z°—kworker/7:0´bßL õɰ—kworker/7:0kworker/0:1#ðØ—!X‰Ø—"ã‹Ø—#ËY ˜#Îc ˜!½e ˜"ài ˜!Íj ˜"ên ˜#Ò6>˜!¬?>˜"nA>˜#ìq˜#Pq˜!T q˜" "q˜!#q˜"o&q˜#vù£˜!¾ÿ£˜"}¤˜#7ÎÖ˜#¼ÜÖ˜!ÞÞÖ˜"dàÖ˜!QáÖ˜"ÉäÖ˜#ª ™!?´ ™"ìµ ™#`†<™#Ë<™!ü’<™"ù•<™!—<™"…š<™ÝZA™ahci yjA™ákA™uhci_hcd:usb3 OpA™“qA™eth1 :vA™# lo™!Ñqo™"êso™#ñG¢™#M¢™!O¢™"Q¢™!R¢™""V¢™##Õ™!°&Õ™"](Õ™#ºùš!¾š"àš#3×:š#ñà:š!<ã:š"Åä:š!µå:š"Té:š#§³mš!ľmš"YÀmš#» š# ™ š!üš š"”œ š!„ š"¡ š#ImÓš!¾zÓš"w|Óš#PJ›ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ-S›È7tœ^£È7ð€#-S›!ÝW›ú^›ltt-kconsumerd2¯d›ltt-kconsumerd2x"i›!+j›"„n›&r›kworker/0:1ltt-kconsumerd2Ö›þ¢›!öd¯›8±›!ö€@ŽK=¿è²›Ñ´›!HŽK=¿ØÁ›ÊÛ"®›Q ›"@-ý› 0 ltt-kconsumerdÙ)›Ú+›"0W0›2›Ý"0–?›ÝÇA›!öE›gG›ö\I›K›ö€@ŽK=¿hL›HN›HŽK=¿jY›P[›–›è˜›À-Ñ ›è‚0 ltt-kconsumerdhµ›Ì·›°¼›í½›Ý°ÞÉ›ÝÙË›ö Λ:Ñ›°Ä@ ÿÿÿÿÿÿÿÿDß›ltt-kconsumerd2(|Ö—M ë›ltt-kconsumerd2kworker/0:1#’19›!:9›"o<9›#Q l›#;l›!0l›"Ñl›!Êl›"Pl›# çž›!Ùëž›"¨îž›#“½Ñ›#ÁÆÑ›!¶ÈÑ›"xÊÑ›!€ËÑ›"òÎÑ›#활!D£œ"ܤœ#õw7œ#¢ƒ7œ!Ê…7œ"A‡7œ!4ˆ7œ"Ó‹7œ#îZjœ!°_jœ"ajœ#Ñ0œ#c8œ!L:œ"í;œ!ã<œ"p@œ󒢜ahci ‘£¢œ¥¢œuhci_hcd:usb3 ©¢œíª¢œeth1 —¯¢œ# М!iМ"jМ#$ê#üô!÷"¹ø!Æù"_ý#CÇ5!ˆÑ5"/Ó5#<¤h#?­h!1¯h"´°h!§±h"Fµh# ›!QŽ›"é›#Ñ]Î#2jÎ!{ú¡#Ö†ú¡!Ȉú¡"`Šú¡!‹ú¡"—ú¡#3X-¢!Nb-¢"òc-¢#ª4`¢#Á>`¢!³@`¢"„B`¢!ŒC`¢"ãF`¢#e“¢!I“¢"ó“¢îFž¢ahci ÅTž¢Vž¢uhci_hcd:usb3 •Zž¢Ó[ž¢eth1 ž`ž¢#ÏîÅ¢!ZøÅ¢"„ûÅ¢#Ëø¢#HÖø¢!”Øø¢"&Úø¢!Ûø¢"ßø¢#T¨+£! ²+£"6´+£#‘„^£#]’^£!X”^£">–^£!1—^£ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ!›^£È7á~¯È7Ѐ"!›^£#b‘£!en‘£|u‘£ltt-kconsumerd2®|‘£ltt-kconsumerd2x" ‚‘£˜†‘£kworker/0:1ltt-kconsumerd2ø°‘£ ¶‘£ö ¹‘£ܺ‘£ö€@ŽK=¿;¼‘£¾‘£HŽK=¿äÊ‘£ÐÌ‘£o’£$ ’£Ð-’£ð‚0 ltt-kconsumerdY0’£W2’£Àw6’£u8’£ÝÀB’£ÝD’£öF’£1I’£°Ä@ ÿÿÿÿÿÿÿÿÊU’£ltt-kconsumerd2´ÛŠl˜M $b’£ltt-kconsumerd2kworker/0:1ØÇ–£ahci -Ø–£­Ù–£uhci_hcd:usb3 9Þ–£›ß–£eth1 Nä–£#¤HÄ£#MÄ£!ÕPÄ£"$SÄ£!TÄ£"FXÄ£#ç÷£!`'÷£"a)÷£#|ø)¤#y*¤!h*¤"î*¤!ä*¤"’ *¤#áÔ\¤!Åß\¤"~á\¤#ȱ¤#^»¤!J½¤" ¿¤!À¤"\ä#(¤!ט¤"›Â¤#Ïkõ¤#›võ¤!–xõ¤"zõ¤!{õ¤"~õ¤#LH(¥!þS(¥"ÀU(¥#^%[¥#Ø/[¥!µ1[¥"53[¥!(4[¥"ß7[¥#hŽ¥! Ž¥"þŽ¥#ÛßÀ¥!]ìÀ¥"1îÀ¥#k¼ó¥#¹Åó¥!ÀÇó¥"jÉó¥!]Êó¥"Îó¥#Ùž&¦!ú¤&¦"­¦&¦#/{Y¦#€Y¦!‚Y¦"™ƒY¦!„Y¦"%ˆY¦#•RŒ¦!Ï^Œ¦"j`Œ¦#è.¿¦# <¿¦!>¿¦"@@¿¦!HA¿¦"™D¿¦#- ò¦!dò¦"üò¦#Cé$§#Ëò$§!Æô$§"Lö$§!?÷$§"û$§#êÅW§!ÇÑW§"wÓW§#5¢Š§#?­Š§!+¯Š§"±°Š§!¤±Š§"é´Š§#½§!н§"d½§#Š\ð§#àdð§!ífð§"Ühð§!Òið§"˜mð§_õ§ahci )Žõ§—õ§uhci_hcd:usb3 ÿ“õ§=•õ§eth1 ä™õ§#y9#¨!?C#¨"UE#¨#V¨#“#V¨!'&V¨"û'V¨!)V¨"¨,V¨#Tòˆ¨!®ÿˆ¨"U‰¨#0л¨!‡Ú»¨"aÜ»¨#¬î¨#Eµî¨!X·î¨"ä¸î¨!×¹î¨" ½î¨#Š!©!–!©"—!©#ÔeT©#ÑoT©!ÞqT©"gsT©!ZtT©"ÒwT©#5I‡©!O‡©"P‡©#Õº©#<(º©!.*º©"ü+º©!-º©"a0º©#+üì©!áí©"” í©#\àª#×ãª!Ïåª"Oçª!Bèª"Éëª#ÚµRª!y¿Rª"#ÁRª#»š…ª#«ž…ª!¸ …ª"k¢…ª!^£…ª"§…ª#p¸ª!^{¸ª",}¸ª#¾Lëª#QVëª![Xëª"çYëª!ÚZëª"g^ëª#.)«!ï4«"6«#áQ«#ÝQ«!ÌQ«"LQ«!?Q«"PQ«#cル!¨ðƒ«"Áòƒ«#¿¶«#íȶ«!âʶ«"_̶«!UͶ«"Üж«#Æœé«!„©é«"«é«#˜‚¬#¸†¬!މ¬"\‹¬!jŒ¬"Ó¬¬,¬ahci b¹,¬»º,¬uhci_hcd:usb3 ¿,¬OÀ,¬eth1 üÄ,¬7)?¬ahci Æ6?¬û7?¬uhci_hcd:usb3 rá°"mBá°# ±!(±" ±#׿F±#4óF±!)õF±"²öF±!¥÷F±"€ûF±#·Ãy±!Ñy±"Òy±#¡¬±#묬±!¯¬±"ü°¬±!ﱬ±"Óµ¬±#ô}ß±!UŠß±"ö‹ß±#ÑZ²#£j²!ƒl²"n²!ün²"¿r²#}7E²!±?E²"¿CE²#fx²# x²!€"x²"B$x²!5%x²"¶(x²#´ðª²!¥üª²"Fþª²»L°²ahci [°²Þ\°²uhci_hcd:usb3 Xa°²Ïb°²eth1 Žg°²#¸Íݲ#ÐÖݲ!Ùݲ"Ûݲ!RÜݲ"!àݲ#ˆª³!#¶³"ݹ³#A‡C³# ’C³!#”C³"`–C³!S—C³"ךC³#dv³!^ov³"7rv³#A©³#žK©³!®M©³"1O©³!*P©³"ØS©³#cܳ!¶*ܳ"<,ܳ#Hû´#²´!È´"Þ ´!æ ´"X´îH´ahci ‹W´Y´uhci_hcd:usb3 Ž]´É^´eth1 šc´#à×A´!¯äA´"ÔæA´#>´t´#½t´!¿t´"öÀt´!éÁt´"ŽÅt´#‘§´!Á§´"hŸ§´#ynÚ´#xxÚ´!”zÚ´",|Ú´!"}Ú´"‘€Ú´#$L µ!W µ"GY µ#ù'@µ#2@µ!4@µ"†5@µ!µ6@µ":@µ#³ sµ!¡sµ"]sµ#*᥵#ií¥µ!掠"Gñ¥µ!:ò¥µ"šõ¥µ# ¾Øµ!ýÊØµ"ãÌØµ#j› ¶# ¦ ¶!¨ ¶"¥© ¶!›ª ¶""® ¶#x>¶!Ý>¶"¨ƒ>¶#ŠTq¶#æ^q¶!ó`q¶"cq¶!dq¶"Mgq¶#x2¤¶!ú;¤¶"¶=¤¶PR¶¶ahci Í_¶¶&a¶¶uhci_hcd:usb3  e¶¶ g¶¶eth1 Çk¶¶#T×¶#×¶!Q×¶"C×¶!×¶";!×¶#=ë ·!ñ÷ ·"¡ù ·#ËÇ<·#µÒ<·!¿Ô<·"EÖ<·!8×<·"›Ú<·#à¥o·!°¯o·"]±o·#“‰¢·#1Ž¢·!,¢·"Ü‘¢·!ä’¢·"°–¢·#P^Õ·!clÕ·"CnÕ·#¼;¸#¦E¸!õG¸"¥I¸!¤J¸"N¸#;¸!#;¸"Ç$;¸#\õm¸!aÿm¸"än¸#Ò ¸#ZÞ ¸!Cà ¸";â ¸!.ã ¸"¦æ ¸#ˆ®Ó¸!tºÓ¸"œ¼Ó¸#q‹¹#Ä–¹!ž˜¹"iš¹!q›¹"jŸ¹#0h9¹!xt9¹"7v9¹#El¹!ˆPl¹"RSl¹#Š#Ÿ¹#¦,Ÿ¹!Œ.Ÿ¹"0Ÿ¹!1Ÿ¹"L5Ÿ¹#˜Ò¹!• Ò¹"¢ Ò¹#ܺ!bçº"3éº#;¸7º#×Â7º!Å7º"‘Æ7º!‡Ç7º"ùÊ7º#Y jº!6¥jº"L§jº#%rº# {º!‰}º"º!€º"›ƒº#LOк!Š\к"7^к#÷-»#¸7»ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ:»È7ň ÀÈ7p€!:»ßC»ltt-kconsumerd2J»ltt-kconsumerd2x"×N»!P»"2T»OX»kworker/0:1ltt-kconsumerd2†ƒ»̈»öŒ»â»ö€@ŽK=¿D»3‘»HŽK=¿»‹Ÿ»LØ»àÚ»ð-¥â»ƒ0 ltt-kconsumerd(ü»þ»à »ó»ÝàͻݻöM»P»°Ä@ ÿÿÿÿÿÿÿÿj »¿"»öi-»%/»ö€@ŽK=¿Ì0»å2»HŽK=¿n:»f<»Ðt»»w»ð-É~»„0 ltt-kconsumerdÀ“»²•»à~™»R›»Ýà]¨»Ý.ª»ö­»3°»°Ä@ ÿÿÿÿÿÿÿÿµ¾»ltt-kconsumerd2v-¸šM É»ltt-kconsumerd2kworker/0:1«N»ahci ¥]»û^»uhci_hcd:usb3 xc»¼d»eth1 ii»#ä6»!{6»76»kworker/7:0x""6»°&6»kworker/0:1kworker/7:0{46»kworker/7:0@m´ãL =?6»kworker/7:0kworker/0:1#ƒïh»#?ôh»!öh»"¹øh»!¸ùh»"†þh»#…Ë›»!Ò›»"7Ô›»#+ŸÎ»#n¨Î»!{ªÎ»":¬Î»!*­Î»"ö°Î»#b|¼!O‰¼"#‹¼#ÝY4¼#ÿd4¼!÷f4¼"Èh4¼!²i4¼"Hm4¼Æ9¼ahci ÔÔ9¼KÖ9¼uhci_hcd:usb3 ÔÚ9¼iÜ9¼eth1 á9¼#Q6g¼!+Bg¼"zDg¼#Íš¼#†š¼!o!š¼"U#š¼!?$š¼"(š¼#šï̼!Sú̼"úû̼#²Ìÿ¼#²Öÿ¼!ûØÿ¼"«Úÿ¼!­Ûÿ¼" ßÿ¼#ª2½!t³2½"µ2½#$†e½#“e½!l•e½"ï–e½!Ü—e½"É›e½#`l˜½!þp˜½"–r˜½#³?˽#ýJ˽!yM˽"O˽!þO˽"‹S˽#:þ½!Ë'þ½"œ)þ½#1¾#’1¾!o 1¾"" 1¾! 1¾"21¾#ÛÕc¾!ößc¾"ác¾#£²–¾#ä½–¾!¢À–¾"+–¾!Ö¾"–Æ–¾#ìɾ!{ɾ"ŸÉ¾#mü¾#\uü¾!‡wü¾"yü¾!îyü¾"„}ü¾#–I/¿!¥V/¿"CX/¿#}&b¿#Ý/b¿!Õ1b¿"p3b¿!]4b¿"ó7b¿# •¿!†•¿"$•¿#2èÇ¿#úìÇ¿!ïÇ¿"êðÇ¿!ïñÇ¿"(õÇ¿#+½ú¿!—Êú¿",Ìú¿‚; Àbash1x†@ Àkworker/0:1bash1ñM À T À°n gMûoT] Àbash1†"ã,M j_ Àkworker/7:0xcc Àbash1xÓh À&p Àà]n`^n„r Àu ÀT5-ÿ`SnAy À'{ ÀTÀ5-ÿÀ5-ÿ`Snì‚ À·„ ÀTÀ5-ÿÀ5-ÿ`SnÁüÁõ©‹à‡îØF²ÿbÊ™Hއ ÀÈ7 ¶-ÀÈ7€‡ À¿‹ À`^n`SnN À© À à4-ÿ@4-ÿ5-ÿt‘ À c“ À à4-ÿ@4-ÿ5-ÿé” À Ì– À à4-ÿ@4-ÿ5-ÿI˜ À #š À à4-ÿ@4-ÿ5-ÿ› À Y À à4-ÿ@4-ÿ5-ÿ²ž À   À à4-ÿ@4-ÿ5-ÿå¡ À ¼£ À à4-ÿ@4-ÿ5-ÿ ¥ À § À à4-ÿ@4-ÿ5-ÿZ¨ À ¾ª À @4-ÿ 3-ÿð4-ÿ¬ À g¶ À¨qn· Àй À PD-ÿ°C-ÿE-ÿ5» À Íõ À°5-ÿ05-ÿÊ÷ ÀIú ÀÿT5-ÿ©ý Àzÿ À05-ÿß!À!À @4-ÿ 3-ÿð4-ÿÌ!À "Àà]n`^n—"À˜"ÀT05-ÿB"À"ÀT05-ÿ& "À9 "ÀTÐ4-ÿà5-ÿ$"À/"ÀTÀ4-ÿà5-ÿÞ"À¯"ÀTð4-ÿð4-ÿà5-ÿ0"Àì"ÀTð4-ÿð4-ÿà5-ÿb""À·$"À`^ngMûo&"À("À@XnÀWngMûop)"ÀÑ+"À  2-ÿ2-ÿð3-ÿf-"À ¬/"À  2-ÿ2-ÿð3-ÿð0"À Ù2"À 4-ÿp3-ÿÀ4-ÿ74"À Y6"À  2-ÿ2-ÿð3-ÿ7"À z9"À 4-ÿp3-ÿÀ4-ÿÊ:"À ¹<"À p3-ÿÐ2-ÿÀ4-ÿ>"À (@"À  2-ÿ2-ÿð3-ÿ{A"À XC"À 4-ÿp3-ÿÀ4-ÿ¨D"À ¯F"À  2-ÿ2-ÿð3-ÿùG"À ÖI"À 4-ÿp3-ÿÀ4-ÿ&K"À 0M"À  2-ÿ2-ÿð3-ÿqN"À NP"À 4-ÿp3-ÿÀ4-ÿ•Q"À WS"ÀÀWnÀ4-ÿžT"À«V"À  2-ÿ2-ÿð3-ÿX"À ‰Z"Àà]n`^në["À-n"À°n$gMûoÿÿÿÿ#u"Àbash1x‡z"À$ú|"À`^ngMûoÿÿÿÿS~"Àx€"ÀtngMûoË"À›„"Àï5-ÿgMûoŠ"Àbash1Œ,oY M €"Àbash1kworker/7:0Yœ"Àkworker/7:0¨ÇãL ¥"Àkworker/7:0kworker/0:1#Ô¡-À#²¥-À!„©-ÀK¯-Àltt-kconsumerd2ÁüÁõ©‹à‡îØF²ÿbÊ™Hޏ´-ÀÈ7ˆgùÃÈ7ð€¸´-Àltt-kconsumerd2x"¼-À!g½-À"SÂ-ÀŽÆ-Àkworker/0:1ltt-kconsumerd2iå-ÀOê-ÀöÅò-Àºô-Àö€@ŽK=¿Cö-Àbø-ÀHŽK=¿³.ÀÏ.À&@.ÀC.À€-‚L.ÀH„0 ltt-kconsumerdµd.Àg.Àp±k.À¯m.ÀÝpŒ{.ÀÝ´}.Àö€.À+‚.Àö•„.ÀW†.Àö€@ŽK=¿¤‡.À„‰.ÀHŽK=¿e.ÀN’.Àòº.À‰½.À-²Ä.Àƒ0 ltt-kconsumerdõÛ.ÀüÝ.Àð²â.À‰ä.ÀÝðï.ÀÝÑð.Àöóò.Àªö.À°Ä@ ÿÿÿÿÿÿÿÿý/À^/Àö/À+/Àö€@ŽK=¿Û/Àú/ÀHŽK=¿Y&/ÀE(/À•\/À_/À-Óf/À„0 ltt-kconsumerd¨|/À´~/Àæ‚/À«„/ÀÝ÷/ÀÝב/Àöy•/À°—/Àör™/À1›/Àö€@ŽK=¿]œ/À=ž/ÀHŽK=¿ú§/Àì©/À[Ô/ÀæÖ/À-Þ/Àƒ0 ltt-kconsumerd´ó/À¯õ/Àû/Àltt-kconsumerd2hG•ÿœM 20Àltt-kconsumerd2kworker/0:1§;9Àahci ÙK9À5M9Àuhci_hcd:usb3 ÇQ9À/S9Àeth1 YX9À,ÀLÀahci 3ÎLÀ§ÏLÀuhci_hcd:usb3 9ÔLÀÕLÀeth1 EÚLÀ#u}`À!‘…`À"Lˆ`À#µS“À#]“À!L_“À"á`“À!Ôa“À"Æf“À#h:ÆÀ!M@ÆÀ"BÆÀ#³ ùÀ!æùÀ"§ùÀ#Qé+Á#2ó+Á!Zõ+Á""÷+Á!*ø+Á"–û+Á#¥Æ^Á!ÞÓ^Á"—Õ^Á#…£‘Á#m­‘Á!ƒ¯‘Á"-±‘Á!/²‘Á"ªµ‘Á#)€ÄÁ!GŒÄÁ"ëÄÁ#Ø\÷Á#g÷Á!)i÷Á"»j÷Á!çk÷Á")o÷Á#@*Â!¦I*Â"VK*Â#i]Â#Ò]Â!ñ!]Â"¡#]Â!Í$]Â"(]Â#^óÂ!tþÂ"Â#PÙÂÂ#ºÞÂÂ!îàÂÂ"ÂâÂÂ!ÊãÂÂ"çÂÂ#­õÂ!J·õÂ"ô¸õÂ#KŠ(Ã#‹˜(Ã!øš(Ã"xœ(Ã!k(Ã"ã (Ã#Çf[Ã!Ór[Ã"}t[Ã#LDŽÃ#MPŽÃ!ZRŽÃ"^TŽÃ!iUŽÃ"¤YŽÃ#d ÁÃ!t+ÁÃ"u-ÁÃ#IþóÃ#ÒôÃ!Ü ôÃ"† ôÃ!‘ ôÃ"ßôÃÁüÁõ©‹à‡îØF²ÿbÊ™HŽÌeùÃÈ7oÎßÏÈ7ЀÌeùÃahci `wùÃÈxùÃuhci_hcd:usb3 0}ùÃ\~ùÃeth1 ƒùÃ# Û&Ä!]é&Äšî&Ältt-kconsumerd2½ò&Ältt-kconsumerd2x"[÷&ÄZû&Äkworker/0:1ltt-kconsumerd2^'Ä9'Äöi"'Ä4$'Äö€@ŽK=¿™%'Äy''ÄHŽK=¿†2'Äu4'Äsl'Ä+o'Ä -õw'ă0 ltt-kconsumerdüŽ'Äô'Ä“”'ÄU–'ÄÝ÷¢'ÄÝ¥'ÄöM§'Ä_ª'İÄ@ ÿÿÿÿÿÿÿÿO·'Ältt-kconsumerd2UÅêÄM ¸À'Ältt-kconsumerd2kworker/0:1#1ÀYÄ#ÿÄYÄ!óÇYÄ"6ÊYÄ!>ËYÄ"fÐYÄ#VœŒÄ!·¡ŒÄ"¯£ŒÄ#Ïx¿Ä#/|¿Ä!~¿Ä"Å¿Ä!ô€¿Ä"±„¿Ä#ìUòÄ!êZòÄ"¸\òÄ#l2%Å#56%Å!$8%Å"³9%Å!©:%Å"H>%Ř„*Åahci ‚”*Åö•*Åuhci_hcd:usb3 š*ÅØ›*Åeth1 ‚ *Å#]XÅ!ÍXÅ"æXÅ#åŠÅ!¢îŠÅ"—ðŠÅ#›À½Å#üɽÅ!K̽Å"νÅ!ϽÅ"¨Ò½Å#žðÅ!ʨðÅ"kªðÅ#êz#Æ#†#Æ!Xˆ#Æ"؉#Æ!ËŠ#Æ"aŽ#Æ#Ì_VÆ!kfVÆ"hVÆ#4‰Æ!6=‰Æ"m?‰Æ#ͼÆ#3¼Æ!. ¼Æ""¼Æ!#¼Æ"-'¼Æ#îîÆ!sûîÆ" ýîÆ#óÊ!Ç#gÓ!Ç!bÕ!Ç"âÖ!Ç!Ø×!Ç"\Û!Ç#¬§TÇ![³TÇ"µTÇ#脇Ç#чÇ!’‡Ç"Ê“‡Ç!Õ”‡Ç"#˜‡Ç#ƒaºÇ!±mºÇ"RoºÇ#:>íÇ!îGíÇ"›IíÇ#8 È#t$ È!) È"§* È!š+ È"E/ È#ûÿRÈ!ØSÈ"vSÈ#ûÚ…È#'ß…È!îá…È"qã…È!gä…È"èç…È#•±¸È!M»¸È"È#e•ëÈ#ÊœëÈ!ÜŸëÈ"ž¡ëÈ!¦¢ëÈ"'¦ëÈ#åjÉ!ÎxÉ"´zÉ#QIQÉ#XRQÉ!tTQÉ"VQÉ!_WQÉ"àZQÉ#$„É!‰/„É"r1„É#·É#å ·É! ·É"ç·É!ï·É"a·ÉRB¿Éahci Q¿É‡R¿Éuhci_hcd:usb3 õV¿É0X¿Éeth1 ï\¿É#7ééÉ! îéÉ"NðéÉ#¤ÃÊ#åÇÊ!ÎÉÊ"«ËÊ!žÌÊ"—ÐÊ#, OÊ!€¦OÊ"3¨OÊ#mu‚Ê!F‚Ê"I‚Ê#ÚRµÊ#œ^µÊ!y`µÊ"&bµÊ!cµÊ"¦fµÊ#$0èÊ!R;èÊ"ä<èÊ#ä Ë#Ë!mË"öË!ìË"ŽË#PðMË!àóMË"ÌõMË#"Å€Ë#íÍ€Ë!ëÏ€Ë"­Ñ€Ë!¸Ò€Ë"Ö€Ë#À¡³Ë!¾¬³Ë"b®³Ë#‡ˆæË#:ŒæË!&ŽæË"âæË!êæË"ΔæË#F[Ì!`iÌ"FkÌ#ì9LÌ#4DLÌ!"FLÌ"ŸGLÌ!HLÌ"LLLÌ#™Ì!·"Ì"U$Ì#ò±Ì#•þ±Ì!–²Ì"²Ì! ²Ì"r²Ì#¨ÎäÌ!ÙäÌ"ÁÚäÌ#Ö«Í#ɵÍ!ñ·Í"ª¹Í!²ºÍ"÷½Í#7ˆJÍ!$–JÍ"¾—JÍ#)e}Í#Îo}Í!öq}Í"¾s}Í!±t}Í"x}Í#HJ°Í!FO°Í"kQ°Í#)ãÍ#)ãÍ!/+ãÍ"-ãÍ!.ãÍ"n1ãÍ#·ûÎ! Î"¾Î#OØHÎ#káHÎ!TãHÎ"åHÎ!!æHÎ"réHÎ#ïµ{Î!ÜÂ{Î"žÄ{Î#’®Î#ôš®Î!®Î"½ž®Î!õŸ®Î"U£®Î#`oáÎ!ÎzáÎ"{|áÎ#jMÏ#~XÏ!ÙZÏ"•\Ï!Ž]Ï"aÏ¢rÏahci ·Ï ƒÏuhci_hcd:usb3 „‡ÏňÏeth1 {Ï#­0GÏ!]8GÏ"Ä:GÏ#IzÏ#vzÏ!tzÏ" zÏ!üzÏ"dzÏ#Dâ¬Ï!(í¬Ï"Õî¬Ï#¿ßÏ#ÉßÏ!'ËßÏÁüÁõ©‹à‡îØF²ÿbÊ™HŽ@ÍßÏÈ7à ØÈ7è€"@ÍßÏ!ÐßÏ"–ÔßÏ#¥œÐ!=¨ÐH¯Ðltt-kconsumerd2GµÐltt-kconsumerd2x"cºÐ¶¾Ðkworker/0:1ltt-kconsumerd2‘éЪîÐöòÐüóÐö€@ŽK=¿gõÐS÷ÐHŽK=¿1ÐJÐÊCÐdFÐ0-wNÐ ƒ0 ltt-kconsumerd„hДjÐ ¥nÐppÐÝ P{ÐÝ]}Ðö|Ð|‚аÄ@ ÿÿÿÿÿÿÿÿñŽÐltt-kconsumerd2·Û¡ žM &™Ðltt-kconsumerd2kworker/0:1#EÐ#Ô…EÐ!þˆEÐ"8‹EÐ!:ŒEÐ"Ô#0Ä>Ô!‚Æ>Ô"È>Ô!É>Ô"ôÌ>Ô#³–qÔ!£qÔ" ¤qÔ#ñr¤Ô#iz¤Ô!Ð|¤Ô"ò~¤Ô!å¤Ô"Zƒ¤Ô#TY×Ô!ù_×Ô"»a×Ô#!- Õ#²8 Õ!Ô: Õ"ó< Õ!þ= Õ"CA Õ#‹ =Õ!/=Õ"Ö=Õ#\æoÕ#`ïoÕ!ˆñoÕ";óoÕ!@ôoÕ"Ä÷oÕ#«Ã¢Õ!å΢Õ"‰Ð¢Õ#´ ÕÕ#K­ÕÕ!m¯ÕÕ"±ÕÕ!O²ÕÕ"µÕÕ#v}Ö!—‡Ö",‰Ö#ÄY;Ö#c;Ö!\e;Ö"og;Ö!}h;Ö"Ñk;Ö#þ6nÖ!­BnÖ"oDnÖ#È¡Ö#ö¡Ö!H¡Ö"× ¡Ö!Ð!¡Ö"Z%¡Ö#-ðÓÖ!@üÓÖ"ùýÓÖ#Í×#PØ×!ZÚ×"àÛ×!ÖÜ×"„à×#ï©9×!y´9×"#¶9×# l×#‘l×!“l×"ì”l×!÷•l×"E™l×#†cŸ×!ÌoŸ×"jqŸ×#Õ@Ò×#ÑMÒ×!PÒ×" QÒ×!“RÒ×"\VÒ×#<Ø!’(Ø"N*Øn ØahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽQ~ ØÈ7ðÈàÈ78€ Q~ Øk‚ Øuhci_hcd:usb3 -‡ ØPˆ Øeth1  Ø#‚ú7Ø#ù8Ø!8ØÀ 8Øltt-kconsumerd2«8Øltt-kconsumerd2x"8Ø!8Ø"=8Ø,!8Økworker/0:1ltt-kconsumerd2ÇO8ØŽU8Ø!ö“b8ØŽd8Ø!ö€@ŽK=¿\f8Ørh8Ø!HŽK=¿­u8ØÃw8Ø"À8ØçÂ8Ø"À-ŽÌ8Øh…0 ltt-kconsumerdPæ8Øiè8Ø"°í8Øÿî8ØÝ"°îü8ØÝÿ8Ø!ö.9Øe9Øö´9Øy9Øö€@ŽK=¿Ò 9ص 9ØHŽK=¿9Ø9ØdD9ØÚF9Ø@-‡N9Ø(ƒ0 ltt-kconsumerd‹e9ؘg9Ø0©k9Øwm9ØÝ0ûv9ØÝØx9Øöîz9Ø–~9ذÄ@ ÿÿÿÿÿÿÿÿÜŒ9Øltt-kconsumerd2Ö|w M ¹—9Øltt-kconsumerd2kworker/0:1#™âjØ!SéjØ"¨ëjØ#5´Ø# ÃØ!CÅØ"ÌÆØ!ÅÇØ"<ÌØ#‘ÐØ!ÐØ"ÀžÐØ#cmÙ#üwÙ!]zÙ"é{Ù!Ù|Ù"‡€Ù#LJ6Ù!RS6Ù"ÛT6Ù#ˆ'iÙ#95iÙ!"7iÙ"Ÿ8iÙ!†9iÙ"=iÙ#wœÙ!œÙ"ÜÙ#÷àÎÙ#ÂèÎÙ!GëÎÙ"ÊìÎÙ!·íÎÙ"JñÎÙ#ú½Ú!µÊÚ">ÌÚ#ãš4Ú#¬¨4Ú!«4Ú"–¬4Ú!³­4Ú"X±4Ú#7wgÚ!sgÚ"ÿ‚gÚ#ÅZšÚ#ê_šÚ!ÙašÚ"bcšÚ!LdšÚ"hšÚ#á0ÍÚ!Ó9ÍÚ"};ÍÚ#— Û#"Û!Û"‚Û!oÛ"ê!Û#ãê2Û!ô2Û"ö2Û#WÍeÛ#IÒeÛ!SÔeÛ"ÖeÛ!íÖeÛ"IÛeÛ#±¤˜Û!ƒ¯˜Û"!±˜Û#gËÛ#9ŒËÛ!úŽËÛ"wËÛ!d‘ËÛ" •ËÛ#K^þÛ!iþÛ"ÍjþÛ#.;1Ü#E1Ü!@G1Ü"ºH1Ü!ªI1Ü"(M1Ü#ødÜ!u#dÜ" %dÜ#hü–Ü#y—Ü!¯—Ü"V—Ü![—Ü"© —Ü#¾ÑÉÜ!ÍÝÉÜ"nßÉÜ#®üÜ#ø·üÜ!źüÜ"ƼüÜ!³½üÜ"+ÁüÜ#5‹/Ý!–/Ý"Õ—/Ý#˜gbÝ#ÓubÝ!­wbÝ"-ybÝ!zbÝ"È}bÝ#E•Ý!„P•Ý"R•ÝUˆšÝahci ÿ˜šÝ‹ššÝuhci_hcd:usb3 ŸšÝd šÝeth1 ¥šÝ#Þ!ÈÝ#À.ÈÝ!T1ÈÝ"—3ÈÝ!‡4ÈÝ"_8ÈÝ#šþúÝ!UûÝ"b ûÝ#§Û-Þ!“æ-Þ"7è-Þ#D¸`Þ#òÂ`Þ!Å`Þ"šÆ`Þ!‡Ç`Þ"ùÊ`Þ#'•“Þ!Ÿ“Þ"¶ “Þ#sÆÞ#¡ÆÞ!´ÆÞ":ƒÆÞ!*„ÆÞ"ÇÆÞ#ÇNùÞ![ZùÞ"ÿ[ùÞ#”+,ß#Ü8,ß!é:,ß"«<,ß!­=,ß"A,ß#‰_ß!B_ß"»_ß#Pæ‘ß#í‘ß!Äð‘ß"Ýò‘ß!ßó‘ß"'÷‘ß#ÂÄß!ÔÍÄß"~ÏÄß#}ž÷ß#A¨÷ß!6ª÷ß" ¬÷ß! ­÷ß"Z°÷ß#Á{*à!Ý„*à"†*à#"Y]à#ð`]à!0c]à"òd]à!ôe]à"Ki]à‹àbash1xûàkworker/0:1bash1Ó+à#½4àv=àbash1á$Dþ M !÷@à"(CàÁüÁõ©‹à‡îØF²ÿbÊ™HŽ|ÇàÈ76^"éÈ7Ø€|Çàà]n`^nÌàÜ_‘à°n 2-ÿgMûoÿÿÿÿ¬k‘àbash1ˆ.Ì, M  n‘àkworker/7:0xúq‘àbash1xOw‘àz‘à`^ngMûoÿÿÿÿ±{‘à‘àà]n`^n@…€‘à©‘à`^ngMûoö‘àØ“‘à_5-ÿgMûo—›‘àbash1/è[ M ½Ÿ‘àbash1kworker/7:0¯‘àkworker/7:0¬#éL #¾‘àkworker/7:0kworker/0:1í}šàuhci_hcd:usb4 Í‚šà„šàeth0#Õ‰šà ÈŠšà!tšà"_´šàPì¦àahci "ü¦à¥ý¦àuhci_hcd:usb3 %§à`§àeth1 4§à#éÃà#ãÃà!:!Ãà"$Ãà!ú$Ãà"a*Ãà#ïõà#ªúõà!_ýõà"Nÿõà!Döà"Aöà#UÓ(á#'×(á!!Ú(á"ÑÛ(á!ÜÜ(á"ß(á#ú±[á#œµ[á!¬·[á"†¹[á!‘º[á"¾[á#P…Žá#Š‘Žá!…“Žá"€•Žá!s–Žá"˜Žá#ÿhÁá# mÁá!oÁá"»pÁá!ÆqÁá"ŸtÁá#Ù>ôá#WIôá!4Kôá"ÀLôá!³Môá"áOôá#('â#é%'â!P('â"**'â!,+'â".'â#ºøYâ#Zâ!âZâ"tZâ![Zâ"ªZâ#sÞŒâ#âŒâ! äŒâ"·åŒâ!¡æŒâ"téŒâ#^²¿â#¾¿â!À¿â"˜Á¿â!…¿â"ÅÄ¿â#ròâ!j˜òâ"lœòâ#[l%ã#ww%ã!–y%ã""{%ã!|%ã"-%ã#=IXã!ÈUXã"xWXã#í%‹ã#p1‹ã!_3‹ã"ë4‹ã!Þ5‹ã"•9‹ã#g¾ã!¾ã"®¾ã#ßðã!êðã"Âëðã#q¼#ä#ºÅ#ä!µÇ#ä"DÉ#ä!=Ê#ä"¯Í#ä#ë˜Vä!I¥Vä"á¦Vä#&v‰ä!„‰ä"­ƒ‰ä# S¼ä#ƒ]¼ä!“_¼ä"=a¼ä!Eb¼ä"xe¼ä#û5ïä!·:ïä"^<ïä#ó "å#Ê"å!d"å"ä"å!×"å"O"å#çéTå!DöTå"î÷Tå#‡Ç‡å#sÒ‡å!YÔ‡å"âÕ‡å!ØÖ‡å"ÈÚ‡å#+£ºå!­ºå"É®ºå#‚íå#üíå!!íå"’íå! “íå"f–íå#f æ!Nj æ"õk æ#_@Sæ#7DSæ!DFSæ"ÍGSæ!½HSæ"8LSæ#†æ!½#†æ"X%†æ#só¸æ#ê¹æ!ܹæ"\¹æ!O¹æ"ǹæ#üÏëæ!ÌÛëæ"QÞëæ"ñæahci Ô ñæ0"ñæuhci_hcd:usb3 ˜&ñæÙ'ñæeth1 z,ñæ#­ç#×´ç!ÿ¶ç"¹ç!ó¹ç"L¾ç#P‰Qç!Þ•Qç"ñ—Qç#f„ç#p„ç!r„ç"­s„ç! t„ç"*x„ç#éB·ç!íM·ç"‘O·ç#7*êç#©-êç!›/êç"?1êç!22êç"Â5êç#´üè![è"êè#pÙOè#ÃæOè!éOè"ªêOè!ëOè"xïOè#£¶‚è!Âè"ÆÄ‚è#ë’µè#ñœµè!4Ÿµè"ð µè!㡵è" ¦µè#™wèè!Ó|èè"¡~èè#¨Ré#ÂVé!çXé"ÍZé!Ø[é")_éÑV ébash1x\ ékworker/0:1bash1Ën éëð éà]n`^ngó éO"é°n) 2-ÿgMûoÿÿÿÿ4"ébash1­º•M ¤"ékworker/7:0xÐ"ébash1x "é)¶"é`^ngMûoÿÿÿÿº"éÉ""éà]n`^n@Ü$"é©3"é`^ngMûoö4"é7"é_5-ÿgMûo£<"ébash1Ÿ-4DM Ä?"ébash1kworker/7:0ºR"ékworker/7:0Gj-éL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽé\"éÈ7ÌýëÈ70~€é\"ékworker/7:0kworker/0:1#ð0Né!”8Né½?Néltt-kconsumerd2¥ENéltt-kconsumerd2x"3KNé¼ONékworker/0:1ltt-kconsumerd2Ø{Né~NéöòŽNéíNéö€@ŽK=¿Ö’Né:•NéHŽK=¿ô¡Né ¤NéTêNéíNéà-‡öNéx†0 ltt-kconsumerd¥OéÊOéÐeOécOéÝÐI'OéÝJ)Oéö,Oé3.OéöI0Oé2Oéö€@ŽK=¿a3OéD5OéHŽK=¿û>OéÛ@Oé|lOéoOé`-BvOé8ƒ0 ltt-kconsumerdOéOéPU“Oé5•OéÝPà¡OéÝÒ£OéöÜ¥Oé0©Oé°Ä@ ÿÿÿÿÿÿÿÿ$²OéÇ´Oé!ö<ÍOéÏOé!ö€@ŽK=¿–ÐOépÒOé!HŽK=¿ ÚOéýÛOé":Pé›Pé"-‡Pé…0 ltt-kconsumerdå2Péû4Pé"9PéÚ:PéÝ"WEPéÝyGPé!ö²JPé`MPé°Ä@ ÿÿÿÿÿÿÿÿý[Péltt-kconsumerd2áX4¢M ¥hPéltt-kconsumerd2kworker/0:1>­^éahci *Ç^é’È^éuhci_hcd:usb3 Í^é×Î^éeth1 ŠÓ^é#)é#÷é!é"¸é!Ãé"¯!é#ƒã³é!¶ì³é"áî³é#ÈÀæé!úËæé"’Íæé#šê#ä¨ê!ͪê"ˬê!Ç­ê"á±ê#·‚Lê!‰Lê"¾ŠLê#†^ê#vbê!edê"!fê!,gê"Œjê#k3²ê!l>²ê"@²ê#˜åê# åê!æåê"fåê!\åê"Îåê#‡íë!ùë"jûëñŠëahci $šë˜›ëuhci_hcd:usb3  ëD¡ëeth1 ô¥ë#0ÊJë#šÓJë!ËÕJë"c×Jë!VØJë".ÜJë#,§}ë!è²}ë"=µ}ë#M…°ë#¹Ž°ë!‘°ë"“°ë!”°ë"Œ—°ë#ƒ`ãë!æiãë"{kãëþ?üëbash1x^Füëkworker/0:1bash1•Züë®õüëà]n`^nå÷üë7›ýë°n 2-ÿgMûoÿÿÿÿ¿¦ýëbash1íh!­M  ©ýëkworker/7:0x@­ýëbash1xŒ²ýë\µýë`^ngMûoÿÿÿÿ ·ýëñ¹ýëà]n`^n@n»ýëÁüÁõ©‹à‡îØF²ÿbÊ™HŽËÊýëÈ76âïÈ7È€ËÊýë`^ngMûoúÎýëâÑýë_5-ÿgMûoy×ýëbash1Þ0ÿÝM vÚýëbash1kworker/7:0¶îýëkworker/7:0×0ëL Ðøýëkworker/7:0kworker/0:1#§Dì#{Iì!~Lì5Sìltt-kconsumerd2Yìltt-kconsumerd2x"±^ì!Ô_ì"ádìmiìkworker/0:1ltt-kconsumerd2!—ìÁœìöT©ìO«ìö€@ŽK=¿)­ìB¯ìHŽK=¿¼ì!¾ìì¯ì-FìȈ0 ltt-kconsumerd•(ìÀ*ì€s/ìb1ìÝ€f?ìÝ[AìöDìAFìöcHì(Jìö€@ŽK=¿~Kì^MìHŽK=¿oWìjYìœì6’ìp-×™ì@‰0 ltt-kconsumerdå¯ìò±ì`ñµìηìÝ`uÂìÝUÄìözÆìÑÉì°Ä@ ÿÿÿÿÿÿÿÿ×ìltt-kconsumerd2(€³£M Nãìltt-kconsumerd2kworker/0:1¢¿ìahci ˆÐìüÑìuhci_hcd:usb3 ŽÖìê×ìeth1 ýÜì#+Iì!Ý(Iì"A+Iì#g÷{ì!Ø|ì"Ç|ì#eÔ®ì#„ß®ì!ñá®ì"¼ã®ì!¾ä®ì"üè®ì#„°áì!ò»áì"Ÿ½áì#Sí#ší!¥œí"+ží!!Ÿí"£í#êjGí!´vGí"‚xGí#¦Gzí!HQzí"õRzí#É#­í##-­í!H/­í"1­í!÷1­í"5­í#w àí!Sàí"àí#*Þî#Ôåî!‹éî"}ëî!sìî"Ùïî#¸ÁEî!ÉEî"ËEî#\˜xî#‚ xî!r¤xî"ò¥xî!å¦xî"{ªxî#t«î!“~«î"F€«î#ÛPÞî#¢\Þî!!_Þî"¹`Þî!¬aÞî"?eÞî# 6ï!_>ï"@ï#N Dï#KDï!^Dï"Dï!"Dï"ODï#æçvï!žóvï"Eõvï#hÄ©ï#¬Ï©ï!§Ñ©ï"'Ó©ï!Ô©ï"™Ù©ï¼¸×ïbash1x˜¾×ïkworker/0:1bash1âË×ï†eØïà]n`^n®gØïÜŽÙï°n) 2-ÿgMûoÿÿÿÿé™Ùïbash1vâuÀM 5œÙïkworker/7:0xûŸÙïbash1x>¥Ùï)ö§Ùï`^ngMûoÿÿÿÿ¦©Ùïý¬Ùïà]n`^n@€®Ùïh½Ùï`^ngMûo¾¾ÙïŽÁÙï_5-ÿgMûoÈÆÙïbash1ý,ríM ïÉÙïbash1kworker/7:0¼ØÙïkworker/7:0$¤ªìL 5áÙïkworker/7:0kworker/0:1#7«Üï!Ô³Üï">¶Üï|"âïahci Ø2âïÁüÁõ©‹à‡îØF²ÿbÊ™H޲4âïÈ7[!ÊúÈ7ø€²4âïuhci_hcd:usb3 A<âï|=âïeth1 zBâï#é~ð#Ňð!/ŠðyŽðltt-kconsumerd2¨’ðltt-kconsumerd2x"Ô–ð!ú—ð"ð±¡ðkworker/0:1ltt-kconsumerd2ü¹ð¾ðöËÀð±Âðö€@ŽK=¿4ÄðSÆðHŽK=¿ŠÎð”ÐðÔÿð’ð€-V ðH‰0 ltt-kconsumerd/&ð?(ðp4-ð2/ðÝps<ðÝw>ðö´@ðØCð°Ä@ ÿÿÿÿÿÿÿÿªPðltt-kconsumerd2 ¾ q¤M 2\ðltt-kconsumerd2kworker/0:1#ØdBð! lBð"qnBð#8uð#¼Cuð!«Euð"—Guð!‡Huð"Muð#Ô¨ð!A ¨ð"Q"¨ð#ÞñÚð#ŸúÚð!¯üÚð"5þÚð!(ÿÚð"ÄÛð#Î ñ!ÁÝ ñ"\ß ñ#h«@ñ! µ@ñ"6·@ñ[$Fñahci 5Fñ¦6Fñuhci_hcd:usb3 2;Fñmò#?ò!v?ò"ü?ò!æ ?ò"L ?ò#7Øqò!cãqò"ïäqò#%»¤ò#¿¤ò! Á¤ò"ç¤ò!éäò"IǤò#}‘×ò!d›×ò"×ò#ðn ó#çw ó!ó} ó"å ó!Ï€ ó"Å„ ó#$U=ó!eY=ó"[=ó#$/pó#4pó!ò6pó"u8pó!b9pó"ï€3-ÿgMûoÿÿÿÿW()ýbash1'™M *)ýkworker/7:0xf.)ýbash1x²3)ý>…6)ý`^ngMûoÿÿÿÿ;8)ý>)ýà]n`^n ”?)ý˜P)ý`^ngMûoîQ)ýFT)ýtnTU)ýWX)ý°n gMûoæ\)ýbash1xra)ýf)ýà]n`^n‡g)ýÓi)ýT5-ÿ`Sn®m)ýŽo)ýTÀ5-ÿÀ5-ÿ`Snx)ýÕy)ýTÀ5-ÿÀ5-ÿ`SnQ|)ý@~)ý`^n`Sn™)ýÍ)ý à4-ÿ@4-ÿ5-ÿ¹ƒ)ý ¢…)ý à4-ÿ@4-ÿ5-ÿ"‡)ý öˆ)ý à4-ÿ@4-ÿ5-ÿRŠ)ý &Œ)ý à4-ÿ@4-ÿ5-ÿ‚)ý V)ý à4-ÿ@4-ÿ5-ÿ¬)ý }’)ý à4-ÿ@4-ÿ5-ÿÊ“)ý ˜•)ý à4-ÿ@4-ÿ5-ÿß–)ý ™)ý à4-ÿ@4-ÿ5-ÿfš)ý Óœ)ý @4-ÿ 3-ÿð4-ÿž)ý õ<*ýPD-ÿÐC-ÿò?*ý7C*ýŸmÐC-ÿýU*ýGZ*ý8 ÐiMûo1œn*ýbash1IFâMM 0q*ýbash1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÙ}+ýÈ7>cBýÈ7È1€ Ù}+ýbash1bash2M‹+ýbash2…’+ýbash2x2—+ý82ˆË+ým22ÿÿÿÿÐiMûo1]Ò+ýmmò+ýÐC-ÿ1ƒô+ýìK,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿíM,ýP,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿåR,ý¿T,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿV,ý6_,ýÿTz #î>z!ì>z">z!Ë >z"D>z!7>z ">z #9Ópz!Žâpz"×äpz#¤»£z#D¾£z #£z!)Ä£z"ÏÆ£z!ÑÇ£z"ÆÌ£z!¿Í£z "‡Ò£z #•ŒÖz#ΕÖz !·šÖz"šœÖz!„Öz "åŸÖz #æg {#q {!>v {"x {!êx {"È| {cê{ahci ½ù{yû{uhci_hcd:usb3 e{¬{eth1 ‚{#+F<{# N<{ !ºT<{"|V<{!cW<{ ";[<{ #¹!o{#+o{ #K/o{!â1o{"w3o{!U4o{"\9o{!‚:o{ "‚=o{ #Œþ¡{!™ ¢{"F¢{#ÃåÔ{#çÔ{ # êÔ{!ŒìÔ{"îÔ{! ïÔ{"ôÔ{!ùôÔ{ "ûøÔ{ #¸|#Ã| !«È|"Ê|!{Ë| "ÖÍ| $]|ahci l|nm|uhci_hcd:usb3 ßq|_s|eth1 x|&z6|ahci ‰6|‚Š6|uhci_hcd:usb3 äŽ6|6|eth1 À”6|#ñ•:|#µ¡:|!R¤:|"¦:|!ò¦:|"í«:|õÚO|ahci ÎéO|<ëO|uhci_hcd:usb3 ŒïO|ýðO|eth1 ÈõO|if|ahci £f|f|uhci_hcd:usb3 f|Èf|eth1 “ f|#êqm|#tm| !*€m|"=‚m|!$ƒm| "……m| #yN |#ÏV | #¾[ |!Ñ] |"i_ |!M` |"Õe |!g | "aj | #À4Ó|#8Ó| !g<Ó|">Ó|!@?Ó| "WCÓ| # }# } #·}!c}"ï}!}"1}!$} "ˆ } #nî8}#ñ8} !ö8}"³÷8}!©ø8} "˜9} #ìÁk}#ˆÉk} #ÂÎk}!¢Ðk}"=Òk}!Ók}"§×k}!‚Øk} "Ûk} #µ ž}!ç§ž}""¬ž}#~Ñ}#ÛˆÑ}!ÇŠÑ}"ÂŒÑ}!£Ñ}"’Ñ} ÿ×}ahci ð Ø}CØ}uhci_hcd:usb3 ŸØ}ÅØ}eth1 Ø}#×b~!¯i~"(l~#û47~#4A7~!›C7~"3E7~!qF7~"_L7~#@j~!€!j~"!#j~#Ãîœ~#tùœ~!Ÿûœ~"(ýœ~!þœ~"~#’ÌÏ~!5ÙÏ~"ÛÏ~#d«#L·!¤¹"-»!¼"gÀ#²Œ5!Š“5"•5#$bh#/mh!~oh"@qh!Brh"õvh# ?›!>K›"ßL›#[Î#b)Î!Ø+Î"-Î!l.Î"à2Î#Xû€!Ø €"p €#ÉÝ3€#4â3€!¹ä3€Tì3€kworker/6:1x"Xñ3€!Šò3€"÷3€ý3€kworker/0:1kworker/6:1É 4€kworker/6:1Ž àaF± ]4€kworker/6:1kworker/0:1#P¾f€!ßÂf€"°Äf€#ú—™€#Aœ™€!ž™€"ËŸ™€!µ ™€"þ¥™€#DuÌ€!õ{Ì€"–}Ì€#¸Hÿ€#Tÿ€!_Vÿ€"ßWÿ€! Yÿ€"«^ÿ€#‰.2!û42"¨62#°e#öe!e"Fe!3e"»e#±á—!$î—""ð—#æÃÊ#–ÈÊ!ËÊ"éÌÊ!ëÍÊ"³ÒÊ#Hšý!¥ý"«¦ý#ûv0‚!ãƒ0‚"À…0‚#»\c‚#x`c‚!Rbc‚"Ûcc‚!Ådc‚"Nic‚#t/–‚!B–‚"¯C–‚#É‚#ÅÉ‚!ºÉ‚"|!É‚!f"É‚"×&É‚#õòû‚!éøû‚"–úû‚#æÅ.ƒ#¦Ð.ƒ!yÓ.ƒ" Õ.ƒ!"Ö.ƒ"3Ú.ƒ#í¢aƒ!‹­aƒ".°aƒ#?€”ƒ!”ƒ"”Ž”ƒ#5\ǃ#Íjǃ!³lǃ"ÔP"?ÖP!)×P"mÛPl0Vahci Ø?VUAVuhci_hcd:usb3 ØEVGVeth1 ±KV# £ƒ!®ƒ"°ƒ#~¶#LŒ¶!†Ž¶"¢¶!‘¶"N–¶#·bé!hé"éié#¹7Ž#ÏCŽ!»EŽ"ƒGŽ!…HŽ"rLŽ#ÄOŽ!%OŽ"»&OŽ#JòŽ#ˆýŽ!X‚Ž"‚Ž!‚Ž"H‚Ž#Ï´Ž!ÛÛ´Ž"ÓÝ´Ž#¡´çŽ#l¹çŽ!š»çŽ"&½çŽ!¾çŽ"cÂçŽ#¾‡!Õ•"Ç—#ºdM#rpM!WsM"uM!îuM"zM#A€!±N€"[P€# ³!Á(³"”+³#¥üå#·æ! æ"¹ æ!» æ"¢æ#Ø!öã"Žå#ì¶K!8ÂK"NÄK#“~#Çœ~!¤¡~"c£~!e¤~" ª~#)v±!Ý|±"x~±#^Kä#±Vä!6Yä"°Zä![ä"5`ä#M(‘!7‘"+9‘#ùJ‘#F J‘!—J‘" J‘! J‘" J‘#óè|‘! ï|‘"ñ|‘#°¾¯‘#Gʯ‘!„̯‘"vί‘!`ϯ‘"©Ô¯‘#±›â‘!}¦â‘"ð¨â‘#sy’#Ê‚’!%…’"ü†’!釒"Œ’#;UH’!bH’"ŽcH’#Ö1{’#={’!H?{’"ø@{’!ßA{’"zF{’#Á®’![®’"ÿ®’#øà’#£ûà’!€ýà’" ÿà’!öÿà’"Žá’#~È“!ÒÔ“"Ú“# ®F“#²F“!e´F“"ôµF“!á¶F“"F»F“#-‚y“!ÃŽy“"¦y“#i¬“# n¬“!bp¬“"r¬“!s¬“"dw¬“#Bß“!5Hß“"ßIß“Šä“ahci H˜ä“­™ä“uhci_hcd:usb3 Nžä“‰Ÿä“eth1 Q¤ä“#í”#=$”!³&”"{(”!h)”"…-”#ÑýD”!ÂE”"rE”#XÒw”#›Ýw”!Üáw”"ªãw”!÷äw”"öèw”#b¯ª”!ô¼ª”"û¾ª”#F•Ý”#5šÝ”!–œÝ”"Ǟݔ!ÉŸÝ”"ý¤Ý”#Àk•!y•"M{•#DPC•#yTC•!bVC•"îWC•!ÛXC•"š]C•#-v•!è2v•"•4v•#kÿ¨•#¢ ©•!â ©•"¡©•!£©•"l©•#ÃäÛ•!tëÛ•"ýìÛ•#ÅÀ–#pÄ–!Æ–"rÈ–!zÉ–ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ£Í–È7Д¡È7€€"£Í–#ŸžA–!'¤A–;«A–ltt-kconsumerd2’±A–ltt-kconsumerd2x"H¶A–ȺA–kworker/0:1ltt-kconsumerd2)íA–hóA–öøöA–bùA–ö€@ŽK=¿ûA–IýA–HŽK=¿q B–{ B–t\B–¡_B–-jB–ˆ‚0 ltt-kconsumerd0ŽB– B–<–B–F˜B–Ý,©B–ÝQ«B–öñ­B–²B–°Ä@ ÿÿÿÿÿÿÿÿ1¿B–ltt-kconsumerd2Y«kþ± ÍB–ltt-kconsumerd2kworker/0:1ºõF–ahci G–SG–uhci_hcd:usb3  G–eG–eth1 3G–#Ž{t–#´‚t–!S†t–"Þˆt–!ì‰t–"Át–#ÛP§–!áZ§–"å\§–#5Ú–#;Ú–! =Ú–"#?Ú–!+@Ú–"GEÚ–# —!? —"ø —#/ç?—!Øò?—" õ?—#*Är—#%Ïr—!§Ñr—"0Ór—!qÔr—"EÙr—#·Ÿ¥—!j®¥—"°¥—#¤|Ø—#!‡Ø—!ý‰Ø—"¶‹Ø—!¬ŒØ—"ÏØ—#MY ˜!@g ˜"öh ˜#ž7>˜#ýB>˜!LE>˜"ÛF>˜!ÑG>˜"!L>˜#q˜! q˜"Ýq˜#®ñ£˜!"ü£˜"þ£˜#¡ÍÖ˜#ÇÑÖ˜!“ØÖ˜"VÜÖ˜!IÝÖ˜"áÖ˜# « ™!°µ ™"Ï· ™ºŠ™ahci ˜—™œ™™uhci_hcd:usb3 ž™EŸ™eth1 ¤™#7‘<™#0•<™!Ê—<™"ª™<™!£š<™"ÅŸ<™#mo™!uo™"Ûvo™#0A¢™#AL¢™!ùN¢™"úP¢™!;R¢™"jV¢™#|$Õ™!@*Õ™"ê+Õ™#ùš!¦š"D š#sÖ:š#„ã:š!„æ:š"(è:š!lé:š"î:š#,³mš!µÁmš"YÃmš#Á– š#Λ š!ž š"©Ÿ š!Ÿ  š"C¥ š#“nÓš!RzÓš" |Óš#éQ›#`V›!¾X›"Z›!š[›"`› ›ahci ª, ›ý- ›uhci_hcd:usb3 ƒ2 ›ý3 ›eth1 Å8 ›#q(9›!É69›"Í89›#l›#il›!^l›" l›!(l›"l›#÷èž›! ïž›"Áðž›#½Ñ›#°ÈÑ›!êÊÑ›"ÌÑ›!ÀÍÑ›"šÒÑ›#ö™œ!F¤œ"¦œ#½v7œ#%ˆ7œ!àŠ7œ"cŒ7œ!V7œ"=‘7œ#,\jœ!Wajœ"¦cjœ#Ì8œ#…=œ!t?œ"ô@œ!çAœ"aFœ#G М!©М"¶М#)ë#×õ!Îø"Yú!Lû"6ÿ#´Ï5![Ô5"Ö5#¸£h#}®h!º°h"m²h!`³h"€·h#·›!YŒ›"iŽ›#jÎ#CnÎ!/pÎ"ÜqÎ!ÒrÎ"IwÎ#?:ž!£Fž"eHž#4ž#$4ž!õ%4ž"x'4ž!h(4ž"-4ž#ôfž!wÿfž"gž#ÌЙž#<Ý™ž!…ß™ž"Pᙞ!X♞"­æ™žÜ ¥žahci ꥞=¥žuhci_hcd:usb3 ó ¥ž1"¥žeth1 ê&¥ž#ó®Ìž!ºÌž".½Ìž#œÿž#ñ˜ÿž!òšÿž"½œÿž!Îÿž"9¢ÿž#?g2Ÿ!‚v2Ÿ")x2Ÿ#4DeŸ##SeŸ!9UeŸ"ŽWeŸ!XeŸ"‹]eŸ#Þ ˜Ÿ!¶0˜Ÿ"–2˜Ÿ#¥ýÊŸ#ù ËŸ!E ËŸ"Å ËŸ!ñËŸ"äËŸ#—ÚýŸ!’æýŸ"®èýŸ#Œ·0 !ÎÄ0 "`Æ0 #ƒœc #M¢c !W¤c "¦c ! §c "áªc Ûõh ahci 5i ‹i uhci_hcd:usb3 i F i eth1 Si #¯x– !‰€– "u‚– # NÉ #ªXÉ !ÿZÉ "»\É !Ã]É "òaÉ #¾*ü !Ð9ü "¼;ü #@/¡#-/¡!/¡"º/¡!­/¡"/¡#häa¡!éña¡"äóa¡#*Ë”¡#ðΔ¡ÁüÁõ©‹à‡îØF²ÿbÊ™HŽzÒ”¡È74ýç¬È7À€!zÒ”¡ßÙ”¡ltt-kconsumerd2vß”¡ltt-kconsumerd2x"G䔡!‚唡"ü锡­í”¡kworker/0:1ltt-kconsumerd2g •¡i•¡öð•¡•¡ö€@ŽK=¿•¡•¡HŽK=¿ï#•¡Ì%•¡]•¡¹_•¡ -kh•¡‚0 ltt-kconsumerd:~•¡¤€•¡9…•¡‡•¡ÝW”•¡Ý[–•¡öÔ˜•¡Iœ•¡°Ä@ ÿÿÿÿÿÿÿÿ“©•¡ltt-kconsumerd2mË7ÿ± µ•¡ltt-kconsumerd2kworker/0:1#¬«Ç¡!†³Ç¡"ÿµÇ¡#ß|ú¡#nˆú¡!ØŠú¡"ŽŒú¡!~ú¡"»’ú¡#Ô`-¢!ãf-¢"Àh-¢#q4`¢#w@`¢!oB`¢"FD`¢!3E`¢"LJ`¢#n“¢!«“¢"I“¢Y­–¢uhci_hcd:usb4 f²–¢ì³–¢eth0#›¹–¢ к–¢! ½–¢"åÞ–¢#|ðÅ¢# ýÅ¢!àÿÅ¢"}Æ¢!pÆ¢"ÄÆ¢#%Ëø¢!×ø¢"™Ùø¢Ã!þ¢ahci 0þ¢e1þ¢uhci_hcd:usb3 î5þ¢M7þ¢eth1 `<þ¢#Fª+£#F¶+£!¶¸+£"~º+£!λ+£")Á+£#R‡^£!Ò’^£"¦”^£#ža‘£#?m‘£!.o‘£"ºp‘£!ªq‘£"„v‘£#¦@Ä£!`MÄ£"²OÄ£#9÷£#K'÷£!©)÷£"M+÷£!=,÷£"”2÷£#‰*¤!}*¤"Q *¤#ðÔ\¤#Òá\¤!lä\¤"7æ\¤!$ç\¤"†ë\¤#×±¤!¾¤"5À¤#tŽÂ¤!šÂ¤"pœÂ¤#Ómõ¤#wõ¤!üxõ¤"Ízõ¤!½{õ¤"ìõ¤#1H(¥!W(¥"œX(¥#Ã,[¥#Ì2[¥!»4[¥"6[¥!”7[¥"Ò;[¥#ÏŽ¥!¢Ž¥"»Ž¥#£ÞÀ¥!îÀ¥"ÌïÀ¥#ŽÆó¥#0Êó¥!OÌó¥"ÞÍó¥!ÈÎó¥"ŒÔó¥#’ &¦!6¨&¦" ª&¦#Ä|Y¦#‚Y¦!äƒY¦"j…Y¦!W†Y¦"ΊY¦#2RŒ¦!â`Œ¦"€bŒ¦#}9¿¦#÷=¿¦!ã?¿¦"nB¿¦!pC¿¦"ZG¿¦#£ ò¦!(ò¦"Ãò¦#wè$§#¿ò$§!ùô$§"|ö$§!f÷$§"%ü$§#ÆW§!MÐW§"ÒW§#F£Š§#㮊§!t±Š§"³Š§!5´Š§"²¸Š§§ahci |'§í(§uhci_hcd:usb3 Ç-§/§eth1 Ð3§#\½§!_Œ½§"䎽§#dð§#Þið§!Nlð§"@nð§!Boð§"1tð§#ï8#¨!D#¨"oF#¨#‡V¨!#$V¨"&V¨#õˆ¨#¹‰¨!“‰¨"@‰¨!0‰¨"U ‰¨#‘Ò»¨!໨"­á»¨#£´î¨#ϸî¨!'»î¨"=½î¨!B¾î¨"ÚÂî¨#Öˆ!©!\—!©"ä™!©#ÅeT©#NqT©!FsT©"ÞtT©!ÈuT©"êzT©#'K‡©!ÛQ‡©"ˆS‡©#\&º©#´+º©!*.º©"Â/º©!÷0º©"‘6º©#ýì©!0 í©"7 í©#0âª#yçª!eéª"èêª!Õëª"ïïª#¶Rª!ˆÂRª"’ÄRª#윅ª#ê¡…ª!E¤…ª"‹¦…ª!Ч…ª"4¬…ª#1q¸ª!Ë}¸ª"Û¸ª#5Tëª#hZëª!]ëª"ô^ëª!ö_ëª"Idëª#4)«!'6«"8«#«Q«#ÆQ«!²Q«">Q«!.Q«" Q«#샫!Öòƒ«"›ôƒ«#´¿¶«#¥Ë¶«!îͶ«"¶Ï¶«!Ѷ«"’Õ¶«#é«! «é«"®¬é«#Þz¬#À„¬!‡¬"鈬!뉬"Aެ­À¬uhci_hcd:usb4 xŬ¶Æ¬eth0#S̬ Xͬ!õϬ"¡ó¬07¬ahci !7¬a"7¬uhci_hcd:usb3 '7¬I(7¬eth1 ó,7¬#&YO¬!+fO¬"¶hO¬#¿3‚¬#Æ>‚¬!-A‚¬"ÚB‚¬!ßC‚¬"J‚¬#ĵ¬!§µ¬"]µ¬#¾÷ç¬ÁüÁõ©‹à‡îØF²ÿbÊ™HŽêûç¬È7Hn¸È7Ѐ#êûç¬!u謵è¬ltt-kconsumerd2Ç è¬ltt-kconsumerd2x"wè¬!—è¬"áè¬âè¬kworker/0:1ltt-kconsumerd2‹<è¬Ã@è¬öeDè¬9Fè¬ö€@ŽK=¿¿G謥Iè¬HŽK=¿‹Tè¬_Vè¬ãŒè¬†è¬0-Œ˜è¬˜‚0 ltt-kconsumerd&­è¬?¯è¬ =´è¬¶è¬Ý ½Áè¬ÝÐÃè¬ö=Æè¬©É謰Ä@ ÿÿÿÿÿÿÿÿÖè¬ltt-kconsumerd2RËj² Màè¬ltt-kconsumerd2kworker/0:1#õË­!xÙ­"ÓÛ­#á®M­#‡´M­!‘¶M­" ¸M­!¹M­"e¾M­#÷‹€­!F‘€­"á’€­# `³­#ál³­!Bo³­"q³­!r³­"w³­#dEæ­!¿Jæ­"Læ­#¼®#Ç$®!¼&®"`(®!b)®"X-®®u®ahci jƒ®ê„®uhci_hcd:usb3 ‚‰®‹®eth1 Ö®#¨ýK®!”L®"wL®#ûÓ~®#ôÝ~®!Rà~®"â~®!òâ~®"6ç~®#°±®!8½±®"ë¾±®#ä®#(™ä®!œä®"™ä®!Ëžä®"£ä®#Îi¯!fx¯"z¯#nGJ¯!ãSJ¯"ÛUJ¯#½,}¯#ñ1}¯!×3}¯" 6}¯! 7}¯"§<}¯#Ñ °¯!ª°¯"ü°¯#'Ýâ¯!éâ¯"ìâ¯#ÃÁ°#ư!PȰ"Ùɰ!ÆÊ°"[ϰ#ª–H°!u¥H°"§H°#b~{°#.‚{°!}„{°"?†{°!/‡{°"9Œ{°#¿X®°!m_®°" a®°#@-á°#¶;á°!>á°"Ù?á°!Û@á°"æDá°# ±!±"0±#çF±#òF±!äôF±"göF±!œ÷F±"AûF±gSL±ahci Ù_L±AaL±uhci_hcd:usb3 ñeL±5gL±eth1 ßkL±#WÆy±!êÕy±"Øy±#°¡¬±#C¬¬±!¿®¬±"œ°¬±!Œ±¬±"ö¶¬±#ˆ}ß±!͇߱"n‰ß±#>]²#Šh²!ik²"øl²!åm²"tr²#ã7E²!ÝCE²"¥EE²#Nx²#À!x²!Í#x²"\%x²!I&x²"â,x²#Äûª²!¤«²"E«²#¦Íݲ#òØÝ²!ùÚݲ"ñÜݲ!ÛÝݲ"Lâݲ#yª³!ì¹³"ü»³èϳahci ØÜ³.Þ³uhci_hcd:usb3 ¥â³ä³eth1 ½è³#¬ˆC³#¤”C³!—C³"$™C³!ešC³"¬žC³#-dv³! sv³"suv³#ÅK©³#ÐO©³!ÅQ©³"KS©³!5T©³"ÄX©³#íܳ!¨,ܳ"|.ܳ#·´#V ´!i ´"õ´!â´"S´#z×A´!,ãA´"“åA´#½t´#Át´!ÆÃt´"…Åt´!ŠÆt´"ÑÊt´#Ò›§´!X §´"ù¡§´#ïmÚ´#zÚ´!S|Ú´"Ü}Ú´!Æ~Ú´"³‚Ú´#$U µ!‘Z µ"z\ µ#0@µ#ü4@µ!Ò7@µ"g9@µ!®:@µ"—?@µ#d sµ!Æsµ"gsµ#?᥵#¹î¥µ!ñ¥µ"Êò¥µ!±ó¥µ" ø¥µ#3¾Øµ!RÍØµ" ÏØµ#ˆ› ¶#æ§ ¶!Aª ¶"ë« ¶!í¬ ¶"…± ¶#v>¶!æ„>¶"«†>¶#Tq¶#„`q¶!*cq¶"Ñdq¶!Öeq¶"skq¶# 2¤¶!\=¤¶"?¤¶è“­¶ahci W ­¶¤¡­¶uhci_hcd:usb3 0¦­¶˧­¶eth1 “¬­¶#×¶#S×¶!o×¶"Ä×¶!Ì ×¶"Í%×¶#ë ·!‘ú ·"2ü ·#ÑÇ<·#Ó<·!¦Õ<·")×<·!Ø<·"Ý<·#7¦o·!(³o·"}µo·#!Œ¢·##¢·!K’¢·"È“¢·!•¢·" ™¢·#\^Õ·!|kÕ·"ƒmÕ·#Í<¸#H¸!5J¸"²K¸!ŸL¸"¼P¸#';¸!!%;¸" ';¸#.öm¸#šÿm¸!Ln¸"Þn¸ÁüÁõ©‹à‡îØF²ÿbÊ™HŽn¸È7Κ(ÃÈ7ø€!n¸"q n¸#tÓ ¸!Zá ¸jæ ¸ltt-kconsumerd2sì ¸ltt-kconsumerd2x"ðð ¸°ô ¸kworker/0:1ltt-kconsumerd2¥¡¸t¡¸ö顸½¡¸ö€@ŽK=¿L¡¸,!¡¸HŽK=¿:+¡¸-¡¸ä_¡¸{b¡¸@-*k¡¸ ‚0 ltt-kconsumerd–€¡¸¦‚¡¸0›‡¡¸«‰¡¸Ý0‘”¡¸Ý•–¡¸ö™¡¸kœ¡¸°Ä@ ÿÿÿÿÿÿÿÿŨ¡¸ltt-kconsumerd2³¾Á² jµ¡¸ltt-kconsumerd2kworker/0:1/3¦¸ahci m@¦¸ÌA¦¸uhci_hcd:usb3 aF¦¸¢G¦¸eth1 ÙL¦¸#ô¸Ó¸# ¾Ó¸!þÀÓ¸"8ÃÓ¸!OÄÓ¸"ËÉÓ¸#⓹!O™¹" ›¹#Hn9¹#Ãt9¹!«w9¹"Uy9¹!Bz9¹"”9¹#nOl¹!üTl¹"ôVl¹#Ë!Ÿ¹#C/Ÿ¹!1Ÿ¹"Ç2Ÿ¹!±3Ÿ¹"ª7Ÿ¹#/Ò¹!{ Ò¹"s Ò¹#Zݺ#4èº!€êº"Kìº!8íº"Íñº#D¸7º!Æ7º"ÃÇ7º#~˜jº#ç¢jº!·¥jº"I§jº!3¨jº"ž¬jº# rº!b}º" º#Rк#÷[к!R^к"`к!Oaк"Ÿeк#é,»!ª6»"Ì8»#°6»#H6»!U6»"P6»!=6»"ó6»#åh»!Dòh»"œôh»Jn»ahci Ý+n»H-n»uhci_hcd:usb3 þ1n»<3n»eth1 à7n»#üÌ›»#XÑ›»!:Ô›»"Ö›»!õÖ›»"ÛÛ›»#ŸÎ»!›«Î»´°Î»kworker/6:1x"ԴλϹλkworker/0:1kworker/6:1€ÆÎ»kworker/6:14Q½I± nÏλkworker/6:1kworker/0:1#—}¼#@‰¼!ž‹¼"r¼!h޼"‡“¼#ÈY4¼!¼b4¼"we4¼#@g¼#Dg¼!-Fg¼"þGg¼!ëHg¼"«Lg¼#{š¼! !š¼"#š¼#²øÌ¼#Pý̼!9ÿ̼"¿Í¼!¯ͼ"Éͼ#óÔÿ¼!áÚÿ¼"‚Üÿ¼#À¨2½!¾´2½"e¶2½#Lˆe½#Œ“e½!ç•e½"g—e½!W˜e½"¿œe½#…b˜½!Ïl˜½"an˜½øÊš½uhci_hcd:usb4 ŠÏš½ Ñš½eth0#+ך½ 9Øš½!LÚš½"cæš½# @˽#¶L˽!eO˽"Q˽!R˽" V˽#Iþ½!U(þ½"z*þ½#]1¾#Ò1¾!Í 1¾"n 1¾!p 1¾"´1¾#óÕc¾!pác¾" ãc¾#ž´–¾#Ô¾–¾!hÁ–¾"3Ö¾!5Ä–¾"6É–¾#¦É¾!÷œÉ¾"¼žÉ¾#ñvü¾#¢zü¾!š|ü¾"~ü¾!ü¾"M„ü¾#PJ/¿!¶W/¿"`Y/¿#×/b¿#?4b¿!O6b¿" 8b¿!9b¿"–=b¿#Ó •¿!m•¿"•¿#¯ßÇ¿#+ïÇ¿!zñÇ¿"3óÇ¿!5ôÇ¿"ÙøÇ¿#€¼ú¿!³Éú¿"ÌËú¿#±™-À#‹¥-À!×§-À"c©-À!’ª-À"5°-À®ÐDÀahci )ÝDÀ£ÞDÀuhci_hcd:usb3 _ãDÀ²äDÀeth1 ÅéDÀ#<€`À!c†`À"‹ˆ`À#"S“À#i]“À!Ç_“À"na“À!sb“À"ªg“À#+1ÆÀ!m>ÆÀ" @ÆÀ#Å ùÀ#îùÀ!”ùÀ"_ùÀ!dùÀ"†$ùÀ#œé+Á!Vö+Á"ñ÷+Á#ÐÈ^Á#³Ô^Á!•×^Á"?Ù^Á!AÚ^Á"ß^Á#­‘Á!沑Á"–´‘Á#€ÄÁ#¸ÄÁ!ÄÁ"¥‘ÄÁ!Ý’ÄÁ"·—ÄÁ#Ã\÷Á!~k÷Á"m÷Á#AB*Â#šF*Â!=I*Â"ÏJ*Â!¼K*Â"@O*Â#!]Â!&&]Â"¾']Â#düÂ#åÿÂ!ÝÂ"‡Â!tÂ"ÁÂ#=ÐÂÂ!ÛÂÂ"ÝÂÂ#F®õÂ#´¶õÂ!T¹õÂ"ѺõÂ!¾»õÂ"ä¿õÂ#œŠ(Ã!—(ÃÁüÁõ©‹à‡îØF²ÿbÊ™Hއ™(ÃÈ7q€áÎÈ7Ѐ"‡™(Ã#…r[Ã#v[Ã!|x[Ãé}[Ãltt-kconsumerd2Yƒ[Ãltt-kconsumerd2x"߇[Ã!óˆ[Ã"([ÃÇ[Ãkworker/0:1ltt-kconsumerd2±[Ãè´[Ãö¸[Ãι[Ãö€@ŽK=¿N»[ÃI½[ÃHŽK=¿°È[ÊÊ[Ã6ý[ÃÙÿ[ÃP-Ö\è‚0 ltt-kconsumerd\Ã: \Ã@–$\Ãs&\ÃÝ@e1\ÃÝ«3\Ãö6\Ã9\ðÄ@ ÿÿÿÿÿÿÿÿ~E\Ãltt-kconsumerd2–ó„² øO\Ãltt-kconsumerd2kworker/0:1©`Ãahci î½`Ãh¿`Ãuhci_hcd:usb3 BÄ`äÅ`Ãeth1 oÊ`Ã#vNŽÃ!“UŽÃ"ZXŽÃ#| ÁÃ#Æ-ÁÃ!¨0ÁÃ"ˆ2ÁÃ!u3ÁÃ"„9ÁÃ#2ýóÃ!uôÃ"ˆ ôÃ#?æ&Ä#Oë&Ä!ªí&Ä"áï&Ä!Ñð&Ä"Bõ&Ä#ʶYÄ!NÄYÄ"[ÆYÄNj`Äahci ìw`Ä`y`Äuhci_hcd:usb3 ò}`Äf`Äeth1 "„`Ä#È“ŒÄ#÷ ŒÄ!X£ŒÄ"¥ŒÄ!L¦ŒÄ"#«ŒÄ#.z¿Ä!(€¿Ä"Þ¿Ä#QMòÄ#”VòÄ!7YòÄ"½ZòÄ!ª[òÄ"â_òÄ#ž3%Å!b9%Å"B;%Å#?XÅ#¥XÅ!XÅ"àXÅ!âXÅ"‚XÅ#ÄãŠÅ!©ðŠÅ"¹òŠÅ#T½Å!â˽Å" νÅ#¼žðÅ#3©ðÅ!éªðÅ"r¬ðÅ!_­ðÅ"¬±ðÅ#Qz#Æ!5Š#Æ"Œ#Æ#%WVÆ#bVÆ!eVÆ"ÝfVÆ!ÊgVÆ"äkVÆ#7‰Æ!ûA‰Æ"¥C‰Æ#­¼Æ#ƼÆ!K!¼Æ"Ô"¼Æ!Á#¼Æ"S(¼Æ#­íîÆ!¤úîÆ"9üîÆ#–Ê!Ç#qÕ!Ç!À×!Ç"RÙ!Ç!rÚ!Ç"žÞ!Ç#¤©TÇ!^¶TÇ">¸TÇ#1„‡Ç#”‡Ç!"–‡Ç"ä—‡Ç!㘇Ç"✇Çê“’Çahci G ’ÇÓ¡’Çuhci_hcd:usb3 b¦’Ç §’Çeth1 Œ¬’Ç#êcºÇ!£oºÇ"˜qºÇ#¦>íÇ! KíÇ"þLíÇ#Å* È#†- È!á/ È"Ž1 È!2 È"!8 È#™÷RÈ!SÈ"¤SÈ#XÔ…È#0ß…È!(á…È"çâ…È!Ôã…È"Ûè…È#\¸¸È!¿¸È"®À¸È#ÜëÈ#S˜ëÈ!šëÈ"^œëÈ!KëÈ"àëÈ#ÍjÉ!±zÉ"¯|É#¡GQÉ#üSQÉ!÷UQÉ"ËWQÉ!¨YQÉ" ^QÉ#$„É!61„É"3„É#/·É#/ ·É!´·É"R·É!B·É"‚·É# ÞéÉ!¹èéÉ"ÉêéÉ#¼¼Ê#^ÇÊ!°ÉÊ"cËÊ!PÌÊ"OÐÊ#¶—OÊ!>¦OÊ"è§OÊ#^u‚Ê!‚Ê"®‚‚Ê#¨TµÊ# `µÊ!ûbµÊ"œdµÊ!žeµÊ"jµÊ#D.èÊ!9èÊ";èÊ# Ë#™Ë!fË"ïË!-Ë"Ë#ˆñMË!…÷MË"\ùMË#Í€Ë#˜Ñ€Ë!¢Ó€Ë""Õ€Ë!Ö€Ë",Ú€Ë#±¡³Ë!Ù¯³Ë"ȱ³Ë#`~æË#yŠæË!<æË"ãŽæË!ÐæË"O•æË#=[Ì!FhÌ"üiÌ#+:LÌ#™ELÌ!íGLÌ"ILÌ!¢JLÌ"ÑNLÌ#þÌ! !Ì"·"Ì#Oõ±Ì#§²Ì!²Ì"¬²Ì!«²Ì" ²Ì#®ÎäÌ!êÛäÌ"¦ÝäÌ#ɲÍ#À¸Í!ǺÍ"G¼Í!v½Í"«ÁÍ#¼ŠJÍ! ™JÍ"¸šJÍ#8e}Í#œq}Í!t}Í"v}Í!3Ïltt-kconsumerd2kworker/0:1#a1GÏ!Â9GÏ")Ô#rÄ>Ô!XÆ>Ô" È>Ô!õÈ>Ô"5Î>Ô#Q˜qÔ!3¥qÔ"ì¦qÔè|Ôahci œô|Ôö|Ôuhci_hcd:usb3 ®ú|Ô!ü|Ôeth1 à}Ô#Es¤Ô#”|¤Ô!6€¤Ô"7‚¤Ô!fƒ¤Ô"Oˆ¤Ô#R×Ô!û]×Ô"´_×Ô#69 Õ#Y= Õ!ÍÚ"»?ÍÚ!«@ÍÚ"ìDÍÚÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚÛÈ74ö¸æÈ7Ѐ#ÚÛ!·Û'Ûltt-kconsumerd2G.Ûltt-kconsumerd2x"ß2ÛÆ6Ûkworker/0:1ltt-kconsumerd2ÈaÛ±fÛöjÛÇkÛö€@ŽK=¿,mÛoÛHŽK=¿á{ÛÐ}Û¸ÛúÛp-äÃÛ¸‚0 ltt-kconsumerd‘ÚÛ­ÜÛ`xáÛ…ãÛÝ`ÈîÛÝáðÛö<óÛöÛ°Ä@ ÿÿÿÿÿÿÿÿùÛltt-kconsumerd2ãÖ$²  Ûltt-kconsumerd2kworker/0:1¡pÛahci  }Û Ûuhci_hcd:usb3 ăÛ…Ûeth1 î‰Û#Dô2Û#»ø2Û!ëû2Û"4þ2Û!0ÿ2Û"+3Û#ˆÏeÛ!=ÕeÛ"ÛÖeÛ#$¤˜Û#º®˜Û!±˜Û"¡²˜Û!г˜Û"¸˜Û#ÓËÛ!´ËÛ"a‘ËÛ#__þÛ#_iþÛ!®kþÛ"åmþÛ!çnþÛ"(sþÛ#-B1Ü!£J1Ü"JL1Ü#TdÜ#Þ&dÜ!ú(dÜ"€*dÜ!m+dÜ"/dÜ#Êý–Ü!ã—Ü"À—Ü#ÑÉÜ#°ÜÉÜ!ßÉÜ"áÉÜ!âÉÜ"CæÉÜ#®üÜ!¬»üÜ"†½üÜ#’/Ý#P˜/Ý!`š/Ý"Ý›/Ý!Çœ/Ý"~ /Ý#„ibÝ!)wbÝ"ÇxbÝ#(F•Ý#:R•Ý!†T•Ý"‡V•Ý!tW•Ý"ˆ[•Ý#N!ÈÝ!.ÈÝ"y0ÈÝ#9ÿúÝ#V ûÝ!ûÝ"ÍûÝ!·ûÝ"¥ûÝ#öÚ-Þ!§ç-Þ",ê-Þ#b»`Þ#LÆ`Þ!ËÈ`Þ"œÊ`Þ!žË`Þ"Ï`Þ#ž“Þ!û£“Þ"±¥“Þ#¸sÆÞ!·~ÆÞ"Á€ÆÞ#YùÞ# ]ùÞ!\_ùÞ"aùÞ!bùÞ"LfùÞ#4+,ß!ª7,ß"~9,ß#_ß#4_ß!3_ß"¼_ß!©_ß"®_߯›eßahci ‡¨eßø©eßuhci_hcd:usb3 o®eß­¯eßeth1 `´eß#áå‘ß!ªò‘ß"«ô‘ß#^ËÄß#`ÏÄß!3ÒÄß"¶ÓÄß!âÔÄß" ÙÄß#ž÷ß!„­÷ß"j¯÷ß#~ƒ*à#Uˆ*à!SŠ*à"Œ*à! *à"Б*à##X]à!Žh]à"#j]à#/5à#D?à!3Aà"³Bà! Cà"±Gà‹ àahci  › àóœ àuhci_hcd:usb3 …¡ à®¢ àeth1 d§ à#›Ãà!©!Ãà"ƒ#Ãà#³îõà#-ùõà!füõà"þõà!ÿõà"éöà#£Ì(á!ÖÙ(á"°Û(á#`¨[á#¶[á!~¸[á"º[á!ñº[á"}¿[á›qáahci n§qáͨqáuhci_hcd:usb3 X­qá“®qáeth1 a³qá#Ÿ‡Žá!b•Žá"—Žá#ŠkÁá#°oÁá!ÃqÁá"CsÁá!-tÁá"bxÁá#Ó>ôá!îKôá"ŒMôá#'â#•('â!Ÿ*'â"L,'â!9-'â"C2'â#ÛZâ!ÊZâ"tZâ#‰ÖŒâ#ÀâŒâ!3åŒâ"°æŒâ! çŒâ"êëŒâ#·½¿â!7¿â"Éÿâ#¤òâ#Õ™òâ!@žòâ"ßòâ!­ òâ"¥òâ#…l%ã!ív%ã"—x%ã#ýIXã#%SXã!”VXã"MXXã!7YXã"]Xã#'‹ã!Â0‹ã"x2‹ã#…¾ã#×¾ã!Ò¾ã"v¾ã!x¾ã"þ¾ã#5ßðã!Yëðã"íðã#½#ä#ïÆ#ä!5É#ä"ÊÊ#ä!½Ë#ä"­Ï#ä#Ö˜Vä!h¤Vä"¦Vä#by‰ä#]…‰ä!¦‡‰ä"•‰‰ä!—Љä"Œ‰ä#‚R¼ä!Ï_¼ä"|a¼ä#n8ïä#Ê<ïä!ª>ïä"c@ïä!SAïä"—Eïä#* "å!«"å":"å#õTå#{øTå!ñúTå"nüTå!XýTå"„Uå#gȇå!æ×‡å"ŸÙ‡å#¡¢ºå#®ºå![°ºå" ²ºå!ø²ºå"붺å#3€íå!&Žíå"µíå#h æ#ƒk æ!{m æ"o æ!÷o æ"•t æ#±BSæ!rHSæ"jJSæ#ˆæ!+"†æ" $†æÁüÁõ©‹à‡îØF²ÿbÊ™HŽóô¸æÈ7RþëÈ7P~€#óô¸æ#@¹æ!ï¹æK ¹æltt-kconsumerd2ú¹æltt-kconsumerd2x"¹æ!7¹æ"?¹æ¹ækworker/0:1ltt-kconsumerd2‹2¹æ6¹æöN9¹æF;¹æö€@ŽK=¿À<¹æ >¹æHŽK=¿¼F¹æ±H¹ægw¹æïy¹æ€-_‚¹æÀˆ0 ltt-kconsumerd˜¹æ š¹æpôž¹æû ¹æÝp «¹æÝ­¹æö;¯¹æ²¹æ°Ä@ ÿÿÿÿÿÿÿÿ5¾¹æltt-kconsumerd2±!Õ² ®É¹æltt-kconsumerd2kworker/0:1#Ýëæ!ñãëæ"Xæëæ#„¬ç#•·ç!,ºç"K¼ç!;½ç"cÂç#e‰Qç!—Qç"e™Qç#¢l„ç#øp„ç!är„ç"¦t„ç!«u„ç"òy„ç#K·ç!¢P·ç"+R·ç#æ êç#Ô)êç!˜,êç"?.êç!,/êç"Ú2êç#®üè!«è"p è#ˆÙOè#>äOè!2çOè"¯èOè!ŸéOè"†íOè#BÁ‚è!ÍÆ‚è"\È‚è#!“µè#žµè!ÜŸµè"†¡µè!‹¢µè"§µè#ûxèè!€èè"¼èè#nSé#Xé!þYé"º[é!¿\é"Í`éÝ¿*éuhci_hcd:usb4 ½Ä*éÆ*éeth0#ËË*é ÇÌ*é!ÑÎ*é"ûï*é#W3Né!9Né" ;Né#mé#¾é!Ué"’é!”é"=é#bã³é!ó³é"õ³é#´Âæé#ÆÏæé!Òæé"àÓæé!âÔæé"Ùæéƒ‹íéahci Ęíéšíéuhci_hcd:usb3 ¢žíéìŸíéeth1 ¢¤íé#©§ê!Ù­ê"³¯ê#¬„Lê#NˆLê!jŠLê">ŒLê!CLê"„‘Lê#=_ê!–fê":hê#_3²ê#³<²ê!>²ê" @²ê!÷@²ê"ÏD²ê#Cåê!¦åê"nåê# íë#}úë!Wüë"àýë!Íþë"·ë# ÊJë!¸ÖJë"¹ØJë#ª}ë#vµ}ë!¸}ë"5º}ë!"»}ë"ÑÀ}ë#»ƒ°ë!¦°ë"t‘°ë#ìfãë#Ækãë!»mãë"Doãë!1pãë"ŠtãëjTûëuhci_hcd:usb4 áXûë"Zûëeth0#2_ûë 7`ûë!&bûëŠyûësshdf(Ü~ûësshdf(x"8‰ûëyûëkworker/0:1sshdf(é§ûëE¬ûë𢴀ÿp£´€ÿô®ûëò°ûëp£´€ÿ²ûë¹ûëàc´€ÿ@Áûë0Üûë@ù¨ª2 ù¨ª2=êûë›ìûë𢴀ÿp£´€ÿoîûëFðûëp£´€ÿ¢ñûëNôûë Eªª2 þûësshdf(ˆ€S]± œüëkworker/6:1x’üësshdf(xÿ üë$ üë Tࢴ€ÿ@£´€ÿüëüë@ù¨ª2 ù¨ª2x!üësshdf(X#«=]± ü$üësshdf(kworker/6:1;üëkworker/6:1gˆÔL± ÖFüëkworker/6:1kworker/0:1‰ôýësshdf(xÁûýëkworker/0:1sshdf(*þëÖþë𢴀ÿp£´€ÿ×þëÁüÁõ©‹à‡îØF²ÿbÊ™HŽþëÈ7Ó†ÍøÈ7À€þëp£´€ÿ¼þë>þëàb´€ÿ@s%þëX:þë@ù¨ª2 ù¨ª2rAþë‚Cþë𢴀ÿp£´€ÿ/EþëëFþëp£´€ÿ2HþëæKþ단ª2@elþë@Ìqþë@ù¨ª2 ù¨ª2F|þësshdf(ŠÃÇ]± î…þësshdf(kworker/0:1#°Gì![Nì",_ì#úIì!^&Iì"w(Iì#rø{ì#|ì!Š|ì"( |ì!! |ì"Þ|ì#¼Ý®ì!ã®ì"Êä®ì#“°áì#(¼áì!ª¾áì"'Àáì!Ááì"fÆáì#{í!„œí"Iží#~sGí#]yGí!ß{Gí"e}Gí!R~Gí"‰ƒGí#ñGzí!¹Rzí"]Tzí#+­í#÷.­í!m1­í"ê2­í!Ñ3­í"9­í#Éàí!àí"Éàíõåíahci ÿæímæíuhci_hcd:usb3  æíX æíeth1 æí#[àî#Ãêî!Ùìî"Ôîî!Áïî"ôî#öÂEî!ZËEî"eÏEî#3—xî#q¢xî!!§xî"°¨xî!©xî",®xî#:t«î!b«î"ú€«î#üPÞî#éZÞî!^Þî"À_Þî!Å`Þî"ådÞî#Ç-ï!L<ï"ç=ï#d Dï#õDï!,Dï"¯Dï!ŸDï"ÚDï#ëèvï!ãóvï"½õvï#)Ä©ï#3Щï!Ò©ï"ŸÓ©ï!ŒÔ©ï"YÚ©ï#v«Üï!'²Üï"š´Üï# ~ð#‹ð!’ð"Ÿð!‰ð"w–ð#ÇZBð!ÏgBð"ÕjBðIoGðahci „Gð{…Gðuhci_hcd:usb3 ŠGðB‹Gðeth1 þGð#<9uð#Auð!ìCuð"Fuð! Guð"}Luð#h¨ð!U!¨ð";#¨ð#ñÚð#«ýÚð!]Ûð"ÝÛð!ÇÛð"çÛð#Î ñ!ÒÛ ñ"ôÝ ñ#¬@ñ#Z´@ñ!’¸@ñ"-º@ñ! »@ñ"”¿@ñ#»‡sñ!Æ”sñ"—sñ#†d¦ñ#·o¦ñ!Ûr¦ñ"[t¦ñ!Eu¦ñ"Vy¦ñ#IÙñ!ËNÙñ"{PÙñ# ò#q+ ò! . ò" / ò!0 ò"×4 ò#û>ò!8?ò"Ð?ò#,Úqò#Tæqò!‚èqò"Sêqò!=ëqò"“ïqò#¬´¤ò!6¿¤ò"ÝÀ¤ò#™×ò#é×ò!çŸ×ò"d¡×ò!Q¢×ò"G¦×ò#%p ó!'} ó"æ~ ó#.K=ó#žV=ó!ÞX=ó"dZ=ó!N[=ó"¼_=ó#L.pó!I4pó"í5pó#£ó#Ô£ó!£ó"è£ó!ê£ó"'£ó#áÕó!UíÕó"öîÕó#óÇô#‰Ëô!lÍô"æÎô!ÖÏô"zÔô#ñ£;ô!(©;ô"Õª;ô#+xnô#œ…nô!v‡nô"w‰nô!gŠnô"9Žnô#êT¡ô!Ãc¡ô"me¡ôDª§ôahci S¶§ôÁ·§ôuhci_hcd:usb3 P¼§ô޽§ôeth1 D§ô#*2Ôô#<>Ôô!‘@Ôô"VBÔô!FCÔô"‡GÔô#£õ!1õ"äõ#:ì9õ#âø9õ!mû9õ"êü9õ!Ôý9õ"9:õ#ÔÒlõ!ŒØlõ"0Úlõ#¡®Ÿõ#—²Ÿõ!¤´Ÿõ"!¶Ÿõ!·Ÿõ"O»Ÿõ#íÒõ!9Òõ"ÅŽÒõ#µ^ö#gjö!àlö"nö!woö"Ùsö#ËD8ö!KI8ö"K8ö#}kö#7%kö!Â'kö"B)kö!/*kö"ý.kö#xõö!tžö"Bžö#ÒÐö#‰ÝÐö!ÈàÐö"râÐö!tãÐö"QèÐö#ê®÷!â½÷"¿÷#Ê‹6÷!•6÷"j—6÷#ti÷#ƒwi÷!çyi÷Õi÷kworker/6:1x"ƒi÷!è„i÷"n‰i÷Ái÷kworker/0:1kworker/6:1™i÷kworker/6:1*²ïL± “£i÷kworker/6:1kworker/0:1#æLœ÷!­Rœ÷"{Tœ÷#o"Ï÷#‹-Ï÷!40Ï÷"e2Ï÷!U3Ï÷"Å8Ï÷#7ÿø!‰ ø"-ø#¨ä4ø#ôé4ø!æë4ø"½í4ø!¿î4ø"0ó4ø#Ù¿gø!–Ægø"jÈgø#ž•šø#A¡šø!¢£šø".¥šø!¦šø" «šø#|Íø!—ƒÍøÁüÁõ©‹à‡îØF²ÿbÊ™Hޤ…ÍøÈ7ØBýÈ7€M€"¤…Íø#LXù#Ó[ù!Ñ]ùubùltt-kconsumerd2¬gùltt-kconsumerd2x"ºkù!Ålù"oqùŒuùkworker/0:1ltt-kconsumerd2Û•ù$›ùöÞžùÍ ùö€@ŽK=¿e¢ùÛ¤ùHŽK=¿x°ùˆ²ùêùÕìù -ÞõùЈ0 ltt-kconsumerd ù1ùÿùùÝ#ùÝ!%ùöm'ù?+ù°Ä@ ÿÿÿÿÿÿÿÿ8ùltt-kconsumerd2ýѧ² ±Cùltt-kconsumerd2kworker/0:1Çmùahci {ù‹|ùuhci_hcd:usb3 Aù—‚ùeth1 _‡ù#€53ù!-<3ù" >3ù# fù!“fù"÷fù#áå˜ù#øð˜ù!çò˜ù"…ô˜ù!õ˜ù":ú˜ù#ÉÄËù!™ÑËù":ÓËù#fŸþù#¦ªþù!­þù"V¯þù!C°þù"€µþù#O|1ú!˜Š1ú"‡Œ1ú#&Ydú#Bgdú!«jdú"Uldú!Emdú"Ûpdú#ä5—ú!û@—ú"­B—ú×¥œúahci %²œú™³œúuhci_hcd:usb3 ¸œúE¹œúeth1 ¾œú#ÖÊú#t Êú!"Êú"‹$Êú!x%Êú"*Êú#£ïüú!¶þüú"ºýú#ŒÍ/û#gØ/û!ÔÚ/û"‡Ü/û!tÝ/û"„â/û# ªbû!Û¶bû" ¸bû#™•û#i”•û!Ù–•û"S˜•û!@™•û"ö•û#µeÈû!ŽqÈû"zsÈû#^Iûû#=Nûû!°Pûû"-Rûû!Sûû"FWûûžzüahci ¿†üˆüuhci_hcd:usb3 ŒŒüÐüeth1 ƒ’ü#Ú.ü!›+.ü"o-.ü#åaü#øaü! aü" aü! aü"jaü#’ß“ü!;å“ü"÷æ“ü#³Æü#½Æü!ÀÆü"ÄÁÆü!°ÂÆü"rÇÆü#ùü!sŸùü".¡ùü#øv,ý#–{,ý!>~,ý"»,ý!¨€,ý"[…,ý?ýahci ¼›?ý?ýuhci_hcd:usb3 t¡?ý¢?ýeth1 b§?ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽšÚiÉ7‰ŸÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/metadata0000755000175000017500000007000011616325072023002 00000000000000WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; } := uint16_t; typealias integer { size = 32; align = 8; signed = false; } := uint32_t; typealias integer { size = 64; align = 8; signed = false; } := uint64_t; typealias integer { size = 5; align = 1; signed = false; } := uint5_t; typealias integer { size = 27; align = 1; signed = false; } := uint27_t; trace { major = 0; minor = 1; uuid = "f5a98be0-87ee-d846-b2ff-621fca99488e"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; struct packet_context { uint64_t timestamp_begin; uint64_t timestamp_end; uint32_t events_discarded; uint32_t content_size; uint32_t packet_size; uint32_t cpu_id; }; struct event_header_compact { enum : uint5_t { compact = 0 ... 30, extended = 31 } id; variant { struct { uint27_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); struct event_header_large { enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id; variant { struct { uint32_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); stream { id = 0; event.header := struct event_header_large; packet.context := struct packet_context; }; event { name = block_rq_remap; id = 52; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_remap; id = 51; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_split; id = 50; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } new_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_unplug; id = 49; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } nr_rq; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_plug; id = 48; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_sleeprq; id = 47; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_getrq; id = 46; stream_id = 0; fields WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€:= struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_queue; id = 45; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_frontmerge; id = 44; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_backmerge; id = 43; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_complete; id = 42; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } error; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_bounce; id = 41; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_rq_issue; id = 40; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_insert; id = 39; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = noneWÑuõ©‹à‡îØF²ÿbÊ™HŽ€€; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_complete; id = 38; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_requeue; id = 37; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_abort; id = 36; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = softirq_raise; id = 35; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_exit; id = 34; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_entry; id = 33; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = irq_handler_exit; id = 32; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = irq_handler_entry; id = 31; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; string name; }; }; event { name = kvm_async_pf_completed; id = 30; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } pfn; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_ready; id = 29; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€gva; }; }; event { name = kvm_async_pf_not_present; id = 28; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_doublefault; id = 27; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_try_async_get_page; id = 26; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_age_page; id = 25; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } hva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } referenced; }; }; event { name = kvm_fpu; id = 24; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } load; }; }; event { name = kvm_mmio; id = 23; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } type; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } len; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gpa; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } val; }; }; event { name = kvm_ack_irq; id = 22; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } irqchip; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } pin; }; }; event { name = kvm_msi_set_irq; id = 21; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } data; }; }; event { name = kvm_ioapic_set_irq; id = 20; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } e; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } pin; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } coalesced; }; }; event { name = kvm_set_irq; id = 19; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } gsi; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } level; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq_source_id; }; }; event { name = kvm_userspace_exit; id = 18; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } reason; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errno; }; }; event { name = sched_pi_setprio; id = 17; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } oldprio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } newprio; }; }; event { name = sched_stat_runtime; id = 16; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } runtime; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } vruntime; }; }; event { name = sched_stat_iowait; id = 15; stream_id = 0; fields := struct { integWÑuõ©‹à‡îØF²ÿbÊ™HŽ€€er { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_sleep; id = 14; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_wait; id = 13; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_process_fork; id = 12; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } parent_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } parent_tid; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } child_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } child_tid; }; }; event { name = sched_process_wait; id = 11; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_wait_task; id = 10; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_exit; id = 9; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_free; id = 8; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_migrate_task; id = 7; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } orig_cpu; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } dest_cpu; }; }; event { name = sched_switch; id = 6; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } prev_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_prio; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } prev_state; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } next_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } next_tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } next_prio; }; }; event { name = sched_wakeup_new; id = 5; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = WÑuõ©‹à‡îØF²ÿbÊ™HŽ 9€UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_wakeup; id = 4; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_kthread_stop_ret; id = 3; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sched_kthread_stop; id = 2; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; }; }; event { name = sys_exit; id = 1; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sys_enter; id = 0; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } args[6]; }; }; WÑuõ©‹à‡îØF²ÿbÊ™HŽ(€babeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_50000755000175000017500000043000011616325072023136 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽdNÈ70ýuzÈ7°€ÿÿJc¯yÈ7×l¯y.`-:Ÿ[‚¯yltt-kconsumerd2ˆ¯y.ª“¯y.0-:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ饯y.ư¯y.:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ嵯y.0¿¯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ‹Ê¯y.LЯy.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ9Ú¯y.î߯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ9õ¯y.3û¯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ8°y. °y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ›°y.°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸË#°y.‰)°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸÍ0°y.6°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸÝC°y.ïF°yCö€„¥:ŸN°yltt-sessiond2%è nõEMå\°yltt-sessiond2kworker/0:1#·CØy#yEØy #HØy!¾KØy"ÐQØy!ÉRØy"T[Øy!/\Øy "HaØy #Ý z#8" z !¡( z" - z!. z "-3 z #ùõ=z#Çþ=z!>z"Æ>z!¼>z">z#ÚÑpz#ÞÓpz !ÂÞpz"ýâpz!óãpz ´épzltt-sessiond2x"6ïpz ûópzkworker/0:1ltt-sessiond2 úpz[ýpz. P>:Ÿ €„¥:ŸŸqz.R qz  €„¥:Ÿ%qz[ qz°>:Ÿÿÿÿÿÿÿÿÿ€„¥:Ÿµ&qzltt-sessiond2§=3FMÜ2qzltt-sessiond2kworker/0:1 szbash1x5"szkworker/0:1bash1,Fsz=2ZszÐC-ÿPC-ÿ]sz¢`szÿT¿Ï€#žz#‚žz°žË=¿ÿÿÿÿÿÿÿÿ€¥‡žzEŠžz/PžË=¿€M‘žz/™“žz°žË=¿ÿÿÿÿÿÿÿÿ€ù–žz™žz/žË=¿€×¢žz/0¹žzƒ@AÿÍ€ûížzúñžzÊàCf>¿Í€ïùžzÊÿûžz !f>¿Í€®Ÿz Ÿz°žË=¿ÿÿÿÿÿÿÿÿ€eŸzo Ÿz/žË=¿€sŸz/¡ Ÿz˜b@AÿÍ€¿MŸz¼PŸzÊàCf>¿Í€pWŸzÊqYŸz !f>¿Í€-^Ÿz[`Ÿz°žË=¿ÿÿÿÿÿÿÿÿ€¥dŸzâfŸz/žË=¿€qŸz/ÌsŸzÊàCf>¿€àCf>¿2vŸzÊõÿÿÿÿÿÿÿ²ŠŸzxÔ@AÿÍ€J¹Ÿzw¼ŸzÊàCf>¿Í€ßzÊ>ÅŸz !f>¿Í€ÊŸzsÌŸz°žË=¿ÿÿÿÿÿÿÿÿ€ÞПzÁüÁõ©‹à‡îØF²ÿbÊ™HŽQÓŸzÈ7w½ |È7è~€QÓŸz/žË=¿€4àŸz/ôŸzˆ“@AÿÍ€Ì  zü# zÊàCf>¿Í€ž* zÊŸ, z !f>¿Í€¦1 zì3 z°žË=¿ÿÿÿÿÿÿÿÿ€]8 z…: z/žË=¿€ŸD z/]_ z¤@AÿÍ€A zk“ zÊàCf>¿Í€û™ zÊœ z !f>¿Í€ý  z(£ z°žË=¿ÿÿÿÿÿÿÿÿ€l§ zj© z/žË=¿€ · z/qÀ zH´@AÿÍ€Šì z¨ï zÊàCf>¿Í€ ö zÊ ø z !f>¿Í€øü z&ÿ z°žË=¿ÿÿÿÿÿÿÿÿ€a¡z\¡z/žË=¿€©¡z/Q$¡zˆfAAÿÍ€~Q¡z ¢T¡zÊàCf>¿Í€[¡zÊ]¡z !f>¿Í€ïa¡z#d¡z°žË=¿ÿÿÿÿÿÿÿÿ€mh¡zqj¡z/žË=¿€t¡z/r‡¡z¸ä@AÿÍ€·¡z"´º¡zÊàCf>¿Í€,Á¡zÊ3áz !f>¿Í€@È¡z§Ê¡z°žË=¿ÿÿÿÿÿÿÿÿ€óÏ¡zltt-kconsumerd2¶—(;M%Ú¡zltt-kconsumerd2kworker/0:1#⯣z#M¸£z #T½£z!óÀ£z"Ç£z! È£z"Ô£z!ôÔ£z " Ù£z #/ŒÖz!Ø”Öz",›Öz#½i {#Ds {!Wu {"9{ {!P| {"ކ {#Ö{!b{&w%{€ºüw(Õ-{ltt-kconsumerd2p2{ltt-kconsumerd2xG{kworker/5:0/&x"íQ{ÁV{kworker/0:1kworker/5:0/&2^{kworker/5:0/&Ç3 þL2a{kworker/5:0/&ltt-kconsumerd2¨œ{u¥{-5¸{€0 ltt-kconsumerdòÇ{ltt-kconsumerd2ºi³]¯M²Ñ{ltt-kconsumerd2kworker/0:1ïw"{ahci "‡"{êˆ"{uhci_hcd:usb3 ¯"{†"{eth1 ?”"{#ÉN<{#µP<{ !IV<{"Ê\<{!Ø]<{ "€a<{ #¶!o{#)o{ #˜-o{!“/o{"S9o{!X:o{"öDo{!éEo{ "¹Ho{ #+ ¢{!P¢{"c¢{#ÛÔ{#ÔàÔ{ #ËæÔ{!ÌèÔ{"úíÔ{!äîÔ{"ZúÔ{!5ûÔ{ ^Õ{lttng2"9 Õ{ #ˆÁ|#£Ä| !qÉ|"®Î|!•Ï| "#Ò| IX |ltt-kconsumerd2xq] |kworker/0:1ltt-kconsumerd2c |ltt-kconsumerd2è ›i¯Mák |md1_raid1¥n |ltt-kconsumerd2y u¯MÝr |ltt-kconsumerd2md1_raid1Ý~ |md1_raid1l¯£MÒ€ |ltt-kconsumerd2xCŽ |md1_raid1\ ´Mã |md1_raid1ltt-kconsumerd2Ÿ |md1_raid1¯ |Å´ |öT¹ |ÁüÁõ©‹à‡îØF²ÿbÊ™H޼ |È7%ô#|È7À€¼ |öÆ |ÜÇ |ö€@ŽK=¿DÉ |6Ë |HŽK=¿Ô |òÕ |² |ˆ |-y |@€0 ltt-kconsumerdí% |K( |ö‘* |›, |ö™B |dD |ö€@ŽK=¿±E |‚G |HŽK=¿úM |ÔO |s} | € |-Z‡ |€€0 ltt-kconsumerd±– |©˜ |ö¶š |w |°Ä@ ÿÿÿÿÿÿÿÿú­ |©° |öq² |0´ |ö€@ŽK=¿€µ |Q· |HŽK=¿®½ |‚¿ |žú |,ý |-H|€0 ltt-kconsumerde|`|¬|ltt-kconsumerd2Ž-±M&|ltt-kconsumerd2kworker/0:1#µ„|!†|&ö‹|€º|x*"E |#9¬|!†­|&ú±|€º|x*a½|ltt-kconsumerd2x">Ñ|ÍÕ|kworker/0:1ltt-kconsumerd2 ß|Îæ|Ý™ý|Ýšÿ|öõ||ö  |e |ö€@ŽK=¿²|ƒ|HŽK=¿| |C|–E|-ŽM|H€0 ltt-kconsumerd–]|ˆ_|#d|ltt-kconsumerd2^§‹ª±Mül|ltt-kconsumerd2kworker/0:1#NH|! J|&†O|€ú|x*"»_|#œo|!q|&Át|€ú|x*ú}|ltt-kconsumerd2x"¥|+’|kworker/0:1ltt-kconsumerd2š||Ý»©|Ý«|ö&®|B°|ösÄ|’Æ|ö€@ŽK=¿-È| Ê|HŽK=¿Ñ|FÓ|lþ||-¼|ˆ€0 ltt-kconsumerdi|¸|Ã|ltt-kconsumerd2Z¢åL²M6(|ltt-kconsumerd2kworker/0:1#CÇ#|!üÈ#|& Í#|€:}x*åÜ#|ahci#åè#| ¹ê#|<ì#|uhci_hcd:usb3 àð#|ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÆò#|È7l37|È7ø€Æò#|eth1 ãù#|"Ø$|!þ$|&ª$|€:}x*ƒ$|ltt-kconsumerd2x"ã$|‡"$|kworker/0:1ltt-kconsumerd2©*$|û,$|ÝZ7$|ÝO9$|ö¡;$|J>$|°Ä@ ÿÿÿÿÿÿÿÿXK$|ÝM$|ö™O$|RQ$|ö€@ŽK=¿œR$||T$|HŽK=¿ó[$|â]$|É…$|rˆ$| -‘$|€0 ltt-kconsumerd $| ¢$|ñ¥$|ltt-kconsumerd2˜ìä²MÖ®$|ltt-kconsumerd2kworker/0:1#Ö)|!Ø)|&ÎÜ)|€Â|x*"ôì)|¹*|md1_raid1x÷¾*|kworker/0:1md1_raid13±Å*|€ }x€P€0 -HÈ*|€ }xmd1_raid1.+Ð*|€ }xmd1_raid10ôÓ*|md1_raid13Ö*|€ }x€P€0 -)Ø*|€ }xmd1_raid1.ýÜ*|€ }xmd1_raid1'+â*|€ }xmd1_raid11Âç*|md1_raid1(úë*|€ }xmd1_raid1'Óú*|€ }xmd1_raid11Nþ*|md1_raid1(@+|€ }xmd1_raid1t +|md1_raid1òR_$Mì+|md1_raid1kworker/0:1#Ñ%0|!o'0|&ó*0|€}x*"-90|#‚M0|!ÃN0|&!Q0|€}x*I\0|ltt-kconsumerd26`0|ltt-kconsumerd2x"¼m0|ýq0|kworker/0:1ltt-kconsumerd2ƒ|0|Õ~0|ÝŠ0|Ý"Œ0|öÝŽ0| ‘0|öæ£0|·¥0|ö€@ŽK=¿ §0| ©0|HŽK=¿f±0|L³0|¯Ý0|sà0| -.é0|€0 ltt-kconsumerd­ô0|md1_raid13ü0|7þ0|1|ltt-kconsumerd2u¢ª.´M¦ 1|ltt-kconsumerd2kworker/0:1#¸Q6|!’S6|&6X6|€B}x*"@i6|#›Œ6|!Ž6|&Ì‘6|€B}x*›6|ltt-kconsumerd2x")ª6|®6|kworker/0:1ltt-kconsumerd2¶6|ö¸6|ÝÂ6|ݽÄ6|ö<Ç6|Ê6|°Ä@ ÿÿÿÿÿÿÿÿb×6|Ú6|öÜ6|ûÝ6|ö€@ŽK=¿Zß6|Cá6|HŽK=¿ é6|3ë6|A7|Ø7|0-ñ7|€0 ltt-kconsumerdŒ+7|«-7| ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ%27|È7¹LP|È7~€%27|ltt-kconsumerd22—ÜÅ´MÆ<7|ltt-kconsumerd2kworker/0:1#ž:|#Ì¢:|!¼¦:|"™®:|!ȯ:|"\»:|#ó$<|!=&<|&{*<|€Ê|x*"4;<|»ª<|ahci#²µ<| n·<|î¸<|uhci_hcd:usb3 }½<|ô¾<|eth1 žÃ<|!üÅ<|&uÈ<|€Ê|x*_Ò<|ltt-kconsumerd2x"éá<|læ<|kworker/0:1ltt-kconsumerd2ï<|‘ñ<|Ý ôú<|Ýæü<|ö&ÿ<|W=|öz=|9 =|ö€@ŽK=¿ =|~ =|HŽK=¿Ë=|¥=|g<=|û>=|0-+H=|X€0 ltt-kconsumerdÃX=|âZ=| «^=|ltt-kconsumerd2ÜŒ¸RµM6g=|ltt-kconsumerd2kworker/0:1#>tB|!EvB|&ËzB|€ }x*"b‰B|Ô½C|md1_raid1x5ÃC|kworker/0:1md1_raid13ŒÉC|€R}x€˜€0 -MÌC|€R}xmd1_raid1.kÒC|€R}xmd1_raid10%ÖC|md1_raid13#ØC|€R}x€˜€0 -?ÚC|€R}xmd1_raid1..ßC|€R}xmd1_raid1'ÀãC|€R}xmd1_raid11ÁèC|md1_raid1(–ìC|€R}xmd1_raid1'ŒùC|€R}xmd1_raid11gýC|md1_raid1(8ÿC|€R}xmd1_raid1y D|md1_raid1¤L±ÇMD|md1_raid1kworker/0:1#XÇH|!óÈH|&hÌH|€J}x*"cÚH|#çZI|!j\I|&X_I|€J}x*ÛiI|ltt-kconsumerd2ÈmI|ltt-kconsumerd2x"ð{I|£€I|kworker/0:1ltt-kconsumerd2’‹I|>ŽI|Ý ©˜I|ÝìšI|öÔI|Å I|°Ä@ ÿÿÿÿÿÿÿÿì¯I|’²I|öW´I|(¶I|ö€@ŽK=¿{·I|a¹I|HŽK=¿qÁI|fÃI|vìI| ïI|@-†÷I| €0 ltt-kconsumerd/J|md1_raid1» J|¹ J|0ÐJ|ltt-kconsumerd2}£5öµMJ|ltt-kconsumerd2kworker/0:1#O O|!bO|&¬O|€Ò|x*"o#O|#*îO|!€ïO|&4óO|€Ò|x*üO|ltt-kconsumerd2x"Î P|P|kworker/0:1ltt-kconsumerd2øP|’P|Ý0Œ"P|ÝÆ$P|ö3'P|ˆ)P|ö½P|ö€@ŽK=¿Õ?P|»AP|HŽK=¿IP|ÁüÁõ©‹à‡îØF²ÿbÊ™HŽoKP|È7þ¤}È7x~€oKP|sP|´uP|@-d}P| €0 ltt-kconsumerdYŽP|KP|0”P|ltt-kconsumerd2 ˜Õ޶M œP|ltt-kconsumerd2kworker/0:1#Ô4U|!¢6U|&";U|€}x*"{KU|:ÓU|ahci##ÞU| ßßU|táU|uhci_hcd:usb3 îåU|JçU|eth1 ìU|!RîU|& ñU|€}x*".V|#–ôY|!éõY|&øY|€R}x*"ÎZ|Ve[|md1_raid1xçj[|kworker/0:1md1_raid13q[|€â|x€(€0 -os[|€â|xmd1_raid1.±y[|€â|xmd1_raid108}[|md1_raid13[|€â|x€(€0 -[|€â|xmd1_raid1.í…[|€â|xmd1_raid1'yŠ[|€â|xmd1_raid11G[|md1_raid1(ø’[|€â|xmd1_raid1'f [|€â|xmd1_raid11ð£[|md1_raid1(»¥[|€â|xmd1_raid1M°[|md1_raid1ÌK³íMZ¸[|md1_raid1kworker/0:1#,þ^|!_|&ù_|€Ú|x*"_|#Fë_|!rì_|&ï_|€Ú|x*•ù_|ltt-kconsumerd2Cý_|ltt-kconsumerd2x"º `|§`|kworker/0:1ltt-kconsumerd2ô`|—`|Ý@>&`|ÝN(`|ö”*`|Â,`|öo4`|C6`|ö€@ŽK=¿œ7`|Ç9`|HŽK=¿ B`|öC`|fm`|p`|@-Çx`|`€0 ltt-kconsumerd¾„`|md1_raid1kŒ`|ÆŽ`|0ø’`|ä”`|Ý03`|Ý=Ÿ`|öÑ¡`|­¤`|°Ä@ ÿÿÿÿÿÿÿÿ±²`|ltt-kconsumerd2×µ¬D·Mu»`|ltt-kconsumerd2kworker/0:1#4*e|!ù+e|&ˆ0e|€Z}x*"Ì@e|#Pf|!¬f|&if|€Z}x*"«/f|#sÙi|!ÛÚi|&–Ýi|€â|x*"Yçi| ƒj|ahci#cŽj| þj|o‘j|uhci_hcd:usb3 –j|W—j|eth1 œj|!Pžj|& j|€â|x*"!¯j|#LXm|!·Ym|&_]m|€}x*Fjm|kworker/5:0/&x#³rm|#ÿzm| "„†m|!ª‡m|"wm|!”Žm| ")“m| ˜m|kworker/0:1kworker/5:0/& Ÿm|kworker/5:0/&Ó JMlªm|kworker/5:0/&kworker/0:1#“O |#‘U | # X |!}Z |" a |!Ÿb |"£m |!Šn | "œq | #Ä3Ó|!y9Ó|"T=Ó|#±}#­}!«}"q}!}",%}#jå8}! ñ8}"ñõ8}#ªÁk}#€Èk} #vÌk}!JÎk}"îÒk}!äÓk}"XÞk}!?ßk} "xåk} #Æžž}!‚¬ž}"±°ž}#5Ĥ}!¾Å¤}&E̤}€z}x* à¤}kworker/5:0/&x"âé¤}>î¤}kworker/0:1kworker/5:0/&Âô¤}kworker/5:0/&¨'`MÁüÁõ©‹à‡îØF²ÿbÊ™HŽŸü¤}È7w¯7È7°€Ÿü¤}kworker/5:0/&kworker/0:1#¼;©}!c=©}&B©}€z}x*M_©}kworker/5:0/&x"h©}7l©}kworker/0:1kworker/5:0/&r©}kworker/5:0/&†­sM…x©}kworker/5:0/&kworker/0:1#A}Ñ}#ÿ…Ñ}!ÛˆÑ}»Ñ}ltt-kconsumerd2ЖÑ}ltt-kconsumerd2x"ežÑ}!‚ŸÑ}"y¨Ñ}0¬Ñ}kworker/0:1ltt-kconsumerd2ÓÕÑ}õÚÑ}ö+ÞÑ}àÑ}ö€@ŽK=¿sáÑ}tãÑ}HŽK=¿tïÑ}KñÑ}¿%Ò}b(Ò}`-Þ0Ò}0€0 ltt-kconsumerdCÒ}?EÒ}P.JÒ} LÒ}ÝPÔUÒ}ݱWÒ}öÓYÒ}]Ò}°Ä@ ÿÿÿÿÿÿÿÿxiÒ}ôkÒ}öŸxÒ}azÒ}ö€@ŽK=¿Ø{Ò}¾}Ò}HŽK=¿ê„Ò}džÒ}p¬Ò}"¯Ò}P-W¶Ò}h€0 ltt-kconsumerd«ÅÒ}*ÈÒ}@ÅÌÒ}“ÎÒ}Ý@ØÒ}ÝÚÒ}ö”ÜÒ}+ßÒ}°Ä@ ÿÿÿÿÿÿÿÿëÒ}ltt-kconsumerd2‹U7š¸MFôÒ}ltt-kconsumerd2kworker/0:1#é×}!ûê×}&Pð×}€ê|x*" Ø}#>Ø}!©Ø}&œØ}€ê|x*"C'Ø}#×(Ü}!*Ü}&K-Ü}€"}x*!9Ü}kworker/5:0/&xà@Ü}ahci#LÜ} ñMÜ}zOÜ}uhci_hcd:usb3 !TÜ}†UÜ}eth1 EZÜ}"€aÜ}!¦bÜ}&ødÜ}€"}x*"kyÜ}²}Ü}kworker/0:1kworker/5:0/&ÿ„Ü}kworker/5:0/&’LÉËMƇÜ}kworker/5:1b(x¿ŽÜ}kworker/5:0/&À ‰ÕM;‘Ü}kworker/5:0/&kworker/5:1b(`–Ü}kworker/5:1b(V†M[žÜ}kworker/5:1b(kworker/0:1#>b~!ºg~"l~#d57~#y>7~!A7~"ÒH7~!ãI7~"oT7~#fj~!ˆj~"™#j~#Mïœ~#éùœ~!äûœ~"Èÿœ~!¾~"¡ ~#ÌÏ~!nÖÏ~"»ÚÏ~#ú¨#˜³!êµ""º!$»"ðÄ#à…5!{5"b”5#óbh#Ùkh!Ñmh"úqh!ürh"é|h# ?›!ãH›"“M›#/Î#J&Î!Q(Î"z,Î!µ-Î")8Î#0ù€!€" €#?Ý3€#eá3€!Ïã3€"¤ç3€!—è3€"Pó3€#²f€!~½f€"Áf€#ñŽ™€#˜™€! š™€"ž™€! Ÿ™€"©™€#érÌ€!‡wÌ€çzÌ€kworker/5:1b(x"tÌ€{†Ì€kworker/0:1kworker/5:1b(•Ì€kworker/5:1b(µB¡M´žÌ€kworker/5:1b(kworker/0:1#uOÿ€#íRÿ€!±Uÿ€"­Yÿ€!¦Zÿ€"þbÿ€#ê&2!Ù22"ð62#c‡7!ãˆ7&•Ž7€º}x*¤ 7kworker/5:1b(x"k©7ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ ®7È7&ya„È7 € ®7kworker/0:1kworker/5:1b(ç¶7kworker/5:1b(‹͸MÚ½7kworker/5:1b(kworker/0:1#ã e#î e!ae8eltt-kconsumerd24eltt-kconsumerd2x"Å$e!î%e"ç/e4ekworker/0:1ltt-kconsumerd2ª_eeeönheTjeö€@ŽK=¿¹keœmeHŽK=¿Vze3|eÕ¯e~²ep- »e8€0 ltt-kconsumerd÷ÌeFÏe`¥Óe‚ÕeÝ`?ßeÝ(áeö>ãeVæe°Ä@ ÿÿÿÿÿÿÿÿyóeltt-kconsumerd2mפq¹Mýeltt-kconsumerd2kworker/0:1# j!n!j#Å'j&“,j€ò|x*Á–‚!Ù@–‚"ùD–‚!þE–‚"–P–‚#à ɂ!<É‚"ûÉ‚#ñéû‚#îóû‚!%öû‚"ýùû‚!íúû‚"Úü‚#ÅÅ.ƒ!hÏ.ƒ"ÃÔ.ƒúZ/ƒmd1_raid1x»_/ƒkworker/0:1md1_raid13™f/ƒ€*}x€p€0 -'i/ƒ€*}xmd1_raid1.†p/ƒ€*}xmd1_raid10=t/ƒmd1_raid13wv/ƒ€*}x€p€0 -x/ƒ€*}xmd1_raid1.n|/ƒ€*}xmd1_raid1'`/ƒ€*}xmd1_raid11o‡/ƒmd1_raid1(H/ƒ€*}xmd1_raid1';/ƒ€*}xmd1_raid11:¡/ƒmd1_raid1(C¤/ƒ€*}xmd1_raid1¢±/ƒmd1_raid1iW¼ý Mè¹/ƒmd1_raid1kworker/0:1#&ä3ƒ!ëå3ƒ&ê3ƒ€*}x*)ù3ƒkworker/5:0/&x"–4ƒÚ4ƒkworker/0:1kworker/5:0/&#O 4ƒ!® 4ƒ&S4ƒ€*}x*8#4ƒkworker/5:0/&Ò*£‡M'%4ƒkworker/5:1b(x"1-4ƒ 34ƒkworker/5:0/& ®—M†54ƒkworker/5:0/&kworker/5:1b(94ƒkworker/5:1b(~í—MZ@4ƒkworker/5:1b(kworker/0:1#Ù¤aƒ#–®aƒ!Û±aƒ"H·aƒ!M¸aƒ"TÀaƒ#ž”ƒ!ˆŽ”ƒ"í•”ƒ#ø\ǃ#Æhǃ!ßjǃ" oǃ! pǃ" xǃ#Ó9úƒ!ÖEúƒ"ÌIúƒ#“-„#t"-„!$-„"à(-„!â)-„"þ1-„#ó_„!vû_„"Wÿ_„CVa„md1_raid1xk[a„kworker/0:1md1_raid13Zca„€ú}x€@0 -Çea„€ú}xmd1_raid1.¯ka„€ú}xmd1_raid10oa„md1_raid134qa„€ú}x€@0 -sa„€ú}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄwa„È7žG†È7˜€.Äwa„€ú}xmd1_raid1'þ~a„€ú}xmd1_raid11>„a„md1_raid1(»ˆa„€ú}xmd1_raid1'—a„€ú}xmd1_raid11›a„md1_raid1(‘a„€ú}xmd1_raid1>«a„md1_raid1ßV›T M·a„md1_raid1kworker/0:1#?f„! f„& f„€ú}x*’f„kworker/5:1b(x"ð$f„4)f„kworker/0:1kworker/5:1b(#5.f„!©/f„&ë2f„€ú}x*"¸Jf„Pf„kworker/5:1b(24ÌMíQf„kworker/5:0/&xXf„kworker/5:1b(@_ÔMÒZf„kworker/5:1b(kworker/5:0/&°^f„kworker/5:0/&«YžM1ef„kworker/5:0/&kworker/0:1#Ñ’„#ߨ’„!ÍÛ’„gá’„ltt-kconsumerd2åä’„ltt-kconsumerd2x"­ì’„!èí’„""ö’„ú’„kworker/0:1ltt-kconsumerd2k“„Ä“„ö0'“„)“„ö€@ŽK=¿Ÿ*“„”,“„HŽK=¿I8“„G:“„ °u“„qx“„ -ð€“„€0 ltt-kconsumerdI‹“„md1_raid1§““„Û•“„öo˜“„£š“„ö}œ“„Bž“„ö€@ŽK=¿›Ÿ“„{¡“„HŽK=¿s©“„S«“„†Õ“„Ø“„€-©ß“„À0 ltt-kconsumerd5ó“„<õ“„pyú“„Sü“„Ýp”„Ýü”„ö' ”„Z ”„°Ä@ ÿÿÿÿÿÿÿÿ°”„ltt-kconsumerd2ë4¦ºMY#”„ltt-kconsumerd2kworker/0:1æb™„ahci#“m™„ [o™„Ãp™„uhci_hcd:usb3 @u™„¥v™„eth1 L{™„!~™„&[™„€:~x*"é’™„#c™„!²ž™„&\£™„€:~x*"-´™„#5ö„!v÷„&šú„€z~x*õ ž„kworker/5:0/&x"¶ž„lž„kworker/0:1kworker/5:0/&Ÿž„kworker/5:0/&²A M%'ž„kworker/5:0/&kworker/0:1#Ú´Å„!ֻń"ªÀÅ„#@Šø„!õ•ø„"ï›ø„#Sn+…#Yq+…!6s+…"Ûv+…!Èw+…";ƒ+…#qI^…!ÑO^…"ŽS^…#«&‘…#B)‘…!I+‘…"r/‘…!w0‘…"$;‘…#'ýÃ…!ç Ä…"ÎÄ…#Úö…#èãö…!Ôåö…"aéö…!fêö…"‡öö…#O­†!¯†&¾³†€ú~x*"Ɔ#‘Ô†!çÕ†&LÚ†€ú~x*"-ó†#qí†!úî†&!ò†€:x*"þ†#¢†!ø†&݆€:x*"Í)†žá†ahci#2í† îî†wð†uhci_hcd:usb3 îô†8ö†eth1 âú†!ý†&ùþ†€2}x*ç †kworker/5:0/&x#“†"_†!š†&i†€2}x*"§8†!=†kworker/0:1kworker/5:0/&ØC†kworker/5:0/&k7¬×MÁüÁõ©‹à‡îØF²ÿbÊ™HŽF†È7S2^ŠÈ7ð€F†kworker/5:1b(xEO†kworker/5:0/&v "ãMÓQ†kworker/5:0/&kworker/5:1b(¨U†kworker/5:1b(x’Mm]†kworker/5:1b(kworker/0:1#˼)†!Ã)†¨Ê)†ltt-kconsumerd2àÎ)†ltt-kconsumerd2x"]Ö)†®Ù)†kworker/0:1ltt-kconsumerd2£*†§*†ö *†“ *†ö€@ŽK=¿õ *†ä*†HŽK=¿\*†H*†àR*†}U*†-Þ]*†È0 ltt-kconsumerd9o*†aq*†€ùu*† x*†Ý€·*†Ý¾ƒ*†öÑ…*†éˆ*†°Ä@ ÿÿÿÿÿÿÿÿµ•*†ltt-kconsumerd2>ÇÍm»M*¡*†ltt-kconsumerd2kworker/0:1#¢÷.†!jù.†&þ.†€‚~x*A/†kworker/5:1b(x"v/†"/†kworker/0:1kworker/5:1b((/†kworker/5:1b(½ŠhM//†kworker/5:1b(kworker/0:1#g•\†#1ž\†! ¡\†"¥\†!¡¦\†"+³\†#¬p†!Q{†"¢†#ÙL†#ˆU†!wW†"[†!\†"^g†#•2õ†!Ï7õ†"à;õ†#(‡# (‡!‘(‡"(‡!(‡" #(‡#ïãZ‡!CîZ‡"ròZ‡#9À‡#¸Ë‡!³Í‡"dч!WÒ‡"ˆÝ‡#ûœÀ‡!ô©À‡"´­À‡#Ûyó‡#Y„ó‡!-†ó‡")Šó‡!4‹ó‡"ô”ó‡#W&ˆ!.`&ˆ"Wd&ˆ#:4Yˆ#=Yˆ!ô>Yˆ"öBYˆ!æCYˆ"WNYˆ#WŒˆ!hŒˆ"v"Œˆ#½í¾ˆ#hø¾ˆ!Tú¾ˆ"hþ¾ˆ!Uÿ¾ˆ" ¿ˆ#…Êñˆ![Öñˆ"Úñˆ#:¨$‰#‰³$‰!ðµ$‰"ȹ$‰!»º$‰"ˆÃ$‰#¨‹W‰!ãW‰"‚“W‰#ghЉ#älЉ!ÓnЉ"sЉ!õsЉ"^}Љ#K“‰!¼”‰& š‰€‚}x*^­‰kworker/5:1b(x"ô¶‰#載!‰¾‰&ñ‰€‚}x*"|à‰™ä‰kworker/0:1kworker/5:1b(êê‰kworker/5:1b(Ó>]§Mëì‰kworker/5:0/&xîò‰kworker/5:1b(I¦¯MCõ‰kworker/5:1b(kworker/5:0/&ù‰kworker/5:0/&ëXMÎÿ‰kworker/5:0/&kworker/0:1#(?½‰!îI½‰"pO½‰#ð‰!è$ð‰"S,ð‰#Lþ"Š##Š!#Š"Ø#Š!Å #Š"¦#Š#ÔUŠ!†àUŠ"=äUŠȬVŠmd1_raid1xf±VŠkworker/0:1md1_raid13¸VŠ€zx€À‚0 -“ºVŠ€zxmd1_raid1.ÁVŠ€zxmd1_raid10ßÄVŠmd1_raid13 ÇVŠ€zx€À‚0 -)ÉVŠ€zxmd1_raid1.ªÌVŠ€zxmd1_raid1'0ÑVŠ€zxmd1_raid11 ×VŠmd1_raid1(dÜVŠ€zxmd1_raid1'ÇëVŠ€zxmd1_raid11ÞïVŠmd1_raid1(~òVŠ€zxmd1_raid1ýWŠmd1_raid1U_ÂMp WŠmd1_raid1kworker/0:1#Û[Š!m[Š&T![Š€zx* 0[Škworker/5:0/&x"X8[Ѝ<[Škworker/0:1kworker/5:0/&$B[Škworker/5:0/&lMùH[Škworker/5:0/&kworker/0:1#/^ŠÁüÁõ©‹à‡îØF²ÿbÊ™HŽè0^ŠÈ7:ÖQÈ7`€!è0^Š&7^Š€zx*—J^Škworker/5:0/&x"€R^ŠV^Škworker/0:1kworker/5:0/& \^Škworker/5:0/&Z\~MÙb^Škworker/5:0/&kworker/0:1#¶²ˆŠ#ºˆŠ!¿ˆŠ·ÃˆŠltt-kconsumerd2MLjŠltt-kconsumerd2x" ÎˆŠ!ÀψŠ"¤ÙˆŠs݈Škworker/0:1ltt-kconsumerd2[õˆŠWùˆŠöiüˆŠFþˆŠö€@ŽK=¿«ÿˆŠš‰ŠHŽK=¿à ‰ŠÌ ‰ŠX4‰Š 7‰Š -ž?‰ŠÐ0 ltt-kconsumerd4I‰Šmd1_raid1tQ‰Š~S‰ŠéW‰ŠêY‰ŠÝ«b‰ŠÝ d‰Šö¼f‰Š¤i‰Š°Ä@ ÿÿÿÿÿÿÿÿÂu‰Šltt-kconsumerd2º®‡¼MP~‰Šltt-kconsumerd2kworker/0:1d™Šahci#M¤Š ̬Š@®Šuhci_hcd:usb3 Õ²Š1´Šeth1 ︊!¼»Š&¬¿Š€Š~x*ÞÏŠkworker/5:0/&x&äÛŠ€Š~x*"œðŠ4õŠkworker/0:1kworker/5:0/&XûŠkworker/5:0/&^,å-MeýŠkworker/5:1b(x›ŽŠkworker/5:0/&sX6MŽŠkworker/5:0/&kworker/5:1b(Â ŽŠkworker/5:1b('®M‹ŽŠkworker/5:1b(kworker/0:1#p˜»Š!‚ž»Š"_£»Š#ÙjîŠ#BtîŠ!—vîŠ"ó}îŠ!îŠ"4ˆîŠ#íH!‹!òS!‹"!X!‹#,$T‹#j/T‹!t1T‹"@5T‹!36T‹"?T‹#°dY‹!„¯@„Ý fJ„ÝFL„öPN„Q„°Ä@ ÿÿÿÿÿÿÿÿ€]„ltt-kconsumerd2£¤*Á¼M¿i„ltt-kconsumerd2kworker/0:1#® ˆ!”¢ˆ&Y§ˆ€’~x*kworker/5:0/&x+¿ˆahci#þʈ Ï̈^Έuhci_hcd:usb3 êÒˆ4Ôˆeth1 íØˆ"$áˆ!Gâˆ&›åˆ€’~x*"ãúˆBÿˆkworker/0:1kworker/5:0/&™‰kworker/5:0/&tOžõM¾‰kworker/5:1b(xQ‰kworker/5:0/&ÜzþMމkworker/5:0/&kworker/5:1b(l‰kworker/5:1b(-W¬M¿‰kworker/5:1b(kworker/0:1#€¶# ж!¶"7’¶!N“¶"Ÿœ¶#s[é!sgé"né#g?Ž#ÉCŽ!¾EŽ"çIŽ!éJŽ"FTŽ#óOŽ!R OŽ"Š$OŽ#êñŽ#ûŽ!‚ýŽ"N‚Ž!P‚Ž"† ‚Ž#GдŽ!,Ù´Ž"ÅÜ´Ž#ÿªçŽ#гçŽ!|µçŽ"ð¹çŽ!àºçŽ"4ÄçŽ#å‡!¹“"—#YeM#¾oM!ßrM" wM! xM"}€M#êA€!5L€"šP€#è³#+³!>-³"ì0³!Ö1³"…:³#dûå!Oæ"; æ#Ø#Já!0ã";ç!+è"˜ð#ë´K!¦ÀK"ÉÄK#C’~!¹›~"< ~#ôn±#Lw±!}y±"F}±!6~±"놱#”Kä!ßUä"\Zä#©”é!M–é&Gœé€~x*€®ékworker/5:1b(x"à·é3¼ékworker/0:1kworker/5:1b(Âékworker/5:1b(‡ÞÁMbÉékworker/5:1b(kworker/0:1#)‘#`1‘!*4‘"s9‘!u:‘"EC‘#ÑJ‘!<J‘"ŸJ‘«µJ‘md1_raid1x@ºJ‘kworker/0:1md1_raid13©ÀJ‘€Šx€Ð‚0 -(ÃJ‘€Šxmd1_raid1.åÉJ‘€Šxmd1_raid10HÍJ‘md1_raid13:ÏJ‘€Šx€Ð‚0 -DÑJ‘€Šxmd1_raid1.³ÔJ‘€Šxmd1_raid1'ÙJ‘€Šxmd1_raid11©ÞJ‘md1_raid1(ÔãJ‘€Šxmd1_raid1'7ðJ‘€Šxmd1_raid119ôJ‘md1_raid1(6÷J‘€Šxmd1_raid16K‘md1_raid16NOMÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‘ K‘È7!Àª”È7ð€‘ K‘md1_raid1kworker/0:1#û!O‘!´#O‘&‰'O‘€Šx*Ì5O‘kworker/5:1b(x"9>O‘zBO‘kworker/0:1kworker/5:1b(5HO‘kworker/5:1b(V4ÕMªNO‘kworker/5:1b(kworker/0:1#›TO‘!VO‘&WYO‘€Šx*OmO‘kworker/5:1b(x"ÞtO‘ìxO‘kworker/0:1kworker/5:1b(~O‘kworker/5:1b(‚¶æMe„O‘kworker/5:1b(kworker/0:1#Ùç|‘#ì|‘!Gï|‘Ðó|‘ltt-kconsumerd2c÷|‘ltt-kconsumerd2x"•þ|‘!Êÿ|‘"] }‘ö }‘kworker/0:1ltt-kconsumerd2î#}‘'}‘ö*}‘ò+}‘ö€@ŽK=¿B-}‘./}‘HŽK=¿¹7}‘®9}‘V}‘)‚}‘À-ðŠ}‘è0 ltt-kconsumerdƒ”}‘md1_raid1óœ}‘ Ÿ}‘°õ£}‘ê¥}‘ݰ)¯}‘ݱ}‘ö4³}‘4¶}‘°Ä@ ÿÿÿÿÿÿÿÿ‹Â}‘ltt-kconsumerd2|˦Œ½MòÊ}‘ltt-kconsumerd2kworker/0:1#îö‘!×ø‘#+ÿ‘&Ó‚‘€¢~x*Û‚‘kworker/5:1b(x"‚‘!K‚‘&$‚‘€¢~x*"—8‚‘P=‚‘kworker/0:1kworker/5:1b(SC‚‘kworker/5:1b(M1ó¢M]E‚‘kworker/5:0/&xK‚‘kworker/5:1b(dW«M¸M‚‘kworker/5:1b(kworker/5:0/&fQ‚‘kworker/5:0/&ß…wMkX‚‘kworker/5:0/&kworker/0:1#%ȯ‘!Íί‘"%Ô¯‘#Ÿ›â‘#}©â‘!i«â‘"g³â‘!¥´â‘"½½â‘#†x’!ƒ’"5‡’#¶UH’#pcH’!(fH’"jH’!kH’"ÃsH’#B2{’!ù<{’"ª@{’#É®’!{®’""®’#ìà’#ò÷à’!)úà’"þýà’!îþà’"J á’#É“!³Ò“" Ú“#U¬F“#â¯F“!ø±F“"¶F“!·F“"<ÂF“#*‚y“!@y“"‘y“#Ÿ_¬“#Dj¬“!rl¬“"hp¬“!Xq¬“"¾z¬“#¶;ß“!ËEß“" Iß“#ç›ä“!^ä“&U£ä“€Š}x*¨¶ä“kworker/5:0/&x#ìÀä“"Åä“!MÆä“&CÊä“€Š}x*"/æä“mêä“kworker/0:1kworker/5:0/&Xðä“kworker/5:0/&;‰²Mtòä“kworker/5:1b(xhøä“kworker/5:0/&FϺMºúä“kworker/5:0/&kworker/5:1b(wþä“kworker/5:1b(r±Mˆå“kworker/5:1b(kworker/0:1#ì ”#¦$”!!(”"v-”!.”"8”#<üD”!ÔE”"'E”#jÒw”!ãÝw”"$âw”®K}”ahci#îV}” ÂX}”HZ}”uhci_hcd:usb3 é^}”6`}”eth1 ïd}”!Mg}”&¿j}”€B~x*Â|}”kworker/5:1b(x#ˆƒ}”"9Š}”!•‹}”&}”€B~x*"«}”S¯}”kworker/0:1kworker/5:1b()µ}”kworker/5:1b(W9ÉêM!·}”kworker/5:0/&x½}”kworker/5:1b(âòMR¿}”kworker/5:1b(kworker/5:0/& Ã}”kworker/5:0/& ØÀMÃÉ}”kworker/5:0/&kworker/0:1#·ª”#몔ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÅ¾ª”È7êf¦—È7ø~€!žª”"sѪ”!~Òª”"Dܪ”Üa«”md1_raid1x¶f«”kworker/0:1md1_raid13(m«”€ª~x€ð0 -¶o«”€ª~xmd1_raid1.Âu«”€ª~xmd1_raid10[y«”md1_raid13h{«”€ª~x€ð0 -“}«”€ª~xmd1_raid1.2«”€ª~xmd1_raid1'…«”€ª~xmd1_raid11ƒŠ«”md1_raid1(jŽ«”€ª~xmd1_raid1'÷𫔀ª~xmd1_raid11cž«”md1_raid1(. «”€ª~xmd1_raid1C¬«”md1_raid1 KÿjMM´«”md1_raid1kworker/0:1Ì«”md1_raid1xfÑ«”kworker/0:1md1_raid13ôÖ«”€’x€Ø‚0 -+Ù«”€’xmd1_raid1.jß«”€’xmd1_raid10yâ«”md1_raid13Aä«”€’x€Ø‚0 -`æ«”€’xmd1_raid1.½é«”€’xmd1_raid1'Âí«”€’xmd1_raid11ò«”md1_raid1(Kõ«”€’xmd1_raid1'𬔀’xmd1_raid11>¬”md1_raid1(?¬”€’xmd1_raid1J¬”md1_raid1FDE¯M÷¬”md1_raid1kworker/0:1#¦z±”!D|±”&€±”€ª~x*"Å”±”#¨_µ”!+aµ”&Keµ”€’x*ðqµ”kworker/5:0/&x"*zµ”G~µ”kworker/0:1kworker/5:0/&)„µ”kworker/5:0/&ç¿ÓM㊵”kworker/5:0/&kworker/0:1#ÓÙµ”!PÛµ”&qÞµ”€’x*±ïµ”kworker/5:0/&x"‚÷µ”‡ûµ”kworker/0:1kworker/5:0/&è¶”kworker/5:0/&¬kåM`¶”kworker/5:0/&kworker/0:1#þ”Ý”!þšÝ”"®ŸÝ”#zi•!ds•"­{•#@GC•#(QC•!’SC•"…WC•!uXC•"+cC•##v•!ô/v•"´3v•#>ÿ¨•# ©•!ò ©•"ý©•!ÿ©•"ô©•#—ãÛ•!éÛ•"!íÛ•#Ò¿–#ÈÖ!Æ–":Ê–!<Ë–"¹Õ–#L–A–!éŸA–"ߣA–m‡B–md1_raid1x’ŒB–kworker/0:1md1_raid13O•B–€Bx€ˆ‚0 -¡—B–€Bxmd1_raid1.VB–€Bxmd1_raid10Ú B–md1_raid13£B–€Bx€ˆ‚0 -á¥B–€Bxmd1_raid1.5©B–€Bxmd1_raid1'“®B–€Bxmd1_raid11î³B–md1_raid1(û¸B–€Bxmd1_raid1'JÇB–€Bxmd1_raid111ËB–md1_raid1(@ÎB–€Bxmd1_raid1/ÜB–md1_raid1ßV$M­èB–md1_raid1kworker/0:1#ð G–! G–&3G–€Bx*D G–kworker/5:0/&x")G–X-G–kworker/0:1kworker/5:0/&#õ2G–!T4G–&ñ6G–€Bx*‘NG–kworker/5:0/&/MqPG–kworker/5:1b(x"ôWG–»]G–kworker/5:0/&<½#M‚`G–kworker/5:0/&kworker/5:1b(6dG–kworker/5:1b(cùM“jG–kworker/5:1b(kworker/0:1#ïzt–#9t–!ôt–"»‡t–!Èt–"¼’t–#/Q§–!\§–"fc§–#×,Ú–#À8Ú–!Á:Ú–"?Ú–!@Ú–" JÚ–#3 —!q —"( —#¥æ?—!Xñ?—"`õ?—#zÅr—#kÑr—!¨Ór—"×r—!|Ør—"¦ár—#ÉŸ¥—!Ä«¥—"ö¯¥—‘_¦—md1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽ…e¦—È7zÑ™È78€…e¦—kworker/0:1md1_raid13q¦—€Ê}x€0 -ƒs¦—€Ê}xmd1_raid1.)y¦—€Ê}xmd1_raid10³|¦—md1_raid13>¦—€Ê}x€0 -¦—€Ê}xmd1_raid1.䄦—€Ê}xmd1_raid1' ‰¦—€Ê}xmd1_raid111¦—md1_raid1(Ó¦—€Ê}xmd1_raid1'°¥¦—€Ê}xmd1_raid11'ª¦—md1_raid1(­¦—€Ê}xmd1_raid1Ù»¦—md1_raid1}^¡dMÖǦ—md1_raid1kworker/0:1w§—md1_raid1x6§—kworker/0:1md1_raid13+$§—€²~x€ø0 -n&§—€²~xmd1_raid1.¨+§—€²~xmd1_raid10­/§—md1_raid13b2§—€²~x€ø0 -~4§—€²~xmd1_raid1.58§—€²~xmd1_raid1''=§—€²~xmd1_raid11€A§—md1_raid1(ÈD§—€²~xmd1_raid1'hP§—€²~xmd1_raid11õS§—md1_raid1(öU§—€²~xmd1_raid1c§—md1_raid1åM†²Mk§—md1_raid1kworker/0:17*¬—ahci#I3¬— 5¬—¸6¬—uhci_hcd:usb3 P;¬—©<¬—eth1 VA¬—!D¬—&,G¬—€Ê}x*"+W¬—#ua¬—!Úb¬—&Ae¬—€Ê}x*" {¬—#·°—!p¸°—&X»°—€²~x*½Ñ°—kworker/5:1b(x"šÙ°—Þ°—kworker/0:1kworker/5:1b(;ä°—kworker/5:1b(M° Møê°—kworker/5:1b(kworker/0:1#T„Ø—#ÿ‡Ø—!·ŠØ—"rØ—!w‘Ø—"ô›Ø—#ÚY ˜!^d ˜"Uj ˜#"8>˜#Õ@>˜!TC>˜"MG>˜!OH>˜"þP>˜#²q˜!àq˜" #q˜#ð£˜#…ü£˜!Xÿ£˜"ý¤˜!í¤˜"%¤˜#2ÍÖ˜!ÞØÖ˜"áÞÖ˜šï™bash1xìô™kworker/0:1bash1÷ ™€™°n gMûo"™bash1¹4Û™)M_$™kworker/5:1b(x‹(™bash1x×-™R7™à]n`^n¶9™A<™T5-ÿ`Sn^@™GB™TÀ5-ÿÀ5-ÿ`SnwJ™BL™TÀ5-ÿÀ5-ÿ`Sn¾N™Q™`^n`Sn¢R™HU™ à4-ÿ@4-ÿ5-ÿˆW™ zY™ à4-ÿ@4-ÿ5-ÿôZ™ Ñ\™ à4-ÿ@4-ÿ5-ÿ!^™ û_™ à4-ÿ@4-ÿ5-ÿTa™ .c™ à4-ÿ@4-ÿ5-ÿ®d™ ˆf™ à4-ÿ@4-ÿ5-ÿÞg™ µi™ à4-ÿ@4-ÿ5-ÿk™ Nm™ à4-ÿ@4-ÿ5-ÿ§n™ Dq™ @4-ÿ 3-ÿð4-ÿ—r™ X„™¨qnr…™LJ™ PD-ÿ°C-ÿE-ÿ ‰™ ”Æ™°5-ÿ05-ÿ‰È™Ê™ÿT5-ÿäÍ™ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ Ð™È7.p2ŸÈ7Ѐ Й05-ÿnÔ™´Ö™ @4-ÿ 3-ÿð4-ÿIØ™ #§« ™µ ™bash1Ñž++M#· ™!D» ™"’Í ™!ŽÎ ™"tÐ ™r ™à]n`^n² ™ï ™T05-ÿù ™Ä ™T05-ÿì ™ ™TÐ4-ÿà5-ÿ5 ™ñ ™TÀ4-ÿà5-ÿj ™2 ™Tð4-ÿð4-ÿà5-ÿž! ™W# ™Tð4-ÿð4-ÿà5-ÿÁ% ™"( ™`^ngMûo) ™î+ ™@XnÀWngMûoY- ™º/ ™  2-ÿ2-ÿð3-ÿd1 ™ ¹3 ™  2-ÿ2-ÿð3-ÿ5 ™ é6 ™ 4-ÿp3-ÿÀ4-ÿB8 ™ d: ™  2-ÿ2-ÿð3-ÿ¥; ™ …= ™ 4-ÿp3-ÿÀ4-ÿØ> ™ Ä@ ™ p3-ÿÐ2-ÿÀ4-ÿB ™ *D ™  2-ÿ2-ÿð3-ÿzE ™ WG ™ 4-ÿp3-ÿÀ4-ÿªH ™ ±J ™  2-ÿ2-ÿð3-ÿ@L ™ ;N ™ 4-ÿp3-ÿÀ4-ÿŽO ™ ›Q ™  2-ÿ2-ÿð3-ÿëR ™ ÈT ™ 4-ÿp3-ÿÀ4-ÿV ™ ÔW ™ÀWnÀ4-ÿY ™+[ ™  2-ÿ2-ÿð3-ÿŠ\ ™ _ ™à]n`^nt` ™ut ™°n$gMûoÿÿÿÿë| ™bash1x‹‚ ™$… ™`^ngMûoÿÿÿÿ]† ™yˆ ™tngMûo‰ ™«Œ ™ï5-ÿgMûo˜ ™bash1©ãG,MËœ ™bash1kworker/5:1b(v± ™kworker/5:1b(ø¨&M¸À ™kworker/5:1b(kworker/0:1ZŒ™ahci Åœ™rž™uhci_hcd:usb3 F£™¤™eth1 :©™#4Ž<™!•<™";œ<™#¨co™!ªno™"¨so™#åG¢™!©M¢™"ƒR¢™#Õ™!/&Õ™"j*Õ™#«ùš!°š"£ š#eß:š!äã:š" è:š#¶³mš!¾mš"ØÂmš#ò š!—™ š"! š#ËlÓš!ßzÓš"À~Óš#tQ›! V›"íY›¸n›ahci +}›œ~›uhci_hcd:usb3 ƒ›Ò„›eth1 y‰›#0'9›!¸59›"&:9›#[l›!ôl›"l›#ªàž›!Xëž›"zïž›# ½Ñ›!ÈÑ›"‹ÌÑ›#8šœ!¹£œ"ާœ#5w7œ!‚7œ"z‡7œ#'Tjœ!^jœ"@cjœ#D0œ!È9œ"Ä=œ#> М!lМ"М#«ñ!÷"û#RÇ5!yÑ5"Õ5#ªh!ï®h"ʲh#‹€›!BŽ›"D’›# ^Î!kÎ"NoÎ#E:ž!EDž"GHž#W4ž!©#4ž"Õ'4ž#ìófž!ýfž"ëgž#>Ñ™ž!Eà™ž"j䙞#…°Ìž!x»Ìž"@ÀÌžyØÑžahci çÑžuèÑžuhci_hcd:usb3 æìÑžîÑžeth1 ÑòÑž##‹ÿž!¿”ÿž"s›ÿžÁüÁõ©‹à‡îØF²ÿbÊ™HŽÏg2ŸÈ7{â‘¢È7P~€#Ïg2Ÿ!w2ŸÒ}2Ÿltt-kconsumerd20ƒ2Ÿltt-kconsumerd2x"4‹2ŸëŽ2Ÿkworker/0:1ltt-kconsumerd2Ôº2Ÿ\À2ŸöÄ2ŸäÅ2Ÿö€@ŽK=¿pÇ2ŸŒÉ2ŸHŽK=¿ÐÖ2ŸàØ2ŸÃ3Ÿ«"3Ÿ-¶+3Ÿ‚0 ltt-kconsumerd|D3ŸéF3Ÿð±K3Ÿ²M3ŸÝðË[3ŸÝÛ]3Ÿö*`3Ÿíc3Ÿ°Ä@ ÿÿÿÿÿÿÿÿ¼p3Ÿltt-kconsumerd2>îäz¾M ~3Ÿltt-kconsumerd2kworker/0:1#žMeŸ!îTeŸ" ZeŸ#ð)˜Ÿ!r/˜Ÿ"ò3˜Ÿ#ÔËŸ!# ËŸ"Ñ ËŸ#$ÛýŸ!œèýŸ"VìýŸ#S·0 !Á0 "¹Ç0 #èšc !]¡c "5¥c #£q– !~– "Þ‚– #wNÉ !†XÉ "\É #4ü !õ8ü "=ü …Z¡ahci Vk¡Ðl¡uhci_hcd:usb3 qq¡¸r¡eth1 hw¡# /¡!V/¡"/¡#(åa¡!ða¡"qôa¡#Á”¡!Í”¡"Ñ”¡#žÇ¡!ð©Ç¡"µ®Ç¡#M{ú¡!)ˆú¡" Œú¡#BX-¢!²a-¢">f-¢#¹4`¢!??`¢"äB`¢Óý¢bash1x¢kworker/0:1bash1&¢¢¢°n gMûoæ&¢bash1,H;,M5)¢kworker/5:1b(x=-¢bash1xJ2¢è8¢à]n`^n;¢€=¢T5-ÿ`SnRA¢>C¢TÀ5-ÿÀ5-ÿ`Sn»J¢‰L¢TÀ5-ÿÀ5-ÿ`SnO¢ Q¢`^n`Sn€R¢·T¢ à4-ÿ@4-ÿ5-ÿjV¢ SX¢ à4-ÿ@4-ÿ5-ÿµY¢ ’[¢ à4-ÿ@4-ÿ5-ÿî\¢ Ë^¢ à4-ÿ@4-ÿ5-ÿ'`¢ b¢ à4-ÿ@4-ÿ5-ÿ{c¢ Xe¢ à4-ÿ@4-ÿ5-ÿ«f¢ …h¢ à4-ÿ@4-ÿ5-ÿÒi¢ Ák¢ à4-ÿ@4-ÿ5-ÿm¢ o¢ @4-ÿ 3-ÿð4-ÿÑp¢ z¢¨qn0{¢|}¢ PD-ÿ°C-ÿE-ÿØ~¢ ±´¢°5-ÿ05-ÿˆ¶¢ƒ¸¢ÿT5-ÿž»¢ƽ¢05-ÿ"¿¢kÁ¢ @4-ÿ 3-ÿð4-ÿ â Б¢à]n`^n_Ñ‘¢iÓ‘¢T05-ÿÕ‘¢ØÖ‘¢T05-ÿÍØ‘¢ÝÚ‘¢TÐ4-ÿà5-ÿÅÝ‘¢ÁüÁõ©‹à‡îØF²ÿbÊ™HŽá‘¢È7 š¢È7ø€á‘¢TÀ4-ÿà5-ÿŒæ‘¢Qè‘¢Tð4-ÿð4-ÿà5-ÿî‘¢Rð‘¢Tð4-ÿð4-ÿà5-ÿÂò‘¢#õ‘¢`^ngMûo‘ö‘¢qø‘¢@XnÀWngMûoßù‘¢7ü‘¢  2-ÿ2-ÿð3-ÿÉý‘¢ ’¢  2-ÿ2-ÿð3-ÿ_’¢ Q’¢ 4-ÿp3-ÿÀ4-ÿ°’¢ Ï’¢  2-ÿ2-ÿð3-ÿ’¢ í ’¢ 4-ÿp3-ÿÀ4-ÿ= ’¢ , ’¢ p3-ÿÐ2-ÿÀ4-ÿs’¢ ’¢  2-ÿ2-ÿð3-ÿå’¢ ¿’¢ 4-ÿp3-ÿÀ4-ÿ’¢ ’¢  2-ÿ2-ÿð3-ÿ`’¢ =’¢ 4-ÿp3-ÿÀ4-ÿ’¢ ”’¢  2-ÿ2-ÿð3-ÿØ’¢ µ ’¢ 4-ÿp3-ÿÀ4-ÿÿ!’¢ Á#’¢ÀWnÀ4-ÿ %’¢ '’¢  2-ÿ2-ÿð3-ÿh(’¢ á*’¢à]n`^nF,’¢+>’¢°n$gMûoÿÿÿÿÍD’¢bash1xFJ’¢$¡L’¢`^ngMûoÿÿÿÿ÷M’¢P’¢tngMûo*Q’¢ÊS’¢ï5-ÿgMûoòX’¢bash1á1)m.M\’¢bash1kworker/5:1b(€p’¢kworker/5:1b(ëÏwMÑ|’¢kworker/5:1b(kworker/0:1#g“¢!"“¢)“¢ltt-kconsumerd2Z.“¢ltt-kconsumerd2x"7“¢¤;“¢kworker/0:1ltt-kconsumerd2Tg“¢m“¢öÞy“¢Ð{“¢ö€@ŽK=¿•}“¢ü“¢HŽK=¿@“¢_“¢~Ó“¢?Ö“¢`-ß“¢ð€0 ltt-kconsumerdú“¢%ü“¢P ”¢”¢ÝP“”¢Ý ”¢ö ”¢1”¢ö¼”¢~”¢ö€@ŽK=¿È”¢¤!”¢HŽK=¿Ð+”¢È-”¢AZ”¢,]”¢-µd”¢‚0 ltt-kconsumerdÍy”¢R|”¢Ò€”¢£‚”¢ÝB”¢ÝL‘”¢ö•“”¢—”¢°Ä@ ÿÿÿÿÿÿÿÿ¦”¢ltt-kconsumerd2Px4ó¿MO²”¢ltt-kconsumerd2kworker/0:1(ú™¢ahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽá š¢È70[¬È7(~€ á š¢¹š¢uhci_hcd:usb3 <š¢‰š¢eth1 6š¢#¹ïÅ¢!výÅ¢§Æ¢ltt-kconsumerd2x"¾ Æ¢›Æ¢kworker/0:1ltt-kconsumerd2_"Æ¢‰%Æ¢öÉ'Æ¢‘)Æ¢ö€@ŽK=¿ù*Æ¢Ö,Æ¢HŽK=¿Ú4Æ¢Õ6Æ¢¥`Æ¢cÆ¢ -ilÆ¢‚0 ltt-kconsumerdˆ†Æ¢›ˆÆ¢ЌƢ•ŽÆ¢ÝbšÆ¢ÝWœÆ¢ö‘žÆ¢7¡Æ¢°Ä@ ÿÿÿÿÿÿÿÿ4­Æ¢ltt-kconsumerd2*«^žÀMg¹Æ¢ltt-kconsumerd2kworker/0:1#½Óø¢!wÚø¢"#àø¢#c¨+£!Z±+£"!·+£Ó¹0£ahci eÊ0£ÊË0£uhci_hcd:usb3 _Ð0£¦Ñ0£eth1 YÖ0£#¨…^£!-’^£"%—^£#wa‘£!Çi‘£"_n‘£#á>Ä£!lGÄ£"yOÄ£#9÷£!I&÷£"ö*÷£#+ÿ)¤! *¤"*¤#áÔ\¤!Èß\¤"ýã\¤#α¤!÷»¤"翤#$¤!ª›Â¤"CŸÂ¤#Àkõ¤!6xõ¤"8|õ¤#CH(¥!ªS(¥"7W(¥#m%[¥!M0[¥"ì3[¥#YŽ¥!µ Ž¥"/Ž¥#!ßÀ¥!wêÀ¥"SðÀ¥#D¼ó¥!Æó¥"Êó¥#º˜&¦!Æ¢&¦"Ѧ&¦#»uY¦!Y¦"ŸƒY¦#RŒ¦!·^Œ¦"˜bŒ¦#¿0¿¦!Ý<¿¦"Ö@¿¦# ò¦!ãò¦"!ò¦#Ué$§!ô$§"œ÷$§#]ÅW§!åÑW§"ÀÕW§#\¢Š§!ɭЧ"¶±Š§#½§!"н§"[½§îÀ§ahci ˆÏ§óЧuhci_hcd:usb3 vÕ§¥Ö§eth1 [Û§#Fbð§#ùfð§!ið§"ìmð§!înð§"zð§#¶8#¨!úB#¨"}G#¨#zV¨#ä#V¨!T&V¨"ƒ*V¨!p+V¨"¬4V¨#üˆ¨!"¬‰¨#>Ñ»¨#Ý»¨!Oß»¨"$㻨!&仨"Pí»¨#P³î¨!»·î¨"r»î¨#Óˆ!©#”!©!Š–!©"Ëš!©!¸›!©"©¤!©#ÂeT©!UpT©"tT©#8I‡©#N‡©!øO‡©"ÇS‡©!´T‡©"^‡©#ú©!Ì(º©",º©#²üì©#¯í©!sí©"Q í©!Y í©"fí©#Ùª!äª"èª#æµRª#×¾Rª!ÃÀRª"zÄRª!|ÅRª"4ÎRª#I“…ª!8Ÿ…ª"“¤…ª#Pw¸ª#ûz¸ª!Û|¸ª"ª€¸ª!—¸ª" ‹¸ª#¯Lëª!êVëª"ÎZëª#%)«#93«!5«"$9«!:«"‰C«#1Q«!Q«"íQ«#É탫#ûñƒ«!êóƒ«"é÷ƒ«!Ùøƒ«"ê„«#®¿¶«!õɶ«"ζ«#ùœé«!F¨é«"·¬é«å÷¬bash1x þ¬kworker/0:1bash1e¬ó¬°n gMûo!¬bash1,9™.M#¬kworker/5:1b(xC'¬bash1xq,¬F3¬à]n`^n\5¬Ï7¬T5-ÿ`Sn•;¬„=¬TÀ5-ÿÀ5-ÿ`Sn@E¬G¬TÀ5-ÿÀ5-ÿ`Sn™I¬©K¬`^n`Sn,M¬oO¬ à4-ÿ@4-ÿ5-ÿ"Q¬ S¬ à4-ÿ@4-ÿ5-ÿˆT¬ hV¬ à4-ÿ@4-ÿ5-ÿÁW¬ ÁüÁõ©‹à‡îØF²ÿbÊ™HŽZ¬È7Ñô¬È7ЀZ¬ à4-ÿ@4-ÿ5-ÿå]¬ Ë_¬ à4-ÿ@4-ÿ5-ÿ$}¯#+.}¯!¿0}¯"5}¯!)6}¯"7@}¯#Ó°¯!é °¯"®°¯#Ýâ¯#†çâ¯![ëâ¯"Eïâ¯!Aðâ¯"÷â¯#¦À°!òŰ"Çɰ#˜H°#F¤H°!é¦H°"ñªH°!ä«H°"ѵH°#&t{°!›~{°"Á‚{°#îP®°#Z®°!.\®°"`®°!a®°"Éi®°#þ5á°!·:á°"•>á°#Ë ±#9±!%±"f±!q±"ì#±#sçF±ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ]ôF±È7¥–”¶È7ð~€!]ôF±DþF±ltt-kconsumerd2çG±ltt-kconsumerd2x"” G±uG±kworker/0:1ltt-kconsumerd2b:G± ?G±ö“BG±^DG±ö€@ŽK=¿öEG±HG±HŽK=¿™TG±‹VG±’G±‰”G±P-ÿœG±0‚0 ltt-kconsumerdØ·G±ºG±@P¾G±WÀG±Ý@tÍG±Ý„ÏG±öÜÑG±îÔG±°Ä@ ÿÿÿÿÿÿÿÿ†âG±ltt-kconsumerd2øßþÖÃM+ïG±ltt-kconsumerd2kworker/0:1#ïÍy±#NÒy±!QÕy±"‹Úy±!ÞÛy±"Uæy±;±ahci L%±À&±uhci_hcd:usb3 …+±Æ,±eth1 y1±#•¡¬±!€®¬±"T³¬±# ‡ß±#»Šß±!¼Œß±"aß±!Q‘ß±"œß±#ÂZ²!1j²"3n²#n7E²!´BE²"ÑFE²#xx²#X x²!¡"x²"s&x²!l'x²"Ó/x²#Ïðª²!­ýª²"«²#¾Íݲ#H×ݲ!XÙݲ"GÞݲ!Rßݲ"5çݲ#šª³!¿¶³"¼³#݇C³#F’C³!;”C³"™C³!šC³"M£C³øâH³ahci òH³óH³uhci_hcd:usb3 ï÷H³fùH³eth1 %þH³#üdv³!Npv³"Êuv³#A©³#¯L©³!‰N©³" R©³!ýR©³"Ø_©³#ܳ!z'ܳ"ú+ܳ#ü´#W´!¾ ´"í ´!ã´"´#e×A´!|äA´"ÛèA´#´t´#½t´!¯¿t´"œÃt´!ŒÄt´"ƒÍt´#†™§´!“ž§´"†¢§´#ìmÚ´#lxÚ´!zÚ´"~Ú´!†Ú´"qˆÚ´# T µ!hY µ"R] µ#ê'@µ#x1@µ!ú3@µ"J8@µ!=9@µ"ÏC@µ#h sµ!Ísµ"usµ#É᥵#uí¥µ!šï¥µ"Kó¥µ!Dô¥µ"ßþ¥µ#–¾Øµ!åÊØµ"ÞÎØµ#X› ¶#¦ ¶!¨ ¶"ñ« ¶!ä¬ ¶"¸ ¶#x>¶!Ñ>¶"Á…>¶#“Tq¶#ò^q¶!Daq¶"aeq¶!lfq¶" oq¶Ù”¶bash1xÍ”¶kworker/0:1bash1e)”¶//”¶°n gMûoX9”¶bash1[,jä0M;”¶kworker/5:1b(xÁ?”¶bash1x"E”¶ÇK”¶à]n`^nàM”¶PP”¶T5-ÿ`Sn1T”¶V”¶TÀ5-ÿÀ5-ÿ`Sn3^”¶`”¶TÀ5-ÿÀ5-ÿ`Sn§b”¶³d”¶`^n`Snf”¶—h”¶ à4-ÿ@4-ÿ5-ÿSj”¶ Hl”¶ à4-ÿ@4-ÿ5-ÿÚm”¶ ·o”¶ à4-ÿ@4-ÿ5-ÿdq”¶ ƒs”¶ à4-ÿ@4-ÿ5-ÿu”¶ "w”¶ à4-ÿ@4-ÿ5-ÿ¥x”¶ Êz”¶ à4-ÿ@4-ÿ5-ÿÅ|”¶ ð~”¶ à4-ÿ@4-ÿ5-ÿv€”¶ Œ‚”¶ à4-ÿ@4-ÿ5-ÿ„”¶ †”¶ @4-ÿ 3-ÿð4-ÿˆ”¶ •‘”¶¨qnµ’”¶ÁüÁõ©‹à‡îØF²ÿbÊ™HŽj•”¶È7F¥¶È7@~€j•”¶ PD-ÿ°C-ÿE-ÿš”¶ ¥Ï”¶°5-ÿ05-ÿ…Ñ”¶ŒÓ”¶ÿT5-ÿÝÖ”¶´Ø”¶05-ÿ:Ú”¶zÜ”¶ @4-ÿ 3-ÿð4-ÿúÝ”¶ ŠÙ•¶à]n`^n Û•¶Ý•¶T05-ÿÇÞ•¶•à•¶T05-ÿ·â•¶»ä•¶TÐ4-ÿà5-ÿÄç•¶£ê•¶TÀ4-ÿà5-ÿFí•¶ ï•¶Tð4-ÿð4-ÿà5-ÿeõ•¶`÷•¶Tð4-ÿð4-ÿà5-ÿôù•¶Iü•¶`^ngMûo½ý•¶£ÿ•¶@XnÀWngMûoS–¶Ì–¶  2-ÿ2-ÿð3-ÿj–¶ ž–¶  2-ÿ2-ÿð3-ÿ –¶ ø –¶ 4-ÿp3-ÿÀ4-ÿ„ –¶ Ù–¶  2-ÿ2-ÿð3-ÿD–¶ !–¶ 4-ÿp3-ÿÀ4-ÿ›–¶ Š–¶ p3-ÿÐ2-ÿÀ4-ÿ –¶ )–¶  2-ÿ2-ÿð3-ÿ|–¶ Y–¶ 4-ÿp3-ÿÀ4-ÿ©–¶ °–¶  2-ÿ2-ÿð3-ÿ!!–¶ þ"–¶ 4-ÿp3-ÿÀ4-ÿN$–¶ X&–¶  2-ÿ2-ÿð3-ÿÀ'–¶ š)–¶ 4-ÿp3-ÿÀ4-ÿ+–¶ Ê,–¶ÀWnÀ4-ÿV.–¶Ÿ0–¶  2-ÿ2-ÿð3-ÿ2–¶ à4–¶à]n`^nE6–¶RG–¶°n$gMûoÿÿÿÿHN–¶bash1xT–¶$IV–¶`^ngMûoÿÿÿÿáW–¶¥¶i@¥¶ö!C¥¶ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ7E¥¶È7ØYÀÈ7h€7E¥¶ö€@ŽK=¿ÊH¥¶°J¥¶HŽK=¿dT¥¶AV¥¶‚¥¶‹„¥¶`-Ž¥¶8‚0 ltt-kconsumerd¤¥¶ô¥¥¶Pÿ©¥¶Í«¥¶ÝP¸¶¥¶Ý¡¸¥¶öÒº¥¶}¾¥¶°Ä@ ÿÿÿÿÿÿÿÿ~É¥¶åË¥¶ö˜Í¥¶TÏ¥¶ö€@ŽK=¿¤Ð¥¶uÒ¥¶HŽK=¿)Ù¥¶Û¥¶·¦¶K ¦¶p-Ù¦¶@„0 ltt-kconsumerd\*¦¶f,¦¶`ß1¦¶ltt-kconsumerd2.å,¼ÅMf>¦¶ltt-kconsumerd2kworker/0:1ôæ±¶ahci ÷±¶yø±¶uhci_hcd:usb3 ý±¶Rþ±¶eth1 ü²¶#+×¶#³×¶!Ú×¶" %×¶!$&×¶"D0×¶#|ô ·!Ïø ·"õü ·#IÏ<·#WÓ<·!CÕ<·"Ù<·!Ú<·"ã<·#§o·!‹°o·">µo·#‚¢·#‡Œ¢·!¬Ž¢·"“’¢·!†“¢·"g¢·#õ^Õ·!rlÕ·"YpÕ·#&;¸#F¸!H¸"WL¸!GM¸"ãV¸#!;¸!#;¸"Ý&;¸#úöm¸#¿n¸!ón¸"æn¸!Ùn¸"Ån¸#6Ò ¸!¿ß ¸"ýã ¸# ¯Ó¸#ó¹Ó¸!¼Ó¸"ÎÀÓ¸!ÄÁÓ¸")ÌÓ¸#ò‹¹!à•¹"9š¹#Ïh9¹#óq9¹!Zt9¹"8x9¹!%y9¹"iƒ9¹#ýDl¹!'Ql¹"Vl¹#O"Ÿ¹#Ø*Ÿ¹!ë,Ÿ¹"ê0Ÿ¹!à1Ÿ¹" ;Ÿ¹#Ìÿѹ!ÃÒ¹" Ò¹#=ܺ#~éº!ìº"öïº!ìðº"€ùº#P¸7º!ÜÃ7º"È7º#–•jº#½¢jº!¥jº"´¨jº!¤©jº";²jº#ûqº! |º"怺#=Oк!ÙXк"­]к#,»#m4»!T8»"e<»!p=»"HG»’ð »ahci ÿ »… »uhci_hcd:usb3 ð »+ »eth1 Þ »#º6»!I6»"Š6»# æh»#ñh»!óh»"øh»!ùh»"%i»#½Â›»!·Ì›»"üÒ›»#¦Î»#ɪλ!¾¬Î»"N°Î»!A±Î»"_½Î»#S|¼!˜ˆ¼"ù¼ahci è¼> ¼uhci_hcd:usb3 © ¼ä¼eth1 ©¼#þY4¼#Sb4¼!§e4¼"ÿj4¼!l4¼""x4¼#‚5g¼!x@g¼ÏFg¼kworker/5:1b(x"Ng¼ëQg¼kworker/0:1kworker/5:1b(_g¼kworker/5:1b(Y…ºMÇig¼kworker/5:1b(kworker/0:1#š¼#š¼!Ž š¼"Y%š¼!U&š¼"Ä/š¼#G÷̼!åû̼"œÿ̼#Óÿ¼#¢×ÿ¼!‹Ùÿ¼"ÕÝÿ¼!àÞÿ¼"¶çÿ¼#¤©2½!ö²2½"ï¶2½#Qe½#°“e½!À•e½"Å™e½!Кe½"¤e½#'c˜½!o˜½"Ær˜½#°?˽# K˽!pM˽"6Q˽!>R˽":\˽#Uþ½!_'þ½"5-þ½#1¾#1¾!å 1¾"ÿ 1¾! 1¾"ë1¾#ÉÕc¾!ºßc¾"³ãc¾#r³–¾#‡½–¾!Ê¿–¾"óÖ¾!ûÄ–¾"kЖ¾#ûɾ!ɾ"ՠɾ#_lü¾#§uü¾!wü¾"ª{ü¾!|ü¾"q‡ü¾#¥I/¿!aU/¿"îX/¿#Þ%b¿#5/b¿!<1b¿"P5b¿!F6b¿"3@b¿#Q•¿!é •¿"6•¿#WàÇ¿#ëéÇ¿! ìÇ¿"»ïÇ¿!«ðÇ¿"«üÇ¿#=½ú¿!¬Êú¿"`Îú¿à Àuhci_hcd:usb4 I%À“&Àeth0#ã-À ô.À!þ0ÀÁüÁõ©‹à‡îØF²ÿbÊ™HŽ©XÀÈ7¬“‡ÇÈ7ð€©XÀsshdf(2`Àsshdf(x" mÀMrÀkworker/0:1sshdf(Í—ÀÜÀ𢴀ÿp£´€ÿÁ À¹¢Àp£´€ÿN¤À‰®Ààc´€ÿ@×¹À0êâÀ@ù¨ª2 ù¨ª2KñÀ©óÀ𢴀ÿp£´€ÿ}õÀT÷Àp£´€ÿ°øÀnûÀ Eªª2r Àsshdf(m§N"Më Àkworker/5:1b(xÉ Àsshdf(xW ÀH À@ù¨ª2 ù¨ª2¹" Àsshdf(¨¼i"M‹& Àsshdf(kworker/5:1b(”2 Àbash1o9 Àkworker/5:1b(ÓXÒMÔC Àkworker/5:1b(kworker/0:1;Ÿ"Àsshdf(x¤"Àkworker/0:1sshdf(J±"Àí³"À𢴀ÿp£´€ÿîµ"À°·"Àp£´€ÿú¸"À¦»"Ààb´€ÿ@Ä"À&•á"À@ù¨ª2 ù¨ª2¸è"Àãê"À𢴀ÿp£´€ÿ“ì"ÀUî"Àp£´€ÿœï"Àó"À‹¨ª2P'#ÀP #À@ù¨ª2 ù¨ª2)#Àsshdf(3Šïó"M\2#Àsshdf(kworker/0:1#¦¢-À#9¦-À!±©-À";¿-À!@À-À"TÊ-À?IÀahci q-IÀß.IÀuhci_hcd:usb3 q3IÀ¾4IÀeth1 t9IÀ#¢}`À!w„`À"T‰`À#S“À#]“À!:_“À"*c“À!;d“À"o“À#J0ÆÀ!Š<ÆÀ"æ@ÆÀ#U ùÀ#ùÀ!9ùÀ"ùÀ!ùÀ"­*ùÀ#®é+Á!æó+Á"ñ÷+Á#´Æ^Á#ïÑ^Á!ÞÓ^Á"ï×^Á!ýØ^Á" ã^Á#¾ª‘Á!_¯‘Á"d³‘Á#€ÄÁ#ÍŠÄÁ!àŒÄÁ"ÙÄÁ!Ì‘ÄÁ""œÄÁ#†]÷Á!=èÊ#zË#0Ë!.Ë"œ Ë!!Ë"f)Ë#ÏèMË!5óMË"p÷MË#’Ë€Ë#¯Ï€Ë!§Ñ€Ë"šÕ€Ë!Ö€Ë"u߀Ë#½¡³Ë!M®³Ë"C²³Ë#Ï~æË#¢‹æË!öæË"ò‘æË!å’æË"SæË#å[Ì!˜gÌ"mÌ# 8LÌ#°@LÌ!¿CLÌ"«GLÌ!›HLÌ"~SLÌ#gÌ!ÀÌ"($Ì#Iü±Ì#)²Ì!!²Ì"ƒ²Ì!y²Ì" ²Ì#·ÎäÌ!üØäÌ"žÜäÌ#Ç«Í#ÕµÍ!÷·Í"ÿ»Í!ï¼Í"cÇÍ#+’JÍ!\—JÍ"H›JÍ#e}Í#Úo}Í!ÿq}Í"Ùv}Í!Ìw}Í"©‚}Í#íJ°Í!µÍ@µÍuhci_hcd:usb3 ¢DµÍFFµÍeth1 üJµÍ#8ãÍ#)ãÍ!Y+ãÍ"µ/ãÍ!®0ãÍ"é:ãÍ#«ûÎ!üÎ"é Î#yØHÎ#áHÎ!EãHÎ"\çHÎ!jèHÎ".ñHÎ#Úµ{Î!ÄÂ{Î"ÃÆ{Î#)’®Î#›®Î!%®Î"Ä ®Î!º¡®Î"R«®Î#ooáÎ!ãzáÎ"©~áÎ##LÏ!VÏ" ZÏ# )GÏ#ë4GÏ!g7GÏ"¦Ó#·ÿØÓ!Š ÙÓ"’ ÙÓ#0Ý Ô!Wç Ô"»ì Ô#ò¹>Ô#êÄ>Ô!œÇ>Ô"nË>Ô!vÌ>Ô"9Ö>Ô#¤–qÔ!£qÔ"ò¦qÔ#s¤Ô#V~¤Ô!–€¤Ô"7…¤Ô!'†¤Ô"̤Ô#§P×Ô!2]×Ô"Â`×Ô#- Õ#¾8 Õ!Ú: Õ"~? Õ!Œ@ Õ"šJ Õ#š =Õ!;=Õ""=Õ#qæoÕ#ðoÕ!÷ñoÕ"xõoÕ!ªöoÕ":pÕ#œÃ¢Õ!Ü΢Õ"Ó¢Õ#  ÕÕ#W­ÕÕ!v¯ÕÕ"³ÕÕ!ö³ÕÕ"ݼÕÕ#g}Ö!”‡Ö"‹ÖŽ· Öahci "Æ ÖTÇ Öuhci_hcd:usb3 ³Ë ÖÖÌ Öeth1 }Ñ Ö#uZ;Ö#+c;Ö!Me;Ö"åi;Ö!Ûj;Ö" s;Ö#ï6nÖ!ÔBnÖ"ÁFnÖ#_¡Ö#î¡Ö!õ ¡Ö"£$¡Ö!“%¡Ö"i.¡Ö#ÃðÓÖ!+üÓÖ"ÓÿÓÖ#…Í×#\Ø×!{Ú×"#Þ×!ß×"3é×#Ë©9×!a´9×" ¸9×#.l×#î’l×!U•l×"ë˜l×!ö™l×"Þ¢l×#€cŸ×!ªmŸ×"*rŸ×#,AÒ×#4NÒ×!JPÒ×"TÒ×!UÒ×"Í]Ò×#fØ!&Ø"0*Ø#sú7Ø#Ü8Ø![8Ø"ü8Ø!ï 8Ø"Ã8Ø#‰×jØ!)ãjØ"IçjØ#[¼Ø#ÐÂØ!LÅØ"ëÈØ!ÞÉØ"eÓØ#ñÐØ!ÐØ"-¡ÐØ#NmÙ#xÙ!HzÙ"Ø}Ù!Ë~Ù"‡Ù#@J6Ù!ÇS6Ù"‡W6Ù#š'iÙ#ï3iÙ!6iÙ"õ9iÙ!;iÙ"TDiÙ#ØœÙ!œÙ"$œÙ#áÎÙ#ÈëÎÙ!´íÎÙ"GñÎÙ!:òÎÙ"âûÎÙ#ë½Ú!ÚÉÚ"ÜÍÚ#Ñš4Ú#ú¨4Ú! «4Ú"®4Ú!¯4Ú"ê¸4Ú#=wgÚ!gÚ"W…gÚ#˜TšÚ#Ô]šÚ!ð_šÚ"àcšÚ!îdšÚ"mšÚ#ç0ÍÚ!»9ÍÚ"]=ÍÚ#Û#Û!Û"Û! Û"©)Û#Ôê2Û!4õ2Û"äù2Û#ZÍeÛ# ÒeÛ!›ÔeÛ"…ØeÛ!{ÙeÛ"¯áeÛ#Ÿ¤˜Û!˜¯˜Û"a³˜Û#ÖËÛ#\ËÛ!EËÛ"“ËÛ!+”ËÛ"‘ËÛ#¼_þÛ!öhþÛ"mþÛ#;1Ü#'E1Ü!UG1Ü"ôá!äIôá"§Môá#'â#Ý%'â!G('â"1,'â!-'â"Í5'â#ÉøYâ!˜Zâ"XZâ#ÏÕŒâ#nàŒâ!ÃâŒâ"ææŒâ!èçŒâ"ôðŒâ#m²¿â!V¾¿â"Qÿâ#îŽòâ!s˜òâ".žòâ#Cl%ã#’w%ã!‡y%ã"q}%ã!a~%ã"I‡%ã#tKXã!¶XXã"ë\Xã#i%‹ã#1‹ã!Œ3‹ã"^7‹ã!Q8‹ã"ºA‹ã#‚¾ã!É ¾ã"¾ã#éðã#ríðã!²ïðã"“óðã!}ôðã"\ýðã#b¼#ä!‚Ç#ä"6Ë#ä#{™Vä#ÿ£Vä!¦Vä"Þ©Vä!˪Vä"Ú³Vä#x‰ä!ªƒ‰ä"j‡‰ä#‚R¼ä#½\¼ä!$_¼ä"ùb¼ä!ãc¼ä"4m¼ä#­/ïä!:ïä"Ò=ïä#Ý "å#Ü"å!È"å" "å! "å"("å#ëèTå!öTå"úTå#Ƈå# Ï‡å!pÒ‡å"½Ö‡å!­×‡å"߇å#[ªºå!箺å"ò²ºå#díå!a‰íå"Žíå#°\ æ#cg æ!|i æ"Wm æ!An æ"¶w æ#9Sæ!DSæ"âGSæ#£†æ#*#†æ!%†æ"6)†æ!#*†æ"z3†æ#¿ò¸æ!¯¹æ"K¹æÎ.¾æahci QH¾æÑI¾æuhci_hcd:usb3 BN¾ætO¾æeth1 T¾æ# Ðëæ#HÛëæ!pÝëæ"Þáëæ!Èâëæ"½íëæ#“¬ç!Ò¶ç"»ç#J‰Qç#•Qç!"—Qç"{›Qç!hœQç"ï¥Qç#~f„ç!dq„ç" u„ç#ûB·ç#ÂK·ç!ØM·ç"ÂQ·ç!¯R·ç"Z\·ç#e êç! -êç"{1êç#üè#«è!‚è"´ è!ž è"2è#‚ÙOè!‡éOè"VíOè#¶‚è!ÍÀ‚è"´Ä‚è#W“µè#Áœµè!%Ÿµè"£µè!¤µè"“¬µè#apèè!‡zèè"~èè#«Ré#3Xé!"Zé"3^é!5_é"5hé#`*Né!É3Né"‹8Née[éahci ðr[éOt[éuhci_hcd:usb3 Ãx[é z[éeth1 Ï~[é#?é#Àé!é"/é!4é"î!é#;ã³é!kì³é"úð³é#jÁæé#kÍæé!xÏæé"wÓæé!jÔæé" Þæé%zòéahci ó‡òéF‰òéuhci_hcd:usb3 Ìòé òéeth1 À“òé#¥ê!âªê"k¯ê#7Lê#C‡Lê!>‰Lê"àŒLê!ÍLê"É—Lê#Wê!9cê"Ggê#\3²ê#M<²ê!Z>²ê"nB²ê!XC²ê"L²ê#§åê!àåê"Äåê#ØíëÁüÁõ©‹à‡îØF²ÿbÊ™HŽëøëÈ7k&ÚïÈ7à€#ëøë!€ýë7ëltt-kconsumerd2 ëltt-kconsumerd2x"Pë!dë"‚ë{ ëkworker/0:1ltt-kconsumerd2ËJëPëöžSë`Uëö€@ŽK=¿¿Vë–XëHŽK=¿ídëÜfë/¡ëº£ëÐ-¬ëp„0 ltt-kconsumerdÄëLÆëÀWÊë(ÌëÝÀ°×ëÝ~Ùëö²ÛëÓÞë°Ä@ ÿÿÿÿÿÿÿÿêëëltt-kconsumerd2gãáæÊMqõëltt-kconsumerd2kworker/0:1#-ÑJë!í×Jë"WÝJë#j¨}ë#Cµ}ë!§·}ë"*¼}ë!½}ë"óÅ}ë#„°ë!ðë"'“°ë#˜`ãë#>iãë!Bkãë"¶oãë!©pãë"[yãëŠÅìuhci_hcd:usb4 ŽÊìÛËìeth0#«Ñì °Òì!Õì"±þì# Dì!Jì"Oì#£Iì!$Iì")Iì#ø{ì#|ì!J|ì"% |ì! |ì"m|ì#¥Ü®ì!Dã®ì"1ç®ì#P±áì#fºáì!X¼áì"ú¿áì!ðÀáì"©Ëáì#Ôí!s›í"Ÿí#ïqGí#vGí!øwGí"¯{Gí!Ÿ|Gí"b†Gí#ÞHzí!…Szí"“Wzí#8*­í#©.­í!¼0­í"R4­í!H5­í"?­í#>àí!Áàí"oàí#Yßî#©éî!˜ëî"Þðî!Ññî"åûî#ܺEî!eÆEî"6ËEî#ÿ—xî#j xî!W¤xî"_¨xî!O©xî"´xî#4t«î!u~«î"‰‚«î#áPÞî!ÞYÞî"I^Þî#Ç-ï#':ï!µ<ï"eAï!^Bï":Kï# Dï!Dï"ÍDï#×çvï#Éòvï!Äôvï"Ìøvï!¿ùvï"àwï#ìÄ©ï!WЩï"†Ý©ïÎÖïuhci_hcd:usb4 ¾ÒÖïÔÖïeth0#ÙÖï ÚÖï!0ÜÖï¿òÖïsshdf(SøÖïsshdf(x"j×ïÀ×ïkworker/0:1sshdf(é(×ï.×ï𢴀ÿp£´€ÿó0×ïë2×ïp£´€ÿz4×ï|;×ïàc´€ÿ@ûC×ï0‚_×ï@ù¨ª2 ù¨ª2„l×ïÐn×ï𢴀ÿp£´€ÿªp×ï„r×ïp£´€ÿãs×ï}v×ï Eªª2×ïsshdf(HŠËc%M‘ƒ×ïkworker/5:1b(xc‡×ïsshdf(xÖŒ×ïìŽ×ï Tࢴ€ÿ@£´€ÿ“×ïv˜×ï@ù¨ª2 ù¨ª2Ì¢×ïsshdf(!æ„%Mž¦×ïsshdf(kworker/5:1b(Œµ×ïkworker/5:1b(¡‚ßMuÀ×ïkworker/5:1b(kworker/0:1¶ÛÙïsshdf(xüàÙïkworker/0:1sshdf(8íÙïêïÙï𢴀ÿp£´€ÿåñÙï°óÙïp£´€ÿ õÙï ÷Ùïàb´€ÿ@°ÿÙï)Úï@ù¨ª2 ù¨ª2*Úï@!Úï𢴀ÿp£´€ÿí"ÚïÁüÁõ©‹à‡îØF²ÿbÊ™HŽ%ÚïÈ7µÐËùÈ7€€%Úïp£´€ÿ˜)Úï-Úª2PmHÚïPÂMÚï@ù¨ª2 ù¨ª2ò#$?ò!d?ò"f ?ò!Y ?ò"¥?ò#`Ùqò!ùãqò"éçqò#*µ¤ò#¿½¤ò!À¤ò"æÃ¤ò!ÜĤò"'Τò#€‘×ò!,×ò"X¡×ò#¶o ó#>{ ó!*} ó" ó!‚ ó"æŠ ó#ŽK=ó!ÄW=ó"i[=ó#»(pó#ñ4pó!7pó"Ð:pó!Ø;pó"úCpó#Ì£ó!Ö£ó"£ó#/âÕó#¥ëÕó!9îÕó" òÕó!óÕó"¶ûÕó#t¾ô!ËÈô"úÌô#´›;ô#ª¥;ô!Û§;ô"Ñ«;ô!Ĭ;ô" µ;ô#Çxnô! …nô"b‰nô#U¡ô#`¡ô!|b¡ô"Éf¡ô!Ñg¡ô"Pp¡ôò¬ôahci ª¬ô¬ôuhci_hcd:usb3 €¬ô¯¬ôeth1 S¬ô#*2Ôô!Þ;Ôô"²@Ôô#õ#õ!mõ"!õ!"õ"º*õ#ûë9õ!A÷9õ"û9õ#šÐlõ#xÔlõ!mÖlõ" Úlõ!üÚlõ"Õãlõ#O¬Ÿõ!;±Ÿõ"CµŸõ#2‚Òõ#¡‹Òõ!ŽÒõ"בÒõ!Í’Òõ"ìšÒõ#Ó^ö!˜iö"Ùmö#’;8ö#ãD8ö!ÒF8ö"ÎJ8ö!ÁK8ö"T8ö#nkö!W#kö"&'kö#Zõö#æÿö!ïžö"¸žö!«žö"$žö#ZÒÐö!pÛÐö"ÃßÐö#¯÷#¶¹÷!¼÷"IÀ÷!BÁ÷"ôÉ÷#÷‹6÷!`•6÷"³™6÷#mii÷#/ti÷!ovi÷"Mzi÷!@{i÷"¬„i÷#Fœ÷!Nœ÷"(Sœ÷#H"Ï÷#i.Ï÷! 1Ï÷"á4Ï÷!×5Ï÷"5>Ï÷# ÿø!² øGøkworker/5:1b(x"ø\økworker/0:1kworker/5:1b(ö'økworker/5:1b(´@ÏMa2økworker/5:1b(kworker/0:1#*Ý4ø#è4ø!~ê4ø"—ï4ø!±ð4ø"Àù4ø#¿gø!GÄgø"ëÈgø#a–šø#ñŸšø!£šø"À¦šø!¶§šø"˰šø#)sÍø! Íø"+ƒÍø#Où#QYù!R[ù"-_ù! `ù" iù#,3ù!ù43ù"{93ù#Î fù#³fù!Õfù"fù! fù"p(fù#áå˜ù!ôñ˜ù"áõ˜ù#ÂÂËù#óÎËùÁüÁõ©‹à‡îØF²ÿbÊ™HŽËÒËùÈ7I-ýÈ7¸€!ËÒËù¢ÚËùltt-kconsumerd2vßËùltt-kconsumerd2x"ÞæËù!(èËù"­ðËùUôËùkworker/0:1ltt-kconsumerd2ºÌùî#Ìùö'Ìùæ(Ìùö€@ŽK=¿H*Ìù4,ÌùHŽK=¿¾8Ìù˜:Ìù*rÌù¦tÌùð-…}Ìù€„0 ltt-kconsumerd³—Ìù šÌùà”žÌù_ ÌùÝàq¬ÌùÝ~®Ìùö©°Ìùr´Ìù°Ä@ ÿÿÿÿÿÿÿÿÂÌùltt-kconsumerd2.㺴ÌM?ÌÌùltt-kconsumerd2kworker/0:1&Ñùahci *Ñùk+Ñùuhci_hcd:usb3 ñ/Ñù51Ñùeth1 å5Ñù#g¨þù!(°þù"¤µþù#!„1ú#gˆ1ú!"‹1ú"À1ú!Â1ú"¨›1ú#žYdú!´adú" fdú#Å6—ú#þ@—ú!C—ú"H—ú"P—ú#ZÊú!¾!Êú"Y&Êú†&Ïúahci ‰5Ïúý6Ïúuhci_hcd:usb3 n;Ïú©<Ïúeth1 bAÏú#`ðüú#ûüú!Býüú"ýú!ýú"B ýú#ÌÌ/û!×/û"¬Û/û#Ö©bû#Õ´bû!·bû"£»bû!“¼bû"'Åbû##•û!‹‘•û"M••û#akÈû#©qÈû!ªsÈû"#yÈû!(zÈû"}‚Èû#B@ûû!cJûû"pNûû#y.ü#æ(.ü!+.ü"Ü/.ü!Ï0.ü" :.ü#Ëaü!)aü"| aü#„דü#4à“ü!â“ü" æ“ü!÷æ“ü"£ï“ü#,³Æü!c¼Æü"zÀÆü#÷ùü#›ùü!ùü"¡ùü!ý¡ùü"‹ªùüN'ýuhci_hcd:usb4 ‹R'ýØS'ýeth0#`Y'ý eZ'ý!]\'ýús'ýsshdf(x"¹'ý0†'ýkworker/0:1sshdf(ÿ•'ý˜™'ý𢴀ÿp£´€ÿœ'ý ž'ýp£´€ÿ¾Ÿ'ýþ¤'ýàc´€ÿ@W¬'ý0(Ã'ý@ù¨ª2 ù¨ª2rÐ'ý¬Ò'ý𢴀ÿp£´€ÿŒÔ'ýfÖ'ýp£´€ÿË×'ýhÚ'ý Eªª2â'ýsshdf(3oq&M¯ä'ýkworker/5:1b(x™è'ýsshdf(xÍí'ýmó'ý@ù¨ª2 ù¨ª2ü'ýsshdf(-‹&M@ÿ'ýsshdf(kworker/5:1b( (ýkworker/5:1b(8ò©M~(ýkworker/5:1b(kworker/0:1#pw,ý!à~,ý"ß‚,ý'Â,ýsshdf(xÇÇ,ýkworker/0:1sshdf(#Õ,ýð×,ý𢴀ÿp£´€ÿÚ,ý¿Û,ýp£´€ÿÝ,ý<à,ýàb´€ÿ@è,ý@oþ,ý@ù¨ª2 ù¨ª2³-ýÕ-ý𢴀ÿp£´€ÿ -ý\ -ýp£´€ÿ£ -ýñ-ý‹¨ª2pQ+-ýps0-ý@ù¨ª2 ù¨ª2W:-ýsshdf(qyž'MÁüÁõ©‹à‡îØF²ÿbÊ™HŽSG-ýÈ7¨˜BýÈ7°€SG-ýsshdf(kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÜ—BýÈ7 ›ÚiÉ7À€Ü—Býahci ‚¬Bý2®Býuhci_hcd:usb3 ß²Bý5´Býeth1 ]¹Býbabeltrace-1.2.1/tests/ctf-traces/succeed/lttng-modules-2.0-pre5/channel0_30000755000175000017500000020000011616325072023127 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽqÈ7.-„È7Ѐÿÿ#gBØyÈ7#ÆLØy #mQØy!ÑSØy"ÔVØy!XØy"‚]Øy!r^Øy "YbØy #¨$ z#©& z !ù* z"£, z!¢- z "m2 z #ý=z#>z!ç>z"‹>z!x>z"t >z#Úpz#mÜpz !ùàpz"Ùâpz!áãpz "Ùëpz  A{zuhci_hcd:usb4 äE{z[G{zeth0#M{z N{z!ûO{z"÷n{z#ǹ£z#¯¼£z #*À£z!²Â£z"²Å£z!¥Æ£z"…Ë£z!iÌ£z ")Уz #`—Öz#£™Öz !hžÖz"  Öz!ü Öz "J¤Öz #âq {#As { #Tu {!@w {"y {!z {"c~ {!V { "Ì { #æL<{#O<{ !²S<{"PU<{!IV<{ "\X<{ áÀb{ahci#9Ïb{ ‘Ñb{üÒb{uhci_hcd:usb3 a×b{–Øb{eth1 UÝb{!Mßb{&&ñb{€ºð0+* c{kworker/3:2+(x"}c{c{kworker/0:1kworker/3:2+(,$c{kworker/3:2+( 1ëÀ&·,c{kworker/3:2+(kworker/0:1#0,o{#v.o{ #1o{!›3o{"6o{! 7o{"eÓ| "]CÓ| #F}#p}!S}"ß}!Õ}"p}#Iï8}#Jñ8} !îõ8}"Ñ÷8}!Ðø8} "þú8} #»Ék}#˜Ëk} #ÃÍk}!ÄÏk}"×Ñk}!ÓÒk}"êÖk}!Â×k} "Úk} #‰¨ž}!x­ž}"X¯ž}#\ƒÑ}#²‡Ñ}!ž‰Ñ}"–‹Ñ}!ƒŒÑ}"’Ñ}#/_~!ýc~"Ëe~#v;7~# >7~!@7~"îA7~!ÛB7~"AF7~#©j~!†j~"' j~#köœ~#üøœ~!÷úœ~"€üœ~!yýœ~"~#¯ÔÏ~!ÔÙÏ~"iÛÏ~#`²#ô´!×¶"–¸!›¹"j½#‰‹5!“5"@’5#¤jh#/mh!Boh"qh! rh"åwh# G›!ƒK›"iM›#\#Î#€&Î!{(Î" *Î!+Î"ð.Î#€!¨€"@€#·Ú3€#<Ý3€!ß3€"Þà3€!Ëá3€"%å3€#4¼f€!ÛÀf€"‚Âf€#¬”™€#1—™€!™™€"ñš™€!ù›™€"ËŸ™€#brÌ€!wÌ€"ãxÌ€#—Qÿ€#rUÿ€!yWÿ€"Yÿ€! Zÿ€"_ÿ€#ï.2!®32"@52Ùw7ahci ]„7ž…7uhci_hcd:usb3 ô‰7‹7eth1 f7# e#Me!fe"se!œe"Œe#cè—!¦í—"}ï—#èÄÊ#‚ÇÊ!€ÉÊ"ËÊ!ÌÊ"ÎÏÊ#’¡ý!¦ýSªýkworker/3:2+(x"=®ý²ýkworker/0:1kworker/3:2+(úºýkworker/3:2+(ÎüÀ&zÂýkworker/3:2+(kworker/0:1#‚0‚#*…0‚!d‡0‚"_‰0‚!dŠ0‚" 0‚#ÖYc‚!€^c‚"*`c‚#;–‚#»=–‚!¼?–‚"A–‚!•B–‚"¾F–‚#{É‚!òÉ‚" É‚#øïû‚#‘óû‚!öû‚"Ì÷û‚!Ñøû‚"-ýû‚#Î.ƒ!àÒ.ƒ"“Ô.ƒ#®aƒ#ü±aƒ!´aƒ"p¶aƒ!r·aƒ"e»aƒ#@‹”ƒ!ᔃ"”‘”ƒ#wfǃ#jǃ!lǃ"»mǃ!¨nǃ"Îrǃ#Dúƒ!9Iúƒ"àJúƒ#p-„#!-„!Ú"-„ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ&%-„È76\äÈ7€€"&%-„!·3-„"Ë7-„#ªú_„!åþ_„š`„ltt-kconsumerd2} `„ltt-kconsumerd2x"Ó `„á`„kworker/0:1ltt-kconsumerd2‹=`„ I`„ö§P`„®R`„ö€@ŽK=¿:T`„ÐW`„HŽK=¿2n`„Bp`„Âa„  a„--0a„@0 ltt-kconsumerdH]a„`a„öÌca„®ia„°Ä@ ÿÿÿÿÿÿÿÿ‘wa„ltt-kconsumerd2Ao_×x'+‚a„ltt-kconsumerd2kworker/0:1#Ù’„#hÝ’„!’à’„"çâ’„!ä’„"è’„€‰™„ahci ¡˜™„!š™„uhci_hcd:usb3 Áž™„ ™„eth1 ¯¤™„#&·Å„!3¼Å„"g¾Å„#>•ø„#˘ø„!Þšø„"dœø„!Qø„"¢ø„#im+…!q+…"r+…#µJ^…#N^…!ÁP^…"†R^…!ŽS^…"W^…#â%‘…!‡)‘…"+‘…#CÄ…#Ü Ä…!é Ä…" Ä…!•Ä…"£Ä…#}âö…!æö…"Ÿçö…V†ahci ƒ††uhci_hcd:usb3 Œ†Ó†eth1 † †#®»)†#D¿)†!WÁ)†"IÃ)†!<Ä)†"•È)†#›\†!) \†"ú¡\†#y†#°|†!~†"€†!†"…†#êS†!_W†"ýX†#ô0õ†#“4õ†!6õ†"e8õ†!j9õ†"‡=õ†#'(‡!½(‡"g(‡#/êZ‡#³íZ‡!¨ïZ‡"CñZ‡!-òZ‡";öZ‡#Âʇ!·"MЇ#†¥À‡#4©À‡!D«À‡"è¬À‡!Ò­À‡" ²À‡#ƃó‡!n‡ó‡"‰ó‡#2_&ˆ#Ýb&ˆ!çd&ˆ"jf&ˆ!Tg&ˆ")k&ˆ#\:Yˆ!õ=Yˆ"?Yˆ#ÐŒˆ#uŒˆ!dŒˆ"ó Œˆ!û!Œˆ"&Œˆ#9ô¾ˆ!Þ÷¾ˆ"gù¾ˆ#Ññˆ#½Ôñˆ!»Öñˆ"Øñˆ!|Ùñˆ"ÀÝñˆ#Q²$‰!·$‰"̸$‰#ø‰W‰#sW‰!wW‰"‘W‰!ó‘W‰"õ•W‰#ðfЉ!ôkЉ"¿mЉ#2E½‰#òH½‰!ÏJ½‰"Ž#¬BŽ!ªDŽ"lFŽ!tGŽ" KŽ#~OŽ!…#OŽ"&%OŽ#-øŽ#çûŽ!åýŽ"ËÿŽ!¾‚Ž"Ï‚Ž#ˆ×´Ž!hÜ´Ž"NÞ´Ž#ЯçŽ#´çŽ!¶çŽ"Ë·çŽ!è¸çŽ"½çŽ#×!œ•"7—#>nM#%rM!tM"ßuM!ävM"ìzM#ëG€!æL€"ŠN€#À)³#J-³!N/³"ì0³!Ù1³";6³#`æ!^ æ" æ#ÉÝ#‰á!Ÿã"(å!æ"äé#P¿K!NÄK"×ÅK#Þ~#o ~!^¢~"ä£~!Ô¤~"!©~#t±!’y±"!{±#ÎTä#ÝWä!2ZäÁüÁõ©‹à‡îØF²ÿbÊ™HŽaäÈ7àbjœÈ7Ѐaältt-kconsumerd2çhältt-kconsumerd2x"mmä!¨nä" sä÷väkworker/0:1ltt-kconsumerd2ã–äñšäöHžä äö€@ŽK=¿~¡ä^£äHŽK=¿Ô®äðäØïäuòä-$ýäH0 ltt-kconsumerd³åÉåùåKå݃=åÝx?åö£AååDå°Ä@ ÿÿÿÿÿÿÿÿ“Qåltt-kconsumerd2Æê%Ây'^åltt-kconsumerd2kworker/0:1-ƒéahci [‘é½’éuhci_hcd:usb3 a—霘éeth1 Lé#e/‘!+6‘"V8‘## J‘#8J‘! J‘"•J‘!…J‘"‚J‘#8æ|‘!!ë|‘"ãì|‘#?ɯ‘#ͯ‘!ϯ‘"ªÐ¯‘!Íѯ‘"&Ö¯‘#Ǥâ‘!Å©â‘"Z«â‘#A~’#‚’!탒"|…’!f†’"wŠ’#h_H’!âcH’"zeH’#¢9{’#½<{’!²>{’"A@{’!+A{’"E{’#®’!v®’" ®’#nôà’#5÷à’!3ùà’"Ýúà’!Íûà’",á’#bÕ“!]Ú“"øÛ“#ÞªF“#f­F“!s¯F“"ê°F“!×±F“"aµF“#T‹y“!ày“"´‘y“#‚h¬“#Lk¬“!Mm¬“"0o¬“!5p¬“".t¬“#+Cß“!wHß“"Jß“#N”#/#”!%”"U'”!W(”"},”#ûD”!·ÿD”"XE”#ïÝw”#ûàw”!Aãw”"-åw”! æw”"1êw”?r}”ahci á~}”g€}”uhci_hcd:usb3 í„}”(†}”eth1 êŠ}”#¸ª”!мª”"ݾª”#ì”Ý”#‘˜Ý”!ªšÝ”"Üݔ!°Ý”"¢Ý”#–t•!y•"ºz•# PC•#¢RC•!¸TC•"PVC•!:WC•"H[C•#-*v•!‚/v•" 1v•#æ©•#n ©•!Z ©•"©•!9©•"©•#)âÛ•!çÛ•"¤èÛ•#¯¾–#FÁ–! Ö"Å–!ðÅ–"}É–#Ò›A–!Ž A–"h¢A–#-|t–#€t–!u‚t–"v„t–!c…t–"Št–#êW§–!Í\§–"³^§–#7Ú–#¡9Ú–!Ÿ;Ú–"1=Ú–!>Ú–"òBÚ–#: —!À —"m —#Ûï?—#Bò?—!ô?—"¥õ?—!’ö?—"=ú?—#Ìr—!íÐr—"”Òr—#Œ§¥—#«¥—!­¥—"¦®¥—!“¯¥—"³¥—kP¬—ahci 4]¬—™^¬—uhci_hcd:usb3 c¬—3d¬—eth1 æh¬—#èƒØ—!剨—""ŒØ—#8c ˜#°f ˜!¢h ˜"%j ˜!-k ˜"}o ˜#ð=>˜!»B>˜"DD>˜# q˜#3 q˜!."q˜"ó#q˜!õ$q˜"H)q˜#êú£˜!‘ÿ£˜";¤˜#=ÚÖ˜#?ÞÖ˜!1àÖ˜"óáÖ˜!øâÖ˜"²æÖ˜#² ™!޶ ™"S¸ ™˼™ahci †Ë™îÌ™uhci_hcd:usb3 >Ñ™pÒ™eth1 ×™#_<™#ø<™!ù’<™"•<™!–<™"£š<™# lo™!Åqo™"óso™#pG¢™#uK¢™!|M¢™"€O¢™!‚P¢™"U¢™#c"Õ™!í%Õ™"‘'Õ™#Äš#Wš!^ š" š! š"š#ÁÝ:š!{á:š"'ã:š#™¼mš#Àmš!Âmš" Ämš!Åmš"öÈmš#G• š!Ô˜ š"´š š#>vÓš#CzÓš!J|Óš"$~Óš!&Óš"+ƒÓš#ÊO›!uS›" U›#U/9›#i39›!X59›"Y79›![89›"-<9›#B l›!Òl›"Ál›#Bæž›#áéž›!Üëž›"âíž›!Ïîž›"Åòž›#šÃÑ›!6ÇÑ›"×ÈÑ›#TŸœ#/£œ!!¥œ"°¦œ! §œ"¢«œ#–ƒ7œ!­‡7œ"‰7œ#1Zjœ#Ä]jœ!Â_jœÁüÁõ©‹à‡îØF²ÿbÊ™HŽ¢ajœÈ7²Š§È7€€"¢ajœ!}ejœ"ijœ#œ5œ!!;œ%@œltt-kconsumerd2 Eœltt-kconsumerd2x"ÖIœŒNœkworker/0:1ltt-kconsumerd2ˆmœrœöDuœ3wœö€@ŽK=¿¤xœœzœHŽK=¿Q†œ=ˆœÖ»œd¾œ -³ÆœP0 ltt-kconsumerdÏàœýâœ>çœ9éœÝQôœÝUöœö›øœ›ûœ°Ä@ ÿÿÿÿÿÿÿÿ…žœltt-kconsumerd2ÔÄù†z'žœltt-kconsumerd2kworker/0:1¶i¢œahci 9z¢œ{¢œuhci_hcd:usb3 €¢œY¢œeth1 ú…¢œ#,М#‘М!‘М"¹М!¯ М"æ%М#Eñ!ö"ê÷#ÞÌ5#¡Ð5!œÒ5"4Ô5!`Õ5"SÙ5#@©h!í­h"š¯h#ማ#wŒ›!cŽ›"(›!3‘›"A•›#¶gÎ!OkÎ"ùlÎ#ËBž#(Fž!,Hž"¾Iž!®Jž"\Nž#}"4ž!&4ž"¨'4ž#Qûfž#êþfž!ßgž"hgž!Ugž"ägž#³Û™ž!4ß™ž"Òà™ž#к̞#Š¾Ìž!dÀÌž" ÃÌž!ôÃÌž"¢ÇÌž#a•ÿž!zšÿž"“œÿž#¤o2Ÿ#=s2Ÿ!)u2Ÿ"²v2Ÿ!¢w2Ÿ"þ{2Ÿ4¸7Ÿahci Ç7ŸŠÈ7Ÿuhci_hcd:usb3 Í7Ÿ?Î7Ÿeth1 =Ó7Ÿ#}MeŸ!ŠReŸ"gTeŸ#?,˜Ÿ#ç/˜Ÿ!Ü1˜Ÿ"à3˜Ÿ!Í4˜Ÿ"Â9˜Ÿ#ËŸ!´ ËŸ"š ËŸ#óâýŸ#¹æýŸ!ÌèýŸ"XêýŸ!EëýŸ"|ïýŸ#=Â0 !ôÅ0 "•Ç0 #c #Ö c !Ô¢c "¤c !w¥c "¾©c #Ÿy– !î~– "– #ñSÉ #«WÉ !—YÉ " [É ! \É "Ÿ`É #g6ü !è9ü "Å;ü #p /¡#r/¡!m/¡"ò/¡!6/¡"\/¡™ 4¡ahci K/4¡­04¡uhci_hcd:usb3 *54¡h64¡eth1 $;4¡#µìa¡! òa¡"¶ôa¡#6È”¡#ÀË”¡!ÇÍ”¡"JÏ”¡!@Д¡"ŠÔ”¡#¨Ç¡!&­Ç¡"T¯Ç¡#Žƒú¡#B‡ú¡!²‰ú¡"æ‹ú¡!èŒú¡"®ú¡#Zb-¢!Gf-¢" h-¢#0<`¢#@`¢!B`¢"‰C`¢!vD`¢"]H`¢#v“¢!á“¢"…!“¢ž¢ahci ó!ž¢4#ž¢uhci_hcd:usb3 x'ž¢¡(ž¢eth1 >-ž¢#ùÅ¢#ýÅ¢!5ÿÅ¢" Æ¢!öÆ¢"øÆ¢#åÒø¢!¤×ø¢"~Ùø¢#ï¯+£#¸³+£!›µ+£"Š·+£!w¸+£"ú¼+£#J^£!r’^£"s”^£#Èh‘£#nk‘£!`m‘£"^o‘£!Kp‘£"u‘£•ž–£ahci e­–£Ç®–£uhci_hcd:usb3 ,³–£L´–£eth1 P¹–£#•HÄ£!™MÄ£"jOÄ£#"÷£#U&÷£!D(÷£"?*÷£!,+÷£"7/÷£#qþ)¤!$*¤"õ*¤#Ü\¤#2ß\¤!?á\¤"Ýâ\¤!Êã\¤"¨ç\¤# º¤!¦¾¤"PÀ¤#‡—¤#-šÂ¤!CœÂ¤"í¤!òžÂ¤"¯¢Â¤# sõ¤!Çwõ¤"kyõ¤#ÀO(¥#øS(¥!íU(¥"ˆW(¥!~X(¥"S\(¥#b-[¥!Ü1[¥"¹3[¥#Í Ž¥#WŽ¥!aŽ¥"Ž¥!4Ž¥"ÖŽ¥#QìÀ¥!áïÀ¥"|ñÀ¥#GÂó¥#æÅó¥!ÞÇó¥"²Éó¥!´Êó¥"(Ïó¥#%¡&¦!x¥&¦"a§&¦#(|Y¦#¬Y¦!Y¦"ƒY¦!„Y¦"LˆY¦#%]Œ¦!±aŒ¦"@cŒ¦#ø6¿¦#©:¿¦!’<¿¦"$>¿¦!?¿¦"C¿¦#5ò¦!Áò¦"bò¦#_ï$§#ó$§!/õ$§"¸ö$§!¢÷$§"ü$§#ÿÌW§!âÑW§"tÓW§# «Š§#È®Š§!±Š§ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ-¹Š§È7\3°²È7˜€-¹Š§ltt-kconsumerd2™¿Š§ltt-kconsumerd2x"^ÄŠ§!™ÅЧ":ÊŠ§iΊ§kworker/0:1ltt-kconsumerd2ñ÷ЧìüЧö(‹§‹§ö€@ŽK=¿d‹§b‹§HŽK=¿¿‹§º‹§KL‹§âN‹§0-‚W‹§X0 ltt-kconsumerdŽq‹§›s‹§ µw‹§ªy‹§Ý ¨„‹§Ý£†‹§öÚˆ‹§ï‹‹§°Ä@ ÿÿÿÿÿÿÿÿ‘˜‹§ltt-kconsumerd2ˆÚa{',£‹§ltt-kconsumerd2kworker/0:1#Œ½§!“½§"8•½§##dð§#àgð§!çið§"Ùkð§!Ælð§"šqð§TKõ§ahci Â[õ§E]õ§uhci_hcd:usb3 ×aõ§cõ§eth1 ³gõ§#w>#¨!rC#¨"ÓE#¨#' V¨#á#V¨!ß%V¨"Ô'V¨!)V¨"Â-V¨#[ûˆ¨!¨ÿˆ¨"=‰¨#"Ù»¨#¦Ü»¨!‰Þ»¨"໨!Ứ"U廨#زî¨!¿¶î¨"W¸î¨#õ‘!©#X•!©!Œ—!©"K™!©!>š!©"+ž!©#XmT©!ÀqT©"vsT©#®K‡©#wO‡©!TQ‡©"ãR‡©!ÖS‡©"œW‡©#N(º©!ƒ,º©"?.º©#í©#¹í©!¥ í©": í©!0 í©"Ûí©#Vãª!ˆçª"éª#<½Rª#ðÀRª!ñÂRª"€ÄRª!sÅRª"«ÉRª#õ™…ª!Ÿ…ª"» …ª#w¸ª#¡z¸ª!¥|¸ª"4~¸ª!*¸ª" ƒ¸ª#LUëª!lYëª"[ëª#Ù/«#o3«!X5«"7«!8«"Ê;«# Q«!WQ«"øQ«#Ê샫#9ðƒ«!òƒ«"«óƒ«!¡ôƒ«"Áøƒ«#üŶ«!ʶ«"á˶«#+¨é«#Ö«é«!­é«"¢¯é«!­°é«"”´é«#÷ƒ¬!}ˆ¬"Ь…,¬ahci æ’,¬o”,¬uhci_hcd:usb3 ò˜,¬Æš,¬eth1 sŸ,¬!ô>¬ahci Î?¬*?¬uhci_hcd:usb3 ­?¬è?¬eth1 ­ ?¬#Ã^O¬#bO¬!ÌdO¬"ÍfO¬!ÃgO¬"îlO¬#Ê:‚¬!«>‚¬"|@‚¬#¤µ¬#ûµ¬! µ¬"޵¬!à µ¬"˜$µ¬#Pöç¬!àùç¬"Ãûç¬# Ó­#ÆÖ­!âØ­"æÚ­!ßÛ­"_à­#þ¯M­!”³M­"5µM­#©‹€­#T€­!R‘€­"Þ’€­!Ô“€­"‚—€­#Pj³­!Åm³­"No³­#éAæ­#IEæ­!PGæ­"NIæ­!YJæ­"%Næ­#ù®!:$®"á%®#cýK®#L®! L®"õL®!ëL®"ð L®#cÛ~®!aà~®"Jâ~®#tº±®#ø½±®!À±®"šÁ±®!®Â±®"ãÆ±®#à•ä®!Ÿšä®"(œä®#;s¯#¶v¯!¨x¯"dz¯!o{¯"€¯#ÉRJ¯!ÁWJ¯"tYJ¯ÿO¯ahci ÃŽO¯"O¯uhci_hcd:usb3 ”O¯Ë•O¯eth1 ršO¯#Ø)}¯#z-}¯!Ÿ/}¯"2}¯! 3}¯"š7}¯#æ °¯!ÿ°¯"°¯#¿êâ¯#4îâ¯!&ðâ¯"²ñâ¯!¥òâ¯"÷â¯#¤Â°!µÆ°"’Ȱ#:¤H°#‹§H°!Ë©H°"~«H°!‰¬H°"U°H°#Hz{°!ž~{°"0€{°#©V®°#?Z®°!\®°"Ì]®°!Ú^®°"ßb®°#½7á°!æ;á°"{=á°#x±#±!±"õ±!±"ö±#¼ïF±!WôF±"þõF±#¨Ìy±#hÐy±!oÒy±"‚Ôy±!Õy±"/Ùy±#g©¬±!†®¬±"଱#Æ…ß±#_‰ß±!H‹ß±"ß±!Žß±"Y’ß±#­f²!ik²"m²#îAE²#XDE²!;FE²"ÙGE²!ÌHE²"PLE²#Ox²!§"x²"]$x²#®üª²#·ÿª²!£«²";«²!.«²"«²Ç°²ahci ²+°²-°²uhci_hcd:usb3ÁüÁõ©‹à‡îØF²ÿbÊ™HŽâ1°²È7ü˜½È7˜€ â1°²6°²eth1 ¯:°²#Ôݲ!sÙݲàݲltt-kconsumerd2æÝ²ltt-kconsumerd2x"Uëݲ‰ðݲkworker/0:1ltt-kconsumerd2wÞ²ÏÞ²ö#Þ²ß$Þ²ö€@ŽK=¿2&Þ²!(Þ²HŽK=¿Þ4Þ²Ð6Þ²@oÞ²ËqÞ²@-ÞyÞ²`0 ltt-kconsumerdí”Þ²ý–Þ²0ÏšÞ²šœÞ²Ý0ð¦Þ²Ý©Þ²öa«Þ²ö®Þ²°Ä@ ÿÿÿÿÿÿÿÿ¤»Þ²ltt-kconsumerd2©×*9|'IÈÞ²ltt-kconsumerd2kworker/0:1#·³#i»³!r¾³"£À³!®Á³"ÊÆ³#àŽC³!®“C³"X•C³#Pnv³#%rv³!/tv³"Awv³!7xv³" |v³#ËH©³!1L©³"ÒM©³#Ï&ܳ#D*ܳ!,ܳ".ܳ!/ܳ"Û2ܳ#v´!î´"î´¢´ahci €/´1´uhci_hcd:usb3 ž5´î6´eth1 ¿;´#üßA´#ÅãA´!ÕåA´"0èA´!)éA´"QîA´#j¹t´!T½t´"õ¾t´#ÿ˜§´#°œ§´!ºž§´"p §´!º¡§´"Ô¥§´# wÚ´!£zÚ´"k|Ú´#åQ µ#{U µ!ÓW µ"_Y µ!UZ µ"·^ µ#2@µ!˜5@µ"67@µ#w sµ#ïsµ!Ïsµ"‚sµ!usµ"qsµ#ý쥵!{ð¥µ"+ò¥µ#;ÆØµ#ÅÉØµ!´Ëص"”ÍØµ!¢Îص"’ÒØµ#·£ ¶!\§ ¶"!© ¶#Ö>¶#Qƒ>¶!O…>¶" ‡>¶!ˆ>¶"ý‹>¶#Í\q¶!„`q¶"bq¶#9¤¶#Ï<¤¶!¬>¤¶"A@¤¶!7A¤¶"ÍD¤¶Éïµ¶ahci Žýµ¶ÿµ¶uhci_hcd:usb3 ˆ¶¶±¶¶eth1 R ¶¶# ×¶!ë×¶"ò×¶#5ó ·#ìö ·!äø ·"gú ·!Zû ·"¿ÿ ·#ÅÎ<·!aÒ<·"ÿÓ<·#¥®o·#²o·!´o·"ãµo·!ñ¶o·"ɺo·#ªŠ¢·!1Ž¢·"â·#ÝgÕ·#škÕ·!kmÕ·"g¼!Cg¼"=Eg¼#Lš¼#lš¼!| š¼"_"š¼![#š¼"#(š¼#Áõ̼!žú̼"oü̼#‡Ôÿ¼#Øÿ¼!!Úÿ¼"­Ûÿ¼! Üÿ¼"Éàÿ¼#µ±2½!\¶2½"¸2½#©Že½#E’e½!^”e½"Þ•e½!Ñ–e½"úše½#éj˜½!„o˜½¸t˜½kworker/3:2+(x"z˜½ÿ~˜½kworker/0:1kworker/3:2+(ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚú˜½È7(¸ÈÈ7ø€Úú˜½kworker/3:2+(-‡W¥Å&S ™½kworker/3:2+(kworker/0:1#ÅI˽#ìL˽!GO˽”V˽ltt-kconsumerd2ž[˽ltt-kconsumerd2x"`˽!,a˽"ße˽¥i˽kworker/0:1ltt-kconsumerd2“˽˜Ë½ö¢›Ë½²Ë½ö€@ŽK=¿ ŸË½ë Ë½HŽK=¿{­Ë½g¯Ë½dè˽àê˽P-’ó˽h0 ltt-kconsumerdú ̽̽@Û̽©̽Ý@Ã̽ÝÁ!̽öþ#̽:'̽°Ä@ ÿÿÿÿÿÿÿÿ^3̽ltt-kconsumerd2?Øi}'Q=̽ltt-kconsumerd2kworker/0:1#†'þ½!ú.þ½"=1þ½#L1¾#¸1¾!Å1¾"Q 1¾!A 1¾"Ç1¾#pÛc¾!2àc¾"Êác¾#¯¹–¾#~½–¾!|¿–¾"€Á–¾!…–¾"Æ–¾#¶˜É¾!]ɾ"õžÉ¾#Yrü¾#ùtü¾!ñvü¾"zxü¾!myü¾"o}ü¾#ßO/¿!ÈT/¿"™V/¿#Ë,b¿#¼/b¿!´1b¿"j3b¿!o4b¿"Ú8b¿#[ •¿!J•¿"ú•¿#jéÇ¿#õëÇ¿!êíÇ¿"yïÇ¿!lðÇ¿"ôÇ¿#Æú¿!¯Êú¿"PÌú¿1À&Àuhci_hcd:usb4 óÄ&À7Æ&Àeth0#+Ì&À !Í&À!FÏ&À"+ù&À#' -À#Õ£-À!«¦-À"ñ¨-À!ó©-À"±¯-ÀÙFIÀahci mWIÀêXIÀuhci_hcd:usb3 m]IÀº^IÀeth1 mcIÀ#û{`À!‚`À"„`À#[“À#–]“À!‹_“À"Va“À![b“À"½f“À#™<ÆÀ!pAÆÀ"CÆÀ#?ùÀ#âùÀ!øùÀ"ùÀ!ƒùÀ"l#ùÀ#3ò+Á!Ýö+Á"Àø+Á#ÁÏ^Á#@Ò^Á!2Ô^Á"ÄÕ^Á!·Ö^Á"­Ú^Á#=ª‘Á!ó®‘Á"š°‘Á#‡ÄÁ#i‹ÄÁ!vÄÁ"ÄÁ!òÄÁ"?”ÄÁ#.d÷Á!Ûh÷Á"Žj÷Á# D*Â#¨G*Â!šI*Â" K*Â! L*Â"êP*Â#»]Â!}#]Â"%]Â#úÂ#ºýÂ!ÍÿÂ"kÂ!UÂ"Â#ŒÜÂÂ!áÂÂ"ÂâÂÂ#¬²õÂ#‡¶õÂ!v¸õÂ"ÿ¹õÂ!ïºõÂ"è¾õÂ#:•(Ã!ê™(Ã"š›(Ã#Ço[Ã#Ts[Ã!Uu[Ã"äv[Ã!.x[Ã"Õ|[Ã#ßKŽÃ!QŽÃ"ùRŽÃ#X)ÁÃ#`-ÁÃ!^/ÁÃ"¹1ÁÃ!Ä2ÁÃ"„6ÁÃ#NôÃ! ôÃ"À ôÃ'>ùÃahci ôLùÃkNùÃuhci_hcd:usb3 åRùÃTùÃeth1 ÍXùÃ#€ä&Ä#Rè&Ä!Úê&Ä"´ì&Ä!¶í&Ä"èñ&Ä#½YÄ!kÂYÄ"ÄYÄ#{›ŒÄ#\ŸŒÄ!E¡ŒÄ"1£ŒÄ!¤ŒÄ"z¨ŒÄ#w¿Ä!¥{¿Ä"…}¿Ä#ÀTòÄ#MXòÄ!-ZòÄ"û[òÄ!ë\òÄ"ç`òÄ#4%Å!ü8%Å"š:%Å\*Åahci ±k*Åòl*Åuhci_hcd:usb3 ã…È"1ç…È#ú¹¸È!ݾ¸ÈÁüÁõ©‹à‡îØF²ÿbÊ™HŽáÀ¸ÈÈ7ŸÇ>ÔÈ7Ѐ"áÀ¸È#˜ëÈ#ƒ›ëÈ!‡ëÈI¢ëÈltt-kconsumerd2%¨ëÈltt-kconsumerd2x"ϬëÈ!õ­ëÈ"?²ëȼ¶ëÈkworker/0:1ltt-kconsumerd2ÜÕëÈ·ÙëÈöÝëÈëÞëÈö€@ŽK=¿5àëÈâëÈHŽK=¿díëÈ>ïëÈÛ!ìÈu$ìÈ`-ý,ìÈp0 ltt-kconsumerdxHìȦJìÈP¥NìÈ£PìÈÝPEZìÈÝa\ìÈö§^ìÈ×aìȰÄ@ ÿÿÿÿÿÿÿÿ nìÈltt-kconsumerd2ÈpÙ}'‡xìÈltt-kconsumerd2kworker/0:1#esÉ!-zÉ"v|É#hQQÉ#ÝTQÉ!óVQÉ"ÖXQÉ!ÛYQÉ"g^QÉ#D-„É!Õ1„É"ô3„É#Ó·É#u ·É!v·É"·É!·É"W·É¬8¼Éahci }I¼ÉåJ¼Éuhci_hcd:usb3 §O¼É0Q¼Éeth1 (V¼É#æéÉ!,ëéÉ"líéÉ#èÁÊ#,ÆÊ!ÈÊ"ÊÊ!÷ÊÊ"˜ÏÊ#¡OÊ!ƒ¦OÊ"Z¨OÊ#~‚Ê#°€‚Ê!´‚‚Ê"g„‚Ê!]…‚Ê"‰‚Ê#ÁZµÊ!Œ_µÊ"!aµÊ# 7èÊ#&:èÊ!c<èÊ"é=èÊ!Ö>èÊ"ãCèÊ#^Ë!Ë"ÁË#NïMË#`òMË!=ôMË"ÕõMË!¿öMË"ÇúMË#{Í€Ë!Ò€Ë"½Ó€Ë#Ǭ³Ë#“°³Ë!m²³Ë"J´³Ë!Oµ³Ë"Ö¸³Ë#¾‡æË!?‹æË"ñŒæË#¤gÌ#+kÌ!mÌ"©nÌ!–oÌ"JsÌ#MCLÌ!-GLÌ"ILÌ#ÒÌ#S#Ì!3%Ì"¹&Ì!¦'Ì"<+Ì#Øú±Ì!Jþ±Ì"âÿ±Ì#Ä×äÌ#BÛäÌ!aÝäÌ"öÞäÌ!àßäÌ"?ääÌ#´Í!—·Í"P¹Í#”JÍ#¯—JÍ!¿™JÍ"E›JÍ!2œJÍ"7 JÍ#ùn}Í!‘s}Í"eu}Í#ÊI°Í#¢M°Í!”O°Í"›Q°Í!ŠR°Í"¿V°Í:µÍahci ÚµÍN‘µÍuhci_hcd:usb3 Ô•µÍu—µÍeth1 .œµÍ#ê'ãÍ!ú,ãÍ"./ãÍ#CÎ#¾Î!Ë Î"Q Î!8 Î"”Î#KÝHÎ!âHÎ"ŸãHÎ#À{Î#Ã{Î!ŽÅ{Î"Ç{Î! È{Î"ùÌ{Î#혮Î!ªœ®Î"Bž®Î#øwáÎ#¾{áÎ!ª}áÎ"láÎ!t€áÎ"O„áÎ#5VÏ!ÅYÏ"Z[Ï#2GÏ#6GÏ!H8GÏ"m:GÏ!W;GÏ"ï?GÏ#zÏ!‹zÏ")zÏ#xë¬Ï#óî¬Ï!ñð¬Ï"qò¬Ï!^ó¬Ï"~÷¬Ï#ÉßÏ!dÍßÏ"/ÏßÏ#o£Ð#Þ¦Ð!î¨Ð"¹ªÐ!Á«Ð"°Ð#ó~EÐ!ÖƒEÐ"¡…EÐ#²_xÐ#*cxÐ! exÐ"ºfxÐ!¡gxÐ"ÉkxÐ횈Ðahci Æ©ˆÐ(«ˆÐuhci_hcd:usb3 НˆÐŰˆÐeth1 uµˆÐ#™:«Ð! @«Ð"XB«ÐÉǵÐahci œÖµÐþ×µÐuhci_hcd:usb3 fܵСݵÐeth1 {âµÐ#ÄÞÐ#lÞÐ!sÞÐ"ÅÞÐ!² ÞÐ"S%ÞÐ#ÉöÑ!øúÑ"¢üÑ#ÔCÑ#–×CÑ!ÁÙCÑ"JÛCÑ!:ÜCÑ"$àCÑ#±vÑ!àµvÑ"u·vÑ#¯‹©Ñ#©Ñ!‘©Ñ"Ò’©Ñ!“©Ñ"˜©Ñ#miÜÑ!ðmÜÑ"‚oÜÑ#.BÒ#—EÒ!tGÒ"?IÒ!)JÒ"INÒ#ÔBÒ!{#BÒ":%BÒ#ûütÒ#uÒ!ûuÒ"ÉuÒ!ÎuÒ"µ uÒ#ÛÙ§Ò!Þ§Ò"8à§Ò#»¸ÚÒ#E¼ÚÒ!X¾ÚÒ"ÿ¿ÚÒ!dÁÚÒ"ÅÚÒ#¦“ Ó!k˜ Ó"?š Ó#q@Ó# u@Ó!7w@Ó"üx@Ó!z@Ó"Ó}@Ó#õOsÓ!œTsÓ"²VsÓ# +¦Ó#®.¦Ó!¦0¦Ó")2¦Ó!3¦Ó"$7¦Ó# ÙÓ!gÙÓ">ÙÓ#æ Ô#‹é Ô!¡ë Ô"Hí Ô!;î Ô"Oò Ô#›¿>Ô!„Ä>ÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽsÆ>ÔÈ7¿Q•ÝÈ7à€"sÆ>Ô#õ qÔ#m¤qÔ!k¦qÔ‚­qÔltt-kconsumerd2DzqÔltt-kconsumerd2x"Œ·qÔ!µ¸qÔ"Ÿ¼qÔªÀqÔkworker/0:1ltt-kconsumerd2mëqÔƒðqÔöŸþqÔsrÔö€@ŽK=¿†rÔÃrÔHŽK=¿krÔ]rÔù^rÔarÔ€-ÖirÔH†0 ltt-kconsumerdƒrÔx…rÔp‰rÔËrÔÝpg™rÔÝe›rÔöƒžrÔº rÔö£rÔ¤rÔö€@ŽK=¿ ¦rÔé§rÔHŽK=¿¯±rÔ‰³rÔÌârÔZårÔp-€ìrÔx0 ltt-kconsumerd‰sÔsÔ`; sÔ sÔÝ`¢sÔÝysÔösÔ+sÔ°Ä@ ÿÿÿÿÿÿÿÿ5*sÔltt-kconsumerd2¹x)R'3sÔltt-kconsumerd2kworker/0:1#‹|¤Ô!Bƒ¤Ô"m…¤Ô#¿Z×Ô#1^×Ô!/`×Ô"Áa×Ô!´b×Ô"[g×Ô#7 Õ!Ù; Õ"È= Õ#¼=Õ#F=Õ!=Õ"¸=Õ!¥=Õ"•=Õ#NìoÕ!ÞïoÕ"pñoÕ#Í¢Õ#€Ð¢Õ!~Ò¢Õ" Ô¢Õ!÷Ô¢Õ"•Ù¢Õ#íªÕÕ!G®ÕÕ"°ÕÕ#B…Ö#™ˆÖ!‚ŠÖ" ŒÖ!Ö"0‘ÖãÖahci $Ö†Öuhci_hcd:usb3 ÖJÖeth1 ô"Ö#>b;Ö!±g;Ö"ˆi;Ö#C=nÖ#Ä@nÖ!¹BnÖ"´DnÖ!§EnÖ"åInÖ#¬¡Ö!> ¡Ö"Ó!¡Ö#aùÓÖ#6ýÓÖ! ÿÓÖ"ÞÔÖ!ãÔÖ"ÙÔÖ#åÖ×!€Û×"'Ý×#[±9×#ß´9×!+·9×"´¸9×!¡¹9×"*¾9×#OŒl×!öl×"²’l×#[nŸ×#–rŸ×! tŸ×",vŸ×!wŸ×"ÁzŸ×#JÒ×!ëNÒ×"€PÒ×#³"Ø#4&Ø!)(Ø"<*Ø!A+Ø"¶.Ø#[8Ø!S8Ø"f8Ø#¾ájØ#«åjØ!çjØ"GéjØ!4êjØ"„îjØ#z¾Ø!'ÃØ"ÅØ#™ÐØ#­œÐØ!ÃžÐØ"L ÐØ!9¡ÐØ"V¥ÐØ#©vÙ!V{Ù"÷|Ù#;O6Ù#¹R6Ù!®T6Ù"vV6Ù!uW6Ù">[6Ù#ó/iÙ!²4iÙ"D6iÙ#² œÙ#®œÙ!šœÙ"/œÙ!œÙ"ZœÙ# êÎÙ!³îÎÙ"TðÎÙ#ÆÚ#dÊÚ!bÌÚ"åÍÚ!ÏÎÚ"=ÓÚ#É£4Ú!<©4Ú"Ϊ4Ú#¡}gÚ#IgÚ!5ƒgÚ"Ê„gÚ!º…gÚ"Ô‰gÚ#Ú]šÚ!~bšÚ"dšÚ#¡8ÍÚ#g<ÍÚ!A>ÍÚ"è?ÍÚ!í@ÍÚ" EÍÚ#KÛ!ÈÛ"fÛ#Qð2Û#eô2Û!iö2Û"|ø2Û!‡ù2Û"Yý2Û#ÐeÛ!›ÔeÛ"ÖeÛ# ¬˜Û#¤¯˜Û!±˜Û"=³˜Û!-´˜Û"J¸˜Û#²ˆËÛ!MËÛ"9ËÛ#iþÛ#¤lþÛ!nþÛ"ppþÛ!rqþÛ"ÌtþÛ#¹C1Ü!„H1Ü"=J1Ü#ƒ!dÜ#%dÜ!'dÜ"Ó(dÜ!Õ)dÜ"•-dÜ#¬ú–Ü!\ÿ–Ü"ú—Ü#RÚÉÜ#úÝÉÜ!æßÉÜ"xáÉÜ!hâÉÜ"LæÉÜ?/ÏÜahci 3>Ïܳ?ÏÜuhci_hcd:usb3 9DÏÜtEÏÜeth1 JÏÜ#ˆµüÜ!˜ºüÜ"Þ¼üÜ#“/Ý#¦–/Ý!•˜/Ý"]š/Ý!e›/Ý"yŸ/Ý#çpbÝ!µubÝ"AwbÝ#M•ÝÁüÁõ©‹à‡îØF²ÿbÊ™HŽ“P•ÝÈ7»[éÈ7Ѐ#“P•Ý!ÚT•Ý[[•Ýltt-kconsumerd2Hb•Ýltt-kconsumerd2x"þf•Ý!$h•Ý"l•ݦp•Ýkworker/0:1ltt-kconsumerd2›•ÝõŸ•Ýö.£•Ý¥•Ýö€@ŽK=¿^¦•ÝM¨•ÝHŽK=¿õ´•Ýð¶•Ý_ö•Ýäø•Ý€-Q–ÝÀ‡0 ltt-kconsumerdÊ–ÝΖÝpâ!–ݶ#–ÝÝp™.–ÝÝŽ0–Ýö¶2–ÝU6–ݰÄ@ ÿÿÿÿÿÿÿÿ¾B–Ýltt-kconsumerd2wâ 4€'çL–Ýltt-kconsumerd2kworker/0:1#+ÈÝ!#2ÈÝ"o4ÈÝ#/ûÝ#× ûÝ!á ûÝ"ÜûÝ!ÌûÝ"ßûÝ#–æ-Þ!1ë-Þ"çì-Þ#QÁ`Þ#ÖÃ`Þ!àÅ`Þ"`Ç`Þ!PÈ`Þ"aÌ`Þ#"›“Þ!`Ÿ“Þ"û “Þ#–{ÆÞ#ÆÞ!!ÆÞ"΂ÆÞ!ЃÆÞ"®‡ÆÞ#¯WùÞ!6[ùÞ"Ñ\ùÞ#’4,ß#8,ß!:,ß"£;,ß!<,ß"ã@,ß#µ_ß!H_ß"_ß#Uð‘ß#ô‘ß! ö‘ß"í÷‘ß!Ýø‘ß"ëü‘ß#<ÉÄß!æÍÄß"uÏÄß#!§÷ß#Šª÷ß!…¬÷ß"S®÷ß!X¯÷ß"ý²÷ß#rƒ*à! ˆ*à"·‰*à#‚b]à#èe]à!ìg]à"oi]à!Yj]à"n]à#Ê:à!#?à"AàÜ’àuhci_hcd:usb4 á’àNâ’àeth0#Ùç’à Æè’à!Íê’à"ÿ’à‡Ä¦àahci DÔ¦à©Õ¦àuhci_hcd:usb3 Ú¦àUÛ¦àeth1 à¦à#kÃà#EÃà!…Ãà"ì Ãà!ß!Ãà"¼&Ãà#¥ùõà!Óþõà"×öà#ŒÒ(á#éÕ(á!ê×(á"mÙ(á!WÚ(á"tÞ(á#_°[á!'µ[á"Ѷ[á#ÍŽá#«‘Žá!—“Žá"וŽá!â–Žá"³›Žá#kÁá!+pÁá"ÀqÁá#ÃFôá#‰Jôá!™Lôá"^Nôá!`Oôá"³Sôá#ê$'â!Ž)'â"D+'â#(Zâ#”Zâ!¼Zâ"HZâ!kZâ"m Zâ#ÌÜŒâ!sáŒâ"MãŒâ#Bº¿â#Õ½¿â!â¿¿â"eÁ¿â!R¿â"cÆ¿â#Š™òâ!£žòâ"} òâ#ês%ã#ƒw%ã!™y%ã"^{%ã!i|%ã"’€%ã#×UXã!iZXã" \Xã#-‹ã#%1‹ã!&3‹ã"¬4‹ã!–5‹ã"§9‹ã#< ¾ã!õ¾ã"ƾã#>èðã#¼ëðã!Ãíðã"Lïðã!<ððã"¼ôðã#ïÃ#ä!ôÇ#ä"ŒÉ#ä#~ Vä#b¤Vä!T¦Vä"Ú§Vä!ͨVä"¬Vä#W‚‰ä!°†‰ä"Hˆ‰ä#[¼ä#è^¼ä!Ô`¼ä"`b¼ä!Mc¼ä"vg¼ä#’5ïä!]:ïä"<ïä#×"å#:"å!5"å"ë"å!Ø"å".#"å#£ñTå!MöTå"ß÷Tå#þчå#”Õ‡å!¤×‡å"-Ù‡å!Ú‡å"jÞ‡å#ö¨ºå!­ºå"䮺å#ÉŠíå#SŽíå!Wíå"Ú‘íå!Í’íå"f–íå#Xc æ!îf æ"§h æ#Ø?Sæ#VCSæ!TESæ"ÝFSæ!ÊGSæ"íKSæ#¡†æ!²"†æ"J$†æ#!ý¸æ#ƹæ!Ĺæ"k¹æ!m¹æ"{ ¹æ#ÀØëæ!ÊÝëæ" àëæ¬Èðæahci ^×ðæºØðæuhci_hcd:usb3 ÝðæBÞðæeth1 éâðæ#±ç#‚µç!È·ç"Ò¹ç!ݺç"0¿ç#¦‘Qç!ì–Qç"ê˜Qç#åk„ç#~o„ç!ˆq„ç"Ss„ç!Ut„ç"Ãx„ç#I·ç!ÄL·ç"eN·ç#ß'êç#“+êç!©-êç"q/êç!s0êç"u4êç#Æè!h è"÷ è#$ãOè#ÞæOè!ÓèOè"YêOè!FëOè"ÛïOè#ÜÀ‚è!ÌÄ‚è"dÆ‚è#›µè#þžµè!ÿ µè"Тµè!Õ£µè"ŧµè#§xèè!-}èè"È~èè#ìSé#mWé!VYé"![é!#\é"X`é#^2Né!¤7Né"N9NéH«[éahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄ¹[éÈ74b¡ôÈ7à€ Ĺ[é~½[éuhci_hcd:usb3 ãÁ[éÃ[éeth1 ¹Ç[é#Qé#íé!!é‘éltt-kconsumerd2ò éltt-kconsumerd2x"¨%é!¶&é"‡+éh/ékworker/0:1ltt-kconsumerd2jNéBRéöUédWéö€@ŽK=¿YéñZéHŽK=¿ géiéœé  é-+¨éȇ0 ltt-kconsumerdVÂérÄé€YÈéTÊéÝ€4ÕéÝ2×éöTÙéQÜé°Ä@ ÿÿÿÿÿÿÿÿáèéltt-kconsumerd2ÛÉ{þ€'}òéltt-kconsumerd2kworker/0:1#“ë³é!qò³é"Ìô³é#ýËæé#oÏæé!mÑæé"öÒæé!àÓæé"xØæé#¥ê!+ªê">¬ê#GƒLê#цLê!ƈLê"mŠLê!r‹Lê"ûLê#Ç_ê!8dê"Üeê#É;²ê#>?²ê!9A²ê"C²ê! D²ê"«G²ê#úåê!\åê"0åê# õë#ùë!ûë"¨üë!’ýë"4ëÃaëahci IrëÌsëuhci_hcd:usb3 Oxëyëeth1 C~ë#³ÏJë!ùÔJë"ýÖJë#î²}ë#i¶}ë!g¸}ë"ê¹}ë!׺}ë"¿}ë#‰‹°ë!ð°ë"â’°ë#Ùgãë#Ekãë!Fmãë"oãë!pãë"'tãë#aBì!íFì"ŽHì—ìahci =¦ì·§ìuhci_hcd:usb3 %¬ìT­ìeth1 ²ì#¤%Iì#.)Iì!V+Iì"{-Iì!€.Iì" 2Iì#k|ì!ø|ì"œ|ì#Ú®ì#Þ®ì!óß®ì"ˆá®ì!uâ®ì"öå®ì#oºáì!ê½áì"²¿áì#^˜í#÷›í!ãí"iŸí!Y í"U¤í#VtGí!òwGí"ŠyGí#TQzí#±Tzí!²Vzí"}Xzí!Yzí"]zí#0)­í!Ï,­í"².­í#U àí#!àí!7àí"êàí!ìàí"¾àí#øèî!Ãíî"âïî#nÃEî#+ÇEî!/ÉEî"3ËEî! ÌEî"aÐEî#ª¢xî!¦xî"¨§xî#È|«î#.€«î!>‚«î"„«î!…«î"³ˆ«î#XÞî!?\Þî"×]Þî#f7ï#Þ:ï!ß<ï"k>ï!X?ï"ñBï#Dï!éDï"{Dï#¡ðvï#jôvï!eövï"øvï!ùvï"Åüvï#QÍ©ï!ªÑ©ï"NÓ©ï#¬¨Üï#¬Üï!þ­Üï"ɯÜï!˰Üï"[´ÜïÑmÞïuhci_hcd:usb4 orÞïÈsÞïeth0#€yÞï zÞï!\|Þï"YÞï#ö†ð!ÛŒð"ð#ZdBð#/hBð!BjBð" lBð!ýlBð"‰qBð#Ì?uð!*Euð"%Guð#ݨð#ñ¨ð!¹ ¨ð"´"¨ð!¤#¨ð"?(¨ð#úÚð!­þÚð"EÛð#oØ ñ#çÛ ñ!ÙÝ ñ"kß ñ!aà ñ"Bä ñ#Ÿ´@ñ!%¹@ñ"ƺ@ñ›üEñahci 7 Fñ“ Fñuhci_hcd:usb3 øFñ0Fñeth1 ×Fñ#´‘sñ#w•sñ!—sñ"™sñ!lšsñ"õžsñ#9l¦ñ!¡p¦ñ"Zr¦ñ#êGÙñ#wKÙñ!MÙñ"1OÙñ!*PÙñ"nTÙñ#†% ò!…) ò"+ ò#?ò#p?ò!w ?ò"9 ?ò!; ?ò"=?ò#uãqò!Ëçqò"¥éqò#ﺤò#y¾¤ò!†À¤ò"N¤ò!Päò"sǤò#zš×ò!”ž×ò"D ×ò#>{ ó#ž~ ó!–€ ó"^‚ ó!fƒ ó"#‡ ó#øS=ó!ÆX=ó"¦Z=ó#›0pó#14pó!D6pó"Ç7pó!±8pó"éÔô"[@Ôô#±õ#õ!õ"}õ!mõ"Ã!õ#ýõ9õ!;ú9õ"Äû9õ#Ðlõ#¯Ólõ!ŒÕlõ"Z×lõ!_Ølõ"Ülõ#«Ÿõ!…¯Ÿõ"±Ÿõ# ŠÒõ#¨Òõ!—Òõ"‘Òõ! ’Òõ"ß•Òõ#0eö!­iö"kö#°A8ö#‚E8ö!€G8ö" I8ö!óI8ö"òM8ö#ó kö!%kö"'kö#¯ýö#$žö!1žö"ížö!ïžö"¾ žö#þÚÐö!ŸßÐö"páÐö#Z¸÷#á»÷!ô½÷"†¿÷!sÀ÷"{Ä÷#–6÷!Lš6÷"ð›6÷#›qi÷#ui÷!wi÷"Žxi÷!xyi÷";}i÷#qLœ÷!Qœ÷"°Rœ÷#…*Ï÷#.Ï÷!0Ï÷"Ì1Ï÷!Ñ2Ï÷"š6Ï÷#°ø!H ø"ø#ƒå4ø#‹é4ø!žë4ø"„í4ø!wî4ø"”ò4ø#,Ágø!TÆgø"XÈgø#(šø#Ò šø!©¢šø"D¤šø!1¥šø"*©šø# {Íø!²€Íø"P‚Íø#Xù#—[ù!t]ù"6_ù! `ù" dù#ô03ù!é53ùë;3ùkworker/3:2+(x"#@3ù—D3ùkworker/0:1kworker/3:2+( R3ùkworker/3:2+(-¨ûÉ&c]3ùkworker/3:2+(kworker/0:1#¿fù#ïfù!/fù"Nfù!\fù"|"fù#bí˜ù!Bò˜ù"ïó˜ù#.ÍËù#ßÐËù!ÎÒËù"TÔËù!AÕËù"õØËù›CÑùahci ˆSÑùùTÑùuhci_hcd:usb3 mYÑùÉZÑùeth1 š_Ñù#©þù!!®þù"°þù#^ƒ1ú#3‡1ú!‰1ú"‹1ú!Œ1ú"é1ú#g`dú!¡edú"«gdú#]?—ú#ÚB—ú!ÞD—ú"‘F—ú!~G—ú"MK—ú#Êú!# Êú"Ç!ÊúŠ¢Ïúahci l±ÏúÔ²Ïúuhci_hcd:usb3 K·Ïú‰¸Ïúeth1 0½Ïú#‰øüú#üüú!5þüú"0ýú!5ýú"ýú#”Õ/û!qÚ/û"cÜ/û#³²bû#º¶bû!иbû"źbû!²»bû"Ï¿bû#œŒ•û!ã•û"“’•û#¥lÈû#VpÈû!irÈû"ItÈû!QuÈû"æyÈû#ËHûû!ÙLûû"gNûû#†%.ü#=).ü!+.ü"T-.ü!\..ü"{3.ü#Šÿ`ü!Îaü"Æaü#õß“ü#”ã“ü!ªå“ü"9ç“ü!bè“ü""ì“ü#wºÆü!÷¾Æü"˜ÀÆü#¾™ùü#3ùü!4Ÿùü"¹ ùü!¦¡ùü"l¥ùü#1t,ý!ªy,ý"E{,ýD.ýkworker/0:1bash2‹î.ýuhci_hcd:usb4 éó.ýWõ.ýeth0#û.ý ü.ý!þ.ý"/ýì~1ý;ËÒ1ý 0@dSêÿÕ1ý À@â2ýнíg ‘SêÿXg!2ýþÿÿÿÿÿÿÿ{%2ý "ÿÿÿÿ6+2ý ð hÈG2ý éígX!ìg°ÿÿÿÿÿÿÿp7hPpQ2ýþÿÿÿÿÿÿÿØj2ýl½íg°ÿÿÿÿÿÿÿp5hþw2ýíy2ýàòCêÿàòCêÿ°ÿÿÿÿÿÿÿp5h}2ýâ~2ý Ä“…2ý hO‡2ýÄÞˆ2ý«”2ýнígÄš2ýþÿÿÿÿÿÿÿ ¾2ý¾S h¾S hï÷CêÿÚÐ2ýÃÒ2ý˜ôCêÿ@ï÷Cêÿ Ú2ý@‰ë2ý0óCêÿ0óCêÿ¾S hÈ1h~í2ý2÷2ý (iøý2ý ° hJ3ý ð h0#3ý ð h#3ý h(2ÿÿÿÿ(+3ý h—.3ýÿþÿo)pÿýÿoP03ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽ!;3ýÈ7¥·9ýÈ7À€!;3ýнígÿþÿop5hkE3ýþÿÿÿÿÿÿÿÏM3ýs) hs) h¿÷Cêÿ\3ý”^3ýhôCêÿ@¿÷Cêÿïc3ý@g3ýóCêÿóCêÿs) hÈ1hªi3ýÊm3ý °¯ òu3ý pËgów3ý Ìgð„3ý ‡†3ý ìg Þ3ý ìgž3ý0Ðìgÿþÿo)pÿýÿoL 3ýÒ°3ýнígÿþÿop5hæ·3ýþÿÿÿÿÿÿÿ-È3ýü& hü& h÷CêÿyÖ3ýeØ3ý8ôCêÿ@÷CêÿÝ3ý@ûá3ýÐòCêÿÐòCêÿread.so.È1hðã3ý9æ3ý "ÿÿÿÿì3ý   hQú3ý  ³!æ4ý °©gó4ý «gð14ý h4ý Ëg `œ4ý Ëgu*4ý 0Ëg 32ÿÿÿÿ124ý 0ËgGC4ýÿþÿo)pÿýÿoE4ý¼U4ýнígÿþÿop5hÇ\4ýþÿÿÿÿÿÿÿ…t4ýî· hî· h_÷CêÿЃ4ý×…4ýôCêÿ@_÷CêÿçŠ4ý@4ý òCêÿ òCêÿî· hÈ1h‘4ý›4ý 8(8{¢4ý €qgR¤4ý ‰gðç®4ý ±4ý ©gP2¾4ý ©gVÍ4ý `©g8H2ÿÿÿÿ+×4ý `©gÇé4ýÿþÿo)pÿýÿowë4ýÀ75ý "ÿÿÿÿ,>5ý h$R5ý "ÿÿÿÿîT5ý € h¦`5ý "ÿÿÿÿ^c5ý p hÕm5ýž‡ hp h"ÿÿÿÿq5ýž¼“6ý ©g@Øjsg/ªŸ6ý À6ý ËgªgñÇ6ý !7ý hk'ígö7ý Ø 7ý hÄ+k'ígØ%7ý O*7ýÚЉ hèüCêÿýCêÿk'íg‡ h@-7ýÚ2/7ýà‰ hýCêÿk'íg‡ hv07ýP27ýÊüCêÿ‰‡ h^67ýÊõÿÿÿÿÿÿÿ+H7ý °úCêÿ‡ h#J7ý L7ý !°úCêÿ‡ hhM7ý 3O7ýhûCêÿ‡ hUQ7ý«^7ýaüCêÿ‡ hòb7ýa®­8ý dðÅ`n©g`¼qgÁ¯8ý À@¿±8ý ÐBdÐBðÅ`n©g`¼qgo¶8ý ÐBà"9ý °ùCêÿ@ígÕ$9ý µ&9ý °ùCêÿ@ígÿ'9ý ¬q9ý)°n©g À@×…9ý)éˆ9ý* öCêÿn°n©g À@³9ý*þÿÿÿÿÿÿÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽF¶9ýÈ7N6>ýÈ7À€F¶9ý öCêÿ°n©g À@ÞÏ9ýšÔ9ý)ÿÿÿÿÿÿÿÿIà9ý)2â9ý*PøCêÿnÿÿÿÿÿÿÿÿÕ:ý*þÿÿÿÿÿÿÿ :ýPøCêÿÿÿÿÿÿÿÿÿ§:ýÕC:ýçõ…g¶S:ý„s:ýÀøCêÿÀøCêÿ ?v:ýØ|:ý "ÿÿÿÿ6‚:ý à h÷„:ýà h"ÿÿÿÿÙ“:ýAÔ:ýà hÌõÿÿÿÿÿÿðÍ@ U©g8×:ýÅÝ:ý°Ä@Ìõÿÿÿÿÿÿ°Ä@ U©g7á:ý&ã:ý à hÌõÿÿÿÿÿÿ°Ä@ U©g²ó:ý %/;ýl½ígp5hÃ9;ýÇ;;ýðCêÿðCêÿp5hã=;ýØ?;ý ÄPF;ý h-H;ýħI;ýÓS;ýнígÄTZ;ýþÿÿÿÿÿÿÿx;ýyC hyC hŸõCêÿŠ;ý{Œ;ýHòCêÿ@ŸõCêÿk“;ý@9˜;ýàðCêÿàðCêÿmpat.so.›;ýC¯;ý Èt º;ý Qg!¼;ý pQgð²Ç;ý Ë;ý `qg `†Õ;ý `qg¼ù;ý0Pnqgÿþÿo)pÿýÿoû;ý4 <ýнígÿþÿoÒ@N<ýþÿÿÿÿÿÿÿß<ýúD húD hÿòCêÿx+<ý‚-<ý¨ïCêÿ@ÿòCêÿ„4<ý@‹9<ý@îCêÿ@îCêÿúD hpÎ@ <<ý$C<ý Ðz!VM<ý €/gŸO<ý Ð0gð§Y<ý \<ý ÀPg @ág<ý ÀPgb}<ý àPgÐ2ÿÿÿÿ$…<ý àPg†˜<ý0ÎPgÿþÿo)pÿýÿo9š<ýTí<ý ÀPgx¹/g9“ö<ý 2 =ý `qg0QgÅ=ý &=ý hÄè÷Cêÿ0Qg!8=ý #W=ýl½ígp5hßa=ýÚc=ý ðCêÿ ðCêÿp5hÿe=ýîg=ý Äçn=ý hÁp=ýÄPr=ý}=ýнígÄ“ƒ=ýþÿÿÿÿÿÿÿŸ=ý¿> h¿> h/õCêÿ°®=ý“°=ýØñCêÿ@/õCêÿ ·=ý@ ¼=ýpðCêÿpðCêÿnss_nis.š¾=ýcÅ=ý ¸¤ ÎÏ=ý ÐgÕÑ=ý pgðÜ=ý ÑÞ=ý `/g |ç=ý `/g¸>ý0Pn/gÿþÿo)pÿýÿo’>ýi'>ýнígÿþÿo¸Ü@¿.>ýþÿÿÿÿÿÿÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽ5>ýÈ7·§BýÈ7 z€5>ýôA hôA h_òCêÿxH>ý‚J>ýïCêÿ@_òCêÿQQ>ý@FV>ý íCêÿ íCêÿ_files.sÙ@›X>ýqg>ý ˆµ Rq>ý îf8s>ý ÀîfðU}>ý ›>ý °g  ©‰>ý °gˆ­>ý0H¾gÿþÿo)pÿýÿoY¯>ýûè>ý °g¨.îf7ò>ý >?ý `/g0íg+?ý >#?ý hÄx÷Cêÿ0íg¼5?ý U?ýN[Qg¶=c?ýv?ýy?ý„?ýÐøCêÿÐøCêÿ‡?ý‰?ý Äë?ý à hI“?ýÄœ”?ýÄŸ@ý à hÄ@æ@àr/g24@ý › @ýÄ@æ@àr/g2@ýJ@ýs¨ÿÿÿÿÿÿÿÓ@ýsù@ýs@æ@`n©gÈn©gm @ýs &@ýf`n©gÈn©g*'@ýf°4@ý h/lttng/cÈn©gœE@ý~@ýê@¶wŸ@ý¤Õ@ýàóCêÿàóCêÿÿÿÿÐôCêÿ8Ø@ýÚ@ý "ÿÿÿÿvß@ý à hâ@ýà h"ÿÿÿÿòð@ýÞþ@ýà h U©gÐôCêÿ“Aý›Aýë@‡ hÐôCêÿŽ Aý¤Aý à h‡ hÐôCêÿ Aý C6AýN[Qg¶š?Aý¬BAýkDAýhGAýøCêÿøCêÿxIAýgKAý ĬQAý à h}SAýÄâTAýÄpAý à hÄ0ê@™™™™™™™àr/g2Q”Aý ¯–AýÄ0ê@™™™™™™™àr/g2šAýÄžAýs¨ÿÿÿÿÿÿÿ™™™™™™™ AýsZ¢Aýsê@`n©g™™™™™™™ê@£Aýsç¥Aýf`n©g™™™™™™™ê@õ¦Aýfµ­Aý)ê@«ºAý)öÆAý*ÀúCêÿnI uäAýltt-sessiond2îéAý*;ñAý.ðúCêÿ ºBý. > Bý/ðúCêÿ3Býlttng2¬Ú'Ù”'ì$Býlttng2kworker/0:1 IBýlttng2xPBýkworker/0:1lttng2ÖUBýlttng2w žæ”'E\Býlttng2kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽó’ÚiÉ7¼“ÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/0000755000175000017500000000000012075630002020223 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_40000755000175000017500000001000012075630002020547 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]KLîʼX5!Ê8€ßˆ Ê ˆ heartbeatÀ:à ˆ heartbeat`úŒ ˆ heartbeat@ôW ˆ heartbeat ²  ˆ heartbeat Œû ˆ heartbeat ½¦ ˆ heartbeatÃø ˆ heartbeatXð ˆ heartbeatbabeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_30000755000175000017500000001000012075630002020546 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]íÊË(!ÊÀ€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_00000755000175000017500000001000012075630002020543 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]¼ÕéÊà¢ç ÊÀ€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_60000755000175000017500000001000012075630002020551 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]Ó<ðÊ–úd!ʸ€HñÇ Ê ˆ heartbeatbabeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_20000755000175000017500000001000012075630002020545 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]M>ìÊD)!Êè€ôé† ÊŽ ˆ heartbeat`áîŽ ˆ heartbeat€1òŽ ˆ heartbeatà!éŽ ˆ heartbeat 1Ž ˆ heartbeat`m>Ž ˆ heartbeatàïåŽ ˆ heartbeat ?㎠ˆ heartbeat€¤QŽ ˆ heartbeatà¦÷Ž ˆ heartbeatbabeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_50000755000175000017500000001000012075630002020550 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]D ïÊyŽ'!ÊÀ€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_70000755000175000017500000001000012075630002020552 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]úýðÊnŒi!ÊÀ€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/u_10000755000175000017500000001000012075630002020544 00000000000000ÁüÁbKÙÍN®º¸ƒBá¹j]øêÊñ-!ÊÀ€babeltrace-1.2.1/tests/ctf-traces/succeed/wk-heartbeat-u/metadata0000755000175000017500000001000012075630002021640 00000000000000WÑubKÙÍN®º¸ƒBá¹j]@Q€typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; } := uint16_t; typealias integer { size = 32; align = 8; signed = false; } := uint32_t; typealias integer { size = 64; align = 8; signed = false; } := uint64_t; typealias integer { size = 5; align = 1; signed = false; } := uint5_t; typealias integer { size = 27; align = 1; signed = false; } := uint27_t; trace { major = 1; minor = 8; uuid = "624b19d9-19cd-4eae-bab8-8342e1b96a5d"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; env { vpid = 3208; procname = "wk-heartbeat"; domain = "ust"; tracer_name = "lttng-ust"; tracer_major = 2; tracer_minor = 0; tracer_patchlevel = 2; }; clock { name = monotonic; uuid = "c19b5ac9-b8e6-4f78-be95-a605d04e34c6"; description = "Monotonic Clock"; freq = 1000000000; /* Frequency, in Hz */ /* clock value offset from Epoch is: offset * (1/freq) */ offset = 1351530929945824323; }; typealias integer { size = 27; align = 1; signed = false; map = clock.monotonic.value; } := uint27_clock_monotonic_t; typealias integer { size = 32; align = 8; signed = false; map = clock.monotonic.value; } := uint32_clock_monotonic_t; typealias integer { size = 64; align = 8; signed = false; map = clock.monotonic.value; } := uint64_clock_monotonic_t; struct packet_context { uint64_clock_monotonic_t timestamp_begin; uint64_clock_monotonic_t timestamp_end; uint32_t events_discarded; uint32_t content_size; uint32_t packet_size; uint32_t cpu_id; }; struct event_header_compact { enum : uint5_t { compact = 0 ... 30, extended = 31 } id; variant { struct { uint27_clock_monotonic_t timestamp; } compact; struct { uint32_t id; uint64_clock_monotonic_t timestamp; } extended; } v; } align(8); struct event_header_large { enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id; variant { struct { uint32_clock_monotonic_t timestamp; } compact; struct { uint32_t id; uint64_clock_monotonic_t timestamp; } extended; } v; } align(8); stream { id = 0; event.header := struct event_header_compact; packet.context := struct packet_context; event.context := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } _vtid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } _vpid; }; }; event { name = "heartbeat:msg"; id = 0; stream_id = 0; loglevel = 13; fields := struct { string _msg; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/test/0000755000175000017500000000000011716211346016371 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_10000755000175000017500000017000011616325072020146 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÔœÈ7k+f„È7Ø€ÿÿ#pBØyÈ7#áLØy !mTØy"ÝVØy!9XØy "°\Øy #a# z# & z # * z!y, z"e. z!g/ z"?9 z!2: z "> z #»þ=z#a>z ! >z"³>z!£>z "Ž >z #ŒÛpz#Þpz #,ápz!„ãpz"våpz!]æpz"Úðpz!Íñpz "–õpz [£szuhci_hcd:usb4 רsz¶«szeth0#Ô±sz ñ²sz!@µsz"DÌsz#¾¹£z#ë¼£z !ˆÂ£z"nÄ£z!gÅ£z "yÈ£z #U–Öz#RœÖz!¡žÖz"œ Öz!˜¡Öz" «Öz#ìg {!xu {"7w {¦»{ahci#9È{ RÊ{¤Ì{uhci_hcd:usb3 0Ñ{(Ó{eth1 ç×{!îÙ{ó{kworker/1:0,&x(&{€ºð0+kworker/0:0" { {kworker/0:0kworker/1:0,&‰&{kworker/1:0,&d5`RQ¾ê4{kworker/1:0,&kworker/0:0#P<{#\R<{ #¹U<{!õX<{"[<{! \<{"7e<{!*f<{ "ÿi<{ #Ë!o{#u,o{ !d1o{"ü2o{!æ3o{ "†6o{ #ñ ¢{#¡¢{!¢{"»¢{!Ÿ¢{"±¢{#‡âÔ{#׿Ô{ !£êÔ{"GìÔ{!.íÔ{ "}ïÔ{ #®Å|#ŽÇ| #rË|!îÍ|"¿Ï|!¸Ð|"—Ù|!Ú| "0Ý| ›´#|ahci 2Ã#|yÄ#|uhci_hcd:usb3 ùÈ#|XÊ#|eth1 Ï#|#9Ÿ:|#š¡:| !4§:|"D©:|!Cª:| "Ѭ:| N<|ahci ®!<| #<|uhci_hcd:usb3 ¢'<|ã(<|eth1 “-<|]$U|ahci r0U|Ñ1U|uhci_hcd:usb3 c6U|›7U|eth1 fÓ|"¯?Ó|!@Ó|"ÈJÓ|!»KÓ| "RNÓ| #ÿ}!Ð}"ƒ}#þî8}#ò8} #Xõ8}!­÷8}"6ù8}!ú8}"‰9}!9} "[9} #¿Ák}!«Ík}"jÏk}#´žž}#O¬ž}!…¯ž}"\±ž}!a²ž}"µ»ž}#ñ„Ñ}!ߊÑ}"ïŒÑ}ÞÜ}ahci P%Ü}ˆ&Ü}uhci_hcd:usb3 ä*Ü},Ü}eth1 À0Ü}#!a~#5e~!Æg~"ši~!œj~"kt~#+57~!/@7~"ßA7~#Aj~#"j~!×!j~"Z#j~!_$j~"U.j~#î÷œ~!2üœ~"Üýœ~#’ÓÏ~#®ØÏ~! ÛÏ~"˜ÜÏ~!ˆÝÏ~"æÏ~#Ʋ!`¸""º#*5#­‘5!&”5"ñ•5!ó–5"rŸ5#?bh!nh"·oh#ÁF›#/K›!–M›":O›!'P›"µX›#Ö$Î!—*Î"J,Î#Ø€#¹€!J €"Ê €!· €"€#6Ý3€!€á3€"!ã3€#Ù¼f€#Áf€!uÃf€"Åf€!6Æf€" Ïf€#;–™€!Öš™€"wœ™€#©sÌ€#êwÌ€!BzÌ€"Â{Ì€!¯|Ì€"ñ…Ì€#¬Qÿ€!¸Wÿ€"qYÿ€#‚%2#P42!Ò62"R82!<92"8C2#e!Òe"Ùe#ê—#“î—!ñ—"ó—!ô—"þþ—#¡ÃÊ!ÉÊ"¬ÊÊ#טý#*¦ý!‚¨ý"ªý!ûªý"9µý#‘0‚!Ά0‚"‡ˆ0‚#›Rc‚#8^c‚!À`c‚"Ibc‚!Qcc‚"Ølc‚#T;–‚!lA–‚" C–‚#tÉ‚#?É‚!£É‚"J É‚!O!É‚"+É‚#òû‚!$÷û‚"Èøû‚#Ï.ƒ#âÓ.ƒ! Ö.ƒ“Ú.ƒkworker/1:0,&x"›Þ.ƒ!Íß.ƒ"·é.ƒàí.ƒkworker/0:0kworker/1:0,&û.ƒkworker/1:0,&!~sQ¾Þ/ƒkworker/1:0,&kworker/0:0#c®aƒ!ü´aƒ"Q·aƒ#Ɖ”ƒ#Ÿ”ƒ! ’”ƒ"È“”ƒ!Ê””ƒ"tŸ”ƒ#äeǃ!ølǃ"·nǃ#‚Búƒ#|Húƒ!ÎJúƒ"QLúƒ!>Múƒ"œXúƒ# -„!5%-„"'-„#íò_„#Gý_„!¥ÿ_„"+`„!`„" `„óf„ahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽ)f„È7ÞE”È7Ø€ )f„Y.f„uhci_hcd:usb3 è2f„54f„eth1 9f„#AÐ’„!òÝ’„"ê’„#í¶Å„#[»Å„!˽ń"x¿Å„!eÀÅ„"°ÌÅ„#Y‰ø„!Ä™ø„"w›ø„#4o+…#Žr+…!×t+…"Šv+…!w+…"„+…#8C^…!9Q^…"US^…#Å'‘…#Ë*‘…!>-‘…"å.‘…!í/‘…"è:‘…#zÄ…!ä Ä…"—Ä…#‰âö…#õåö…!Vèö…"Óéö…!Ãêö…"öö…C†ahci º††uhci_hcd:usb3 Ÿ†Ô†eth1 І#&¿)†!¿Å)†"È)†#\†#§ \†!ç¢\†"²¤\†!œ¥\†"ë³\†#{†!€†"2‚†#ÆS†#Y†!”[†"S]†!U^†"'k†#ž2õ†! 8õ†"²9õ†#Ò(‡#Ã(‡!3(‡"ò(‡!ú(‡"C&(‡#BìZ‡!¸ñZ‡"ƒóZ‡#³Ê‡#œÏ‡!ñч"wÓ‡!aÔ‡"¬à‡#øœÀ‡!¿«À‡"i­À‡#)„ó‡#aˆó‡!¶Šó‡"xŒó‡!zó‡"K˜ó‡#·^&ˆ!_e&ˆ"îf&ˆ#p;Yˆ#µ>Yˆ!%AYˆ"½BYˆ!ªCYˆ"OYˆ#ÃŒˆ!ÓŒˆ"¤!Œˆ#4ö¾ˆ#îù¾ˆ!:ü¾ˆ"Àý¾ˆ!°þ¾ˆ"d¿ˆ#§Òñˆ!§Øñˆ"TÚñˆ#ɦ$‰#µ$‰!‚·$‰"D¹$‰!Cº$‰"YÅ$‰#Š‹W‰!ßW‰"‰’W‰#»hЉ#¶mЉ!&pЉ"ÙqЉ!ÛrЉ"é|Љ#yF½‰!uM½‰"vO½‰#Ù$ð‰#l+ð‰!ë-ð‰"n/ð‰!d0ð‰"ú9ð‰#Ä#Š!f#Š"( #Š#ÌÓUŠ#¼àUŠ!AãUŠ"ÇäUŠ!´åUŠ"•ïUŠf^Šahci Û+^Š7-^Šuhci_hcd:usb3 º1^Šs3^Šeth1 )8^Š#š¼ˆŠ!éÁˆŠ"ÉÈŠ#­—»Š#*œ»Š!Êž»Š"† »Š!s¡»Š"J¬»Š#trîŠ!äwîŠ"ÐyîŠ#ˆQ!‹#U!‹!ôW!‹"˜Y!‹!‚Z!‹"0d!‹#$T‹!(2T‹"Ì3T‹#Î ‡‹#؇‹!$‡‹"O‡‹!]‡‹"õ!‡‹#Žç¹‹!í¹‹"É#âÁì‹#EÈì‹!ýÊì‹"•Ìì‹!‚Íì‹"Ì×ì‹#á Œ! ¨Œ"穌#Æ|RŒ#RŒ!°ƒRŒ"N…RŒ!;†RŒ"ÑRŒ#ì[…Œ!›a…Œ"¸Œ"Ô?¸Œ!¾@¸Œ"áJ¸Œ#³ ëŒ!*ëŒ"ãëŒ#•ç#pò!Fõ"Ìö!¹÷"å#™ÍP!âÕP"CØP#¶©ƒ#¾­ƒ!¦°ƒ"³ƒ!´ƒ"®½ƒ=ˆahci …œˆóˆuhci_hcd:usb3 ˆ¢ˆÌ£ˆeth1 ¨ˆ#戶!û޶"Û¶#cé#Ÿhé!îjé"nlé!ymé"uwé#­7Ž!­DŽ"ZFŽ#OŽ#R#OŽ!&OŽ"Ò'OŽ!Ô(OŽ"¸2OŽ#ˆúŽ!§ÿŽ"i‚Ž#Ù´Ž#ÜÝ´Ž!%à´Ž"Àá´Ž!°â´Ž"ì´Ž#ö°çŽ!l¶çŽ"g¸çŽ#æ#Ï•!Q˜"+š!-›"W¤#wnM!8tM"îuM#}I€#£M€!…P€"/R€!S€"']€#*³!ý.³"ª0³#Rûå#V æ!Õ æ"æ!´æ"žæ#|ß!õä"“æ#ÊÀK# ÅK!ŠÇK" ÉK!÷ÉK"gÒK#Áœ~!õ¤~"À¦~#“u±#’y±!|±"…}±!o~±"퇱#dKä!›Zä"H\ä#\(‘#ß3‘!y6‘"S8‘!U9‘"+B‘# J‘!1J‘"äJ‘#£á|‘#Šë|‘!»í|‘"}ï|‘!gð|‘"ú|‘#ŠÉ¯‘!ϯ‘"dѯ‘#{›â‘#Ú©â‘!5¬â‘"Ó­â‘!É®â‘"F¹â‘#\x’!e„’" †’#<^H’#rdH’!ÖfH’"}hH’!‚iH’"„sH’#2{’!€={’"?{’#®’#®’!Ù!®’"ž#®’! $®’"þ,®’#!öà’!àúà’"¢üà’#ŽÓ“#Û“!!Ý“"ìÞ“!ñß“"¯è“#p¬F“!¨°F“"X²F“#šŠy“#y“!–‘y“"p“y“!u”y“"-y“#æg¬“!8m¬“"÷n¬“#Bß“#™Gß“!Jß“"¶Kß“!¦Lß“"½Vß“:²ä“ahci 9¿ä“Àä“uhci_hcd:usb3 Åä“MÆä“eth1 Ëä“#Ñ ”!é&”"ö(”#¥üD”#ûE”!ME”ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ E”È7à™žÈ7ð€" E”!3E”"«E”#8Ýw”!Tåw”¡ìw”ltt-kconsumerd2öñw”ltt-kconsumerd2x"Žöw”úw”kworker/0:0ltt-kconsumerd2‹&x”H-x”ö·0x”Ç2x”ö€@ŽK=¿P4x”Ÿ6x”HŽK=¿=Dx”MFx” +˜x”%›x” -V¦x”ˆ0 ltt-kconsumerdåÅx”Èx” šÍx”’Ïx”Ý ÚÞx”ÝAáx”öÞãx”òçx”°Ä@ ÿÿÿÿÿÿÿÿ]õx”ltt-kconsumerd2@0¿<y”ltt-kconsumerd2kworker/0:0# ºª”#!Cª”"§Äª”!¯Åª”"ÃϪ”#‹•Ý”!"›Ý”"çœÝ”#…s•#›x•!üz•"ˆ|•!–}•"®†•#°PC•!KUC•"WC•#Ñ+v•#$0v•!33v•"¿4v•!¯5v•"y>v•#Ω•! ©•"p©•#äÛ•#†èÛ•!ÛêÛ•"”ìÛ•!–íÛ•"*öÛ•#(Á–!'Å–"æÆ–#!žA–#¢A–!¤A–"d¦A–!Q§A–"l°A–)#G–ahci 1G–È2G–uhci_hcd:usb3 l7G–¿8G–eth1 {=G–#òzt–!f‚t–"‹„t–#|Y§–#¢]§–!`§–"ìa§–!Ùb§–"œl§–#Ó4Ú–!&<Ú–"è=Ú–#< —#ƒ —!ä —"j —!T —"!! —#gñ?—!#ö?—"Ç÷?—#óÍr—#‚Òr—!×Ôr—"™Ör—!à×r—"Eâr—#'©¥—!ý®¥—"°¥—#†|Ø—#‡Ø—!s‰Ø—"S‹Ø—!=ŒØ—"í–Ø—#Ãb ˜!½h ˜"j ˜#¦?>˜#PD>˜!ÛF>˜"dH>˜!QI>˜"SS>˜#q˜!ø!q˜"¥#q˜#½ú£˜#%ÿ£˜!‰¤˜"i¤˜!k¤˜"[¤˜#ÙÖ˜!VâÖ˜"äÖ˜#I³ ™#ü· ™!]º ™"Ý» ™!ʼ ™"$Ì ™íº™ahci GÊ™úË™uhci_hcd:usb3 SЙ Ñ™eth1 }Ö™#‚Ž<™!9•<™"d—<™#ºmo™#"ro™!›to™"ovo™!\wo™"„o™#¼I¢™#KN¢™!åP¢™"ÑR¢™!»S¢™"[¢™#ò#Õ™#'Õ™!ª)Õ™"H+Õ™!5,Õ™"0Õ™#”š#Ë š!5 š"Ð š!½š" š#,ß:š#â:š!kä:š"Kæ:š!Mç:š"¼ê:š#m»mš#€Àmš!áÂmš"…Ämš!rÅmš"òÌmš#e˜ š#þ› š!>ž š"ÄŸ š!´  š"¤ š#qvÓš#À{Óš!-~Óš"¿Óš! Óš"‰Óš#¹Q›#tT›!ÉV›"^X›!‡Y›"œ\›½6›ahci ‡E›¼F›uhci_hcd:usb3 NK›éL›eth1 Q›#é19›#?69›!µ89›"æ:9›!è;9›"•C9›#« l›#Ñl›!5l›"¾l›!«l›"l›#Ñçž›#6ìž›!}ïž›"Eñž›!/òž›"‘ùž›#%ÆÑ›#þÈÑ›!GËÑ›"*ÍÑ›!ÎÑ›" ÒÑ›#ü™œ#䥜!$¨œ"Ωœ!»ªœ"ù±œ#^‚7œ#ˆ7œ!DŠ7œ"Ó‹7œ!½Œ7œ"n7œ#k\jœ#I`jœ!¡bjœ"3djœ!2ejœ"„mjœ#¿6œ#»:œ!^=œ"ê>œ!ã?œ""Cœ#† М#½М!М"ûМ!èМ"’%М#ê#ïõ!Jø"ú!û"ßþ#'Ï5#zÓ5!äÕ5"—×5!‡Ø5"à5#ɪh#ž®h!M±h"Ù²h!À³h"·h#Š›#ÞŽ›!N‘›"æ’›!Ê“›"››#}gÎ#mÎ!coÎ"øpÎ!ÜqÎ"ôtÎ#ƒBž#rGž!µIž"AKž!"Lž"‡Sž#ã"4ž#Â%4ž!A(4ž"Í)4ž!±*4ž" /4ž# ôfž#yýfž!Èÿfž"Zgž!;gž"î gž#ªØ™žÁüÁõ©‹à‡îØF²ÿbÊ™HŽUß™žÈ7öÃRªÈ7€€#Uß™ž!d䙞".ó™ž!'ô™ž"{÷™ž#ö»Ìž#÷ÀÌž!mÃÌž"JÅÌž!+ÆÌž"ÏÍÌž¬Ñžahci âºÑž5¼Ñžuhci_hcd:usb3 µÀÑžðÁÑžeth1 ¬ÆÑž#¤”ÿž#šÿž!œÿž"ˆžÿž!iŸÿž"£ÿž#¢q2Ÿ#ªu2Ÿ!x2Ÿ"—y2Ÿ!{z2Ÿ"×2Ÿ#4DeŸ#œc #¯£c !ަc "ƒ¨c !|©c "¢°c #q– # |– !Ð~– "– !ú– "-…– #›UÉ #YÉ !Ñ[É "l]É !V^É "úeÉ #î6ü #À:ü !=ü "§>ü !—?ü "¬Bü |'¡ahci õ5¡H7¡uhci_hcd:usb3 Î;¡=¡eth1 ÑA¡#h/¡#d/¡!Î/¡"½/¡!¡/¡"V!/¡#käa¡#ña¡!óa¡"ˆõa¡!oöa¡"Gúa¡#°É”¡#Δ¡!XД¡"íÑ”¡!ÑÒ”¡"Ú”¡#üÇ¡#’ªÇ¡!­Ç¡"¯Ç¡!ö¯Ç¡"³Ç¡#u„ú¡#§ˆú¡!\‹ú¡"<ú¡! Žú¡"s•ú¡#z`-¢#f-¢!h-¢"j-¢!3k-¢"÷m-¢#Ù;`¢#‰@`¢!öB`¢"…D`¢!ÏE`¢"ìL`¢#“¢#É“¢!-"“¢"¹#“¢!¸$“¢" (“¢­Ã™¢ahci PÒ™¢¦Ó™¢uhci_hcd:usb3 Ø™¢^Ù™¢eth1 ,Þ™¢#ŒùÅ¢#¤ÿÅ¢!ÞÆ¢"ÖÆ¢!·Æ¢"> Æ¢#Ëø¢#mÕø¢!Øø¢"öÙø¢!ÚÚø¢"‘Þø¢#‡±+£#m¶+£!¹+£"»+£!ò»+£"®Ã+£L0£ahci @ž0£œŸ0£uhci_hcd:usb3 ¤0£i¥0£eth1 "ª0£#¥^£#õ“^£!e–^£"f˜^£!G™^£"O^£#cj‘£#çm‘£!¿¦"a@¿¦!ZA¿¦"I¿¦#Cò¦#\ò¦!Ûò¦"mò¦!Qò¦"¢!ò¦# ð$§#Æô$§!0÷$§"¹ø$§!£ù$§"?%§#sÎW§#`ÒW§!¯ÔW§"8ÖW§!×W§"aÚW§#)¢Š§#•®Š§!󰊧"²Š§!³Š§"¸»Š§#5½§#¹½§!’½§"哽§!Þ”½§"M˜½§Й§ahci <©Â§’ªÂ§uhci_hcd:usb3 ¯Â§P°Â§eth1 µÂ§#Ÿcð§#hð§!˜jð§"Òlð§!³mð§"\vð§#Î8#¨#NC#¨!ÁE#¨"ÚG#¨!ÓH#¨"HL#¨#M!V¨#Ü%V¨!.(V¨"Õ)V¨!¼*V¨"Û2V¨#êüˆ¨#.‰¨!†‰¨"Q‰¨!G‰¨"ß ‰¨#YÛ»¨#Uß»¨!ËỨ"l㻨!‰ä»¨"í»¨#î´î¨#J¹î¨!·»î¨"^½î¨!{¾î¨"çÁî¨#…•!©#Jš!©!´œ!©"”ž!©!ŠŸ!©"ާ!©#•eT©#špT©!jsT©"8uT©!1vT©"±zT©#PL‡©#FP‡©!³R‡©"iT‡©!MU‡©"Ì]‡©#ø&º©#‚-º©!ò/º©"1º©!t2º©"E7º©#í©#& í©!;í©"ñí©!Òí©"yí©#¶ãª#cèª!Äêª"_ìª!Cíª"©ðª#ïµRª#ÀRª!ÂRªÁüÁõ©‹à‡îØF²ÿbÊ™HެËRªÈ7ü«³È7Ѐ¬ËRªltt-kconsumerd2{ÒRªltt-kconsumerd2x"U×Rª!~ØRª"îàRªÆäRªkworker/0:0ltt-kconsumerd2¨SªÜSªöuSªISªö€@ŽK=¿ºSªâSªHŽK=¿#*Sª,Sª ÁjSªamSª 0-˜uSª˜0 ltt-kconsumerdcŽSªsSª œ”Sªj–SªÝ .¥SªÝ8§Sªöl©Sª ­Sª°Ä@ ÿÿÿÿÿÿÿÿºSªltt-kconsumerd2ÔèÙ¿BÄSªltt-kconsumerd2kworker/0:0#©…ª#¤…ª!̧…ª"$ª…ª!«…ª"¯…ª#åx¸ª#Ò|¸ª!'¸ª"¶€¸ª!£¸ª"LЏª#1Uëª#uYëª!Ÿ\ëª"U^ëª!Q_ëª"&cëª#þ(«#¶4«!ê6«"p8«!W9«"0B«#½Q«#Q«!`Q«"ìQ«!ÐQ«"ŠQ«# 샫#eñƒ«!äóƒ«" õƒ«!„öƒ«"Qÿƒ«#¢¿¶«#³É¶«!ç˶«"vͶ«!Wζ«"rѶ«#Pªé«#+®é«!›°é«"'²é«! ³é«"dºé«##p‰¬!‹¬"T¬!>ެ"Ž’¬ë1(¬ahci ‹C(¬íD(¬uhci_hcd:usb3 ^I(¬«J(¬eth1 jO(¬v«;¬ahci ²º;¬ü»;¬uhci_hcd:usb3 aÀ;¬“Á;¬eth1 @Æ;¬#µ`O¬#eO¬!rgO¬" iO¬!‡jO¬"‡sO¬#¼<‚¬#­?‚¬! B‚¬"šC‚¬!„D‚¬"€H‚¬#6µ¬#Œµ¬!Ï µ¬" "µ¬!™#µ¬"ï*µ¬#°ìç¬#ßúç¬!dýç¬"ÿç¬!õÿç¬"»è¬#ÓÒ­#ÌÙ­!0Ü­"Þ­!ß­"wæ­#³¯M­#þ²M­!ûµM­"·M­!e¸M­"‰»M­#ù‚€­#Ÿ€­!0’€­"Ñ“€­!µ”€­"’œ€­#Aj³­#ñn³­!Fq³­"s³­! t³­"úw³­#QCæ­#Gæ­!ÉIæ­"[Kæ­!„Læ­"¸Tæ­#è!®#™%®!÷'®"†)®!ˆ*®"*.®#‡ýK®#0L®!‘L®"wL®!^L®"L®bQ®ahci ÿQ®OQ®uhci_hcd:usb3 ÒQ®Q®eth1 ÏQ®#Ý~®#®á~®! ä~®"Fæ~®!?ç~®"Së~®#°±®#æ½±®!)À±®"ÁÁ±®!¢Â±®"ŽÊ±®#èŒä®#Ê™ä®!šœä®"nžä®!jŸä®"¢ä®#Èi¯#øv¯!;y¯"Üz¯!Ã{¯"䄯#ÐQJ¯#ØXJ¯!<[J¯"Î\J¯!µ]J¯"'aJ¯#P-}¯#·2}¯!-5}¯"7}¯!8}¯"ÚB}¯#D °¯#u°¯!À°¯"ǰ¯!½°¯"°¯#Öèâ¯#Éïâ¯! òâ¯"¼óâ¯!²ôâ¯"[ýâ¯#ݹ°#Ûİ!<ǰ"ÔȰ!»É°"Ḭ́#ð¢H°#T¨H°!£ªH°",¬H°!­H°"õµH°#Å{{°#â{°![‚{°"öƒ{°!ׄ{°""ˆ{°#GX®°#µ\®°!Ð_®°"\a®°!@b®°" j®°#–7á°#Â;á°!˜>á°"]@á°!VAá°"kDá°#¤±#ñ!9±"ø±!÷±"»$±#`ñF±#¹õF±! øF±"ÐùF±!ÉúF±"MþF±#ìÍy±#ÛÒy±!EÕy±"×y±!6Øy±">ây±;ë~±ahci Dú~±šû~±uhci_hcd:usb3 ±U±eth1 ±#A«¬±#s¯¬±!²¬±" ´¬±!4µ¬±" ¹¬±#v‡ß±#Ƌ߱!9Žß±"ß±!‘ß±"“šß±#f²#åj²!Fm²"än²!Ëo²"[s²#¼@E²#EE²!UGE²"öHE²!×IE²"óQE²#Üx²#V"x²!Æ$x²"X&x²!<'x²"¼+x²#Àðª²#œÿª²! «²"°«²!”«²"” «²#¬Íݲ#GØÝ²!´Úݲ"ÙÜݲ!ÒÝݲ"âݲÁüÁõ©‹à‡îØF²ÿbÊ™HŽÁª³È7"Œ¼È7ð€#Áª³#K»³!ʽ³/³ltt-kconsumerd2sƳltt-kconsumerd2x"Õʳ!ò˳"©Ò³lÖ³kworker/0:0ltt-kconsumerd2lî³üñ³öŠô³pö³ö€@ŽK=¿Û÷³¾ù³HŽK=¿Ë³¥³ >1³Ï3³ @-0<³ 0 ltt-kconsumerdÈU³äW³ 0¸\³›^³Ý 0(k³Ý)m³öŠo³ir³°Ä@ ÿÿÿÿÿÿÿÿ¢~³ltt-kconsumerd2Ú¸³Ñ¿)ˆ³ltt-kconsumerd2kworker/0:0#”’C³#q—C³!’šC³"íœC³!õC³"`¢C³?ºH³ahci ›ÊH³úËH³uhci_hcd:usb3 kÐH³¯ÑH³eth1 eÖH³#3pv³#Ètv³!Gwv³"–yv³!Ëzv³"&ƒv³#ïH©³#UO©³!ÑQ©³"S©³!€T©³"ÐX©³#G'ܳ#–,ܳ!å.ܳ"}0ܳ!d1ܳ"á8ܳ#‡´#Ì´!- ´"¹ ´! ´"9´# áA´#2æA´!«èA´"êA´!~ëA´"*ôA´#ºt´#Û½t´!Àt´"õÁt´!îÂt´"`Æt´# š§´#Ÿ§´!<¡§´"΢§´!¯£§´"‰«§´#äxÚ´#|Ú´!?~Ú´"ËÚ´!©€Ú´"{„Ú´#jT µ#çX µ!E[ µ"Ý\ µ!¾] µ"_e µ#‰/@µ#ü4@µ!K7@µ"×8@µ!¸9@µ"å<@µ#ã sµ#ºsµ! sµ"Ësµ!²sµ"›sµ#¶ë¥µ#¾ï¥µ!pò¥µ"óó¥µ!×ô¥µ"pø¥µ#²Çص#5ÌØµ!ÃÎØµ"UÐØµ!6ÑØµ"þØØµ#£ ¶#{¦ ¶!ܨ ¶"nª ¶!R« ¶"¦® ¶#!€>¶#A„>¶!À†>¶"߈>¶!؉>¶"Á‘>¶#¸\q¶#aq¶!~cq¶"Ieq¶!?fq¶" jq¶#<<¤¶#/@¤¶!B¤¶""D¤¶!$E¤¶"¦M¤¶Ÿ±¶ahci v­±¶ä®±¶uhci_hcd:usb3 …³±¶½´±¶eth1 m¹±¶#í×¶#3×¶!×¶"!×¶!y"×¶"½&×¶#èô ·#Úù ·!ü ·"¬ý ·!“þ ·" ·#cÐ<·#™Ó<·!WÖ<·".Ø<·!'Ù<·"Ý<·#ůo·#“´o·!*·o·"¼¸o·! ¹o·"½Ào·#ŒŠ¢·#XŽ¢·!Ë¢·"«’¢·!Œ“¢·"@—¢·#0iÕ·#ƒmÕ·!ðoÕ·"ÜqÕ·!ùrÕ·"zÕ·#bD¸#G¸!ÞI¸"©K¸!ŠL¸"ŠO¸#0;¸#m$;¸!é&;¸"Ì(;¸!×);¸"1;¸#Êÿm¸#un¸!»n¸"Gn¸!gn¸"ô n¸#)Ü ¸#à ¸!Ýâ ¸"·ä ¸!­å ¸"Hí ¸#Y·Ó¸#ý»Ó¸!7¾Ó¸")ÀÓ¸! ÁÓ¸""ÄÓ¸#^“¹#®—¹!ñ™¹"‰›¹!mœ¹"w¤¹#ïo9¹#âs9¹!=v9¹"Ìw9¹!°x9¹"¼{9¹#÷Dl¹#¶Ul¹!êWl¹"|Yl¹!]Zl¹"Ubl¹#J+Ÿ¹#B0Ÿ¹! 2Ÿ¹"k4Ÿ¹!a5Ÿ¹"Á8Ÿ¹#ØÒ¹#” Ò¹!ÔÒ¹"`Ò¹!DÒ¹"‘Ò¹#Zæº#ëº!qíº"$ïº!ðº">óº#A¿7º#hÅ7º!óÇ7º"É7º!cÊ7º"»Ò7º#  jº#@¤jº!•¦jº"6¨jº!©jº"Y¬jº#ãqº#u|º!µ~º"€€º!º"yŠº#£Xк#Ý]к!`к"bк!übк"·eк#`5»#¨8»!÷:»"þ<»!!>»"õH»a­ »ahci 1¼ »‡½ »uhci_hcd:usb3  »Sà »eth1 È »#j6»#b6»!À6»"Ä6»!À6»"/ 6»#hïh»#õh»!x÷h»"»ùh»!±úh»"Æi»#ùÉ›»#Ò›»!µÔ›»"¼Ö›»!¬×›»"Û›»#‹¦Î»#oªÎ»! ­Î»"ž®Î»!¯Î»"õºÎ»#é…¼ÁüÁõ©‹à‡îØF²ÿbÊ™HŽáмÈ7ôÃÈ7ð€#ኼ!â¼´–¼ltt-kconsumerd2Ïœ¼ltt-kconsumerd2x" ¡¼!º¢¼"¦¼ª©¼kworker/0:0ltt-kconsumerd2wÓ¼oؼöZۼݼö€@ŽK=¿rÞ¼Oà¼HŽK=¿í¼ï¼ ´&¼6)¼ P-Ü1¼¨0 ltt-kconsumerdÑK¼óM¼ @gR¼DT¼Ý @V`¼ÝWb¼övd¼g¼°Ä@ ÿÿÿÿÿÿÿÿ;t¼ltt-kconsumerd2;Ùîª ¿€¼ltt-kconsumerd2kworker/0:0pμahci äÞ¼Là¼uhci_hcd:usb3 ½ä¼ æ¼eth1 êê¼#)e4¼#èi4¼!Wm4¼"Ço4¼!±p4¼"@{4¼#ý (Ã"°£(Ã#¦f[Ã# s[Ã! u[Ã"Yw[Ã!Rx[Ã"l‚[Ã#›MŽÃ#?RŽÃ!¬TŽÃ"ãVŽÃ!ÙWŽÃ"E[ŽÃ\S“Ãahci Þa“Ã1c“Ãuhci_hcd:usb3 ¢g“Ãïh“Ãeth1 “m“Ã#‘ ÁÃ#%,ÁÃ!›.ÁÃ"¥0ÁÃ!°1ÁÃ"–9ÁÃ#æôÃ#W ôÃÁüÁõ©‹à‡îØF²ÿbÊ™HŽØôÃÈ7b—JÍÈ7À€!ØôÃ{ôÃltt-kconsumerd2ôôÃltt-kconsumerd2x"ì$ôÃ!&ôÃ"´)ôÃ,-ôÃkworker/0:0ltt-kconsumerd2åXôÿ]ôÃöŒ`ôÃTbôÃö€@ŽK=¿ÂcôëeôÃHŽK=¿§rôÄtôà  ªôà¬ôà `-¤·ôð0 ltt-kconsumerdƒÒôñÔôà P:ÙôÃüÚôÃÝ PçôÃÝéôÃö7ëôÃaîôðÄ@ ÿÿÿÿÿÿÿÿÃúôÃltt-kconsumerd2ðÛÞ† ¿ðõÃltt-kconsumerd2kworker/0:0#è&Ä#…î&Ä!ò&Ä"dô&Ä!Qõ&Ä"þ&Ä#@ÀYÄ#ÅYÄ!oÇYÄ"²ÉYÄ!™ÊYÄ"ÚÎYÄ,‡dÄahci V–dľ—dÄuhci_hcd:usb3 8œdÄydÄeth1 #¢dÄ#pŒÄ#¡ŒÄ! ¤ŒÄ"F¦ŒÄ!B§ŒÄ"ê°ŒÄ#±x¿Ä#¹|¿Ä!¿Ä"µ€¿Ä!œ¿Ä"Ñ…¿Ä#HMòÄ#yYòÄ!æ[òÄ"Ÿ]òÄ!†^òÄ"ÿfòÄ#h3%Å#L7%Å!¿9%Å"K;%Å!2<%Å"³?%Å# XÅ#pXÅ!éXÅ"öXÅ!ÝXÅ"ë!XÅ#¨îŠÅ#»óŠÅ!%öŠÅ"¨÷ŠÅ!ŒøŠÅ"àûŠÅ#ƒÊ½Å#ñνÅ!@ѽÅ"ÒÒ½Å!°Ó½Å"ËܽÅ#oðÅ#¨ðÅ![«ðÅ"ö¬ðÅ!ã­ðÅ"š±ðÅ#„#Æ#ʈ#Æ! ‹#Æ"áŒ#Æ!ã#Æ"º•#Æ#saVÆ#+gVÆ!’iVÆ"-kVÆ!lVÆ" oVÆ#}>‰Æ#óC‰Æ!BF‰Æ" H‰Æ!I‰Æ"Q‰Æ#j¼Æ#r¼Æ!Ê ¼Æ"J"¼Æ!+#¼Æ"p&¼Æ#¡÷îÆ#ëûîÆ!‹þîÆ"JïÆ!CïÆ"> ïÆ#)Ò!Ç#tÕ!Ç!DØ!Ç"ÇÙ!Ç!«Ú!Ç"2Þ!Ç#8²TÇ#"¶TÇ!‰¸TÇ"*ºTÇ!»TÇ"cÃTÇ#¨Ž‡Ç#ƒ’‡Ç!Ò”‡Ç"X–‡Ç!9—‡Ç"Й‡Ç#HjºÇ#ÎnºÇ!‰qºÇ"WsºÇ!8tºÇ"ó|ºÇ#ŽGíÇ#zLíÇ!ÞNíÇ"jPíÇ!KQíÇ"–TíÇ#©( È#Þ, È!Q/ È" 1 È!ñ1 È"Ò; È#~÷RÈ#bSÈ!ÒSÈ"[SÈ!<SÈ"} SÈ#aÔ…È#ßÞ…È!Oá…È"Øâ…È!¼ã…È"žì…È#㸸È#q¾¸È!ÛÀ¸È"©Â¸È!¢Ã¸È"ÃÆ¸È#¾–ëÈ#ø›ëÈ!LŸëÈ"8¡ëÈ!1¢ëÈ"Í«ëÈÁðÈahci sÏðÈíÐðÈuhci_hcd:usb3 gÕðÈ´ÖðÈeth1 ^ÛðÈ#QkÉ#™wÉ!$zÉ"Ë{É!¬|É" €É#«PQÉ#^UQÉ!¿WQÉ"NYQÉ!/ZQÉ"ìcQÉ#Ž$„É#Ý/„É!°2„É"¢4„É!ƒ5„É"¶8„É#î·É#[·É!Ë·É"`·É!G·É"Ô·É#ÕçéÉ#¸ìéÉ!4ïéÉ",ñéÉ!òéÉ"¬õéÉ#ÃÊ#6ÈÊ!ÊÊ"§ÌÊ! ÍÊ"øØÊ#^¡OÊ#T¨OÊ!f«OÊ"ì¬OÊ!ЭOÊ"Ó°OÊ#€t‚Ê#‚‚Ê!׃‚Ê"c…‚Ê!G†‚Ê"™Ž‚Ê#4]µÊ#ŠaµÊ!ÜcµÊ"ƒeµÊ!gfµÊ" iµÊ#7èÊ#×=èÊ!@èÊ"¾AèÊ!¢BèÊ"ßJèÊ#Ë#¯Ë!Ë"ÌË!°Ë""Ë#EòMË#YöMË!GùMË"ýúMË!íûMË"áNË#"Ï€Ë#¬Ò€Ë!Õ€Ë"çÖ€Ë!à×€Ë"@Û€Ë#´¡³Ë#ű³Ë!´³Ë"ñµ³Ë!ê¶³Ë"é½³Ë#P‰æË#IŒæË!¡ŽæË"-æË!‘æË"‹•æË#gÌ#«lÌ!ÓnÌ"§pÌ! qÌ"½xÌ#lBLÌ#çGLÌ!EJLÌ"ãKLÌ!ÇLLÌ"öPLÌ#ÆÌ#ä%Ì!$(Ì"ò)Ì!î*Ì"Ï1Ì#^ü±Ì#`²Ì!вÌ"n²Ì!R²Ì"I²Ì#xÎäÌ#ÚäÌ!}ÜäÌ"BÞäÌ!#ßäÌ"¬æäÌ#p´Í#s·Í!¹Í"H»Í!&¼Í"ÀÍÁüÁõ©‹à‡îØF²ÿbÊ™HŽ0–JÍÈ7W³ÕÕÈ7Ѐ#0–JÍ#œJÍ!ÌžJÍe¥JÍltt-kconsumerd26ªJÍltt-kconsumerd2x"¯JÍ!6°JÍ"¸JÍÄ»JÍkworker/0:0ltt-kconsumerd2€äJÍléJÍöBìJÍ+îJÍö€@ŽK=¿ŸïJÍ‚ñJÍHŽK=¿6þJÍLKÍ LKÍ p-qGK͸0 ltt-kconsumerd„aKͬcKÍ `ÃgK͸iKÍÝ `etKÍÝcvKÍösxKÍ…{KͰÄ@ ÿÿÿÿÿÿÿÿ߇KÍltt-kconsumerd2ŠÞhe ¿u‘KÍltt-kconsumerd2kworker/0:0#¸p}Í#¡u}Í!y}Í"e{}Í!d|}Í"#}Í9ª‚Íahci ªº‚Í ¼‚Íuhci_hcd:usb3 ‰À‚ÍÊÁ‚Íeth1 kÆ‚Í#ïK°Í#6P°Í!>S°Í"„U°Í!ÅV°Í",_°Í#¯&ãÍ#+,ãÍ!/ãÍ",1ãÍ!"2ãÍ"6ãÍ#¥ûÎ#†Î!ÌÎ"d Î!H Î"(Î#(ßHÎ#ÙâHÎ!åHÎ",çHÎ!èHÎ"jëHÎ#Á{Î#àÄ{Î!;Ç{Î"÷È{Î!ðÉ{Î"ÙÑ{Î#,’®Î#E›®Î!v®Î";Ÿ®Î!4 ®Î"y£®Î#ÙnáÎ#JzáÎ!¢|áÎ"1~áÎ!áÎ" ‡áÎ#áUÏ#8\Ï!7_Ï"ÿ`Ï!øaÏ"ñeÏ# 2GÏ#N8GÏ!¬:GÏ"¿"ÞÐ!%#ÞÐ"J+ÞÐ#½öÑ#UûÑ!ÂýÑ"ŠÿÑ!†Ñ"CÑ#ÕCÑ#ÝØCÑ!MÛCÑ"ôÜCÑ!ÕÝCÑ"9æCÑ#ø¯vÑ#ó´vÑ!Z·vÑ"%¹vÑ!!ºvÑ"®½vÑ#V©Ñ#Ì’©Ñ!-•©Ñ"×–©Ñ!¾—©Ñ"¥ ©Ñ#ƒhÜÑ#–mÜÑ!îoÜÑ"†qÜÑ!grÜÑ"ÖuÜÑ#àDÒ#ñHÒ!OKÒ"ðLÒ!ÑMÒ"lWÒ#N BÒ#$BÒ!i&BÒ"û'BÒ!â(BÒ",BÒ#þtÒ#yuÒ!¶uÒ"‡uÒ!†uÒ"¥uÒ#oܧÒ# á§Ò!}ã§Ò"å§Ò!æ§Ò"€é§Ò#›ºÚÒ#p¾ÚÒ!ÑÀÚÒ"ŠÂÚÒ!qÃÚÒ"+ÍÚÒ#• Ó#s™ Ó!È› Ó"Z Ó!Až Ó"¡ Ó#wp@Ó#‡u@Ó!3x@Ó"Ýy@Ó!Áz@Ó"ó„@Ó#ÒNsÓ#ÊSsÓ!@VsÓ"AXsÓ!(YsÓ"s\sÓ#ú*¦Ó#¸0¦Ó!"3¦Ó"5¦Ó!õ5¦Ó"y?¦Ó#Ò ÙÓ#sÙÓ!°ÙÓ"KÙÓ!/ÙÓ"äÙÓ#|Ü Ô#në Ô!½í Ô"Xï Ô!Wð Ô"rù Ô#Y¹>Ô#'Ä>Ô!-Ç>Ô"ìÈ>Ô!åÉ>Ô"öÍ>Ô#ÞŸqÔ#ܤqÔ!1§qÔ"ƨqÔ!§©qÔ"±qÔ#-s¤Ô#|¤Ô!™€¤Ô"y‚¤Ô!uƒ¤Ô"À†¤Ô#Ü[×Ô#Õ_×Ô!Bb×Ô"øc×Ô!âd×Ô"m×ÔXÜÔahci _qÜÔµrÜÔuhci_hcd:usb3 /wÜÔpxÜÔeth1 }ÜÔ#÷5 Õ#C; Õ!³= Õ"á? Õ!Å@ Õ"èD Õ#8=Õ# =Õ!=Õ"ê=Õ!ã=Õ"™#=Õ#îoÕ#RñoÕ!¼óoÕ"fõoÕ!MöoÕ"ÈùoÕ#*Ì¢Õ#»Ñ¢Õ!Ô¢Õ"®Õ¢Õ!ìÖ¢Õ"¤ß¢Õ# ÕÕ#½­ÕÕ!3°ÕÕÁüÁõ©‹à‡îØF²ÿbÊ™HŽ1²ÕÕÈ7§!_ßÈ7à€"1²ÕÕ!4µÕÕ"»¸ÕÕ#©„Ö#_‰Ö!´‹ÖI“Öltt-kconsumerd2™Öltt-kconsumerd2x"AžÖ!FŸÖ"G§ÖªÖkworker/0:0ltt-kconsumerd2ÏÓÖšØÖö…ÛÖGÝÖö€@ŽK=¿¸ÞÖ›àÖHŽK=¿»ìÖªîÖ ý. Ö…1 Ö €-Á: Ö@‡0 ltt-kconsumerdüS ÖV Ö pzZ ÖK\ ÖÝ pìf ÖÝóh Öö0k ÖZn Ö°Ä@ ÿÿÿÿÿÿÿÿcz Öltt-kconsumerd2ã~H ¿„ Öltt-kconsumerd2kworker/0:0#²c;Ö# i;Ö!jl;Ö"žn;Ö! o;Ö"ós;Ö#J?nÖ#¯CnÖ!vFnÖ" HnÖ!InÖ"¸RnÖ#d¡Ö#Û¡Ö!?"¡Ö"Ñ#¡Ö!²$¡Ö"(¡Ö#0ðÓÖ#ýÓÖ!ÔÖ"¶ÔÖ!šÔÖ"ß ÔÖ#RÖ×#oÚ×!ÇÜ×"°Þ×!²ß×"`ã×#é©9×#ª³9×!áµ9×"‚·9×!o¸9×"—À9×#-l×#_”l×!½–l×"‚˜l×!{™l×"óœl×#•mŸ×#ärŸ×!0uŸ×"¿vŸ×! wŸ×"ïŸ×#£KÒ×#–OÒ×!ÙQÒ×"hSÒ×!FTÒ×"|WÒ×#QØ#N'Ø!µ)Ø"J+Ø!.,Ø"†4Ø#ÿ8Ø# 8Ø!O 8Ø"D 8Ø!( 8Ø"Ç8Ø#ÉÖjØ#äjØ! çjØ" éjØ!æéjØ"BôjØ#I¼Ø#NÃØ!¯ÅØ"PÇØ!4ÈØ"ëËØ#»šÐØ#ŸÐØ!B¡ÐØ"£ÐØ!¤ÐØ"3­ÐØ#1vÙ#zÙ!ñ|Ù"~Ù!sÙ" ‚Ù#4J6Ù#…S6Ù!³U6Ù"EW6Ù!&X6Ù"Q`6Ù#Á1iÙ#/6iÙ!~8iÙ":iÙ!ú:iÙ"c>iÙ#ÕœÙ#¨œÙ!ôœÙ"ƒœÙ!dœÙ" œÙ#êÎÙ#§îÎÙ!ñÎÙ"ÊòÎÙ!¨óÎÙ"ðöÎÙ#¨ÈÚ#õÌÚ! ÏÚ"¯ÐÚ!ÑÚ"LÙÚ#L¥4Ú#‡©4Ú!Í«4Ú"_­4Ú!F®4Ú"s±4Ú#Ü~gÚ#ƒgÚ!–…gÚ"+‡gÚ! ˆgÚ"pgÚ#j^šÚ#`bšÚ!dšÚ"/fšÚ!gšÚ"[jšÚ#á0ÍÚ#ð:ÍÚ!'=ÍÚ"æ>ÍÚ!Ç?ÍÚ"ŒGÍÚ#‹ Û#Û!SÛ"â Û!À!Û"%Û—Ûahci <¨Û¡©Ûuhci_hcd:usb3 ®ÛV¯Ûeth1 ´Û#Uò2Û#cö2Û!¾ø2Û"Èú2Û!²û2Û"ú3Û#mÏeÛ#6ÖeÛ!©ØeÛ"YÚeÛ!:ÛeÛ"pÞeÛ#Ä­˜Û#®±˜Û!$´˜Û"쵘Û!嶘Û"p¿˜Û#YŠËÛ#yŽËÛ!X‘ËÛ"ç’ËÛ!Ë“ËÛ"=—ËÛ#HhþÛ#nþÛ!÷pþÛ"ÔrþÛ!ÍsþÛ"˜{þÛ#³C1Ü#ÌH1Ü!'K1Ü"³L1Ü!”M1Ü"Q1Ü#}!dÜ#'dÜ!`)dÜ"é*dÜ!Ç+dÜ"5dÜ#žü–Ü#»—Ü!^—Ü"ù—Ü!Ú—Ü" —Ü#UÚÉÜ#ÿÞÉÜ!EáÉÜ"ÚâÉÜ!¾ãÉÜ"ŽìÉÜ#û­üÜ#PºüÜ!«¼üÜ"¾¾üÜ!·¿üÜ"ÃüÜ#þ’/Ý#ê—/Ý!{š/Ý".œ/Ý!'/Ý"ç¦/Ý#ØpbÝ#ëubÝ!=xbÝ"ÆybÝ!§zbÝ"1~bÝ#SN•Ý#²R•Ý!ßU•Ý"‰W•Ý!mX•Ý"ja•Ý#x!ÈÝ#k/ÈÝ!Ì1ÈÝ"j3ÈÝ!Š4ÈÝ"Õ7ÈÝ#:ûÝ#J ûÝ!¥ûÝ"²ûÝ!®ûÝ"3ûÝ#™æ-Þ#=ë-Þ!›í-Þ"6ï-Þ!ð-Þ"ûó-Þ# Ã`Þ#÷Æ`Þ!^É`Þ"GË`Þ!@Ì`Þ"MÔ`Þ#ᜓÞ#ž “Þ!£“Þ"‹¤“Þ!o¥“Þ"Ѝ“Þ#}ÆÞ#QÆÞ!¬ƒÆÞ">…ÆÞ!"†ÆÞ"ÆÞ#ßWùÞ#[ùÞ!…]ùÞ")_ùÞ! `ùÞ"cùÞ#`6,ß#ª:,ß!=,ß"¯>,ß!?,ß"ÅF,ß#¸_ß#Š_ß!è_ß"ª_ß!£_ßÁüÁõ©‹à‡îØF²ÿbÊ™HŽ{ _ßÈ7ÓJëÈ7€€"{ _ߥ§ißahci ÓÀißJÂißuhci_hcd:usb3 ÊÆißDÈißeth1 ýÌiß#®î‘ß#öô‘ß!‡÷‘ß"‹ù‘ß!Éú‘ß"™’ß#=ËÄß#*ÏÄß!ˆÑÄß"#ÓÄß!^ÔÄß"ØÄß#›ž÷ß#ý©÷ß!X¬÷ß"í­÷ß!¯÷ß"M·÷ß#è‚*à#¤‡*à!Š*à"²‹*à!“Œ*à"Y*à#db]à#i]à!ak]à"íl]à!Ôm]à"Ýv]à#ÿ4à#m@à!Cà"™Dà!zEà" Hàœy£àahci `ˆ£à•‰£àuhci_hcd:usb3 ú£àt£àeth1 !”£à#ëÃà#åÃà![!Ãà"ã#Ãà!å$Ãà"½.Ãà#ùõà#Åýõà!öà"Böà!)öà"¿öà#Ô(á#¡Ø(á!ÀÚ(á"FÜ(á!lÝ(á"ˆå(á#±[á#ƒ¶[á!Ò¸[á"Xº[á!Š»[á"ü¾[á/íuáahci fûuá¼üuáuhci_hcd:usb3 ]vá§váeth1 `vá#䎎á#—“Žá!–Žá"M˜Žá!F™Žá"†¡Žá#çkÁá#OpÁá!õrÁá"tÁá!tuÁá"¹xÁá#¯>ôá#Jôá!¢Lôá"(Nôá! Oôá"’Yôá#!$'â#—)'â!.,'â"Ã-'â!¤.'â"³1'â#šZâ#ÃZâ!Zâ" Zâ!ñ Zâ"TZâ#XÞŒâ#-âŒâ!äŒâ"ƒæŒâ!|çŒâ"$ëŒâ#黿â#²¿¿â!+¿â"½Ã¿â!=Å¿â"\Í¿â#K™òâ#‚žòâ!O¡òâ"£òâ!R¤òâ"‚§òâ#(u%ã#~y%ã!|%ã":~%ã!K%ã"“ˆ%ã#¦SXã#ZXã!s\Xã"ù]Xã!Ý^Xã"vbXã#!/‹ã#ä2‹ã!<5‹ã"é6‹ã!å7‹ã"â@‹ã#R¾ã#=¾ã!˾ã"N¾ã!/¾ã"2¾ã#®êðã#ûîðã!Sñðã"'óðã!#ôðã"ûðã#éÃ#ä#È#ä!^Ê#ä",Ì#ä!(Í#ä"QÑ#ä#¸˜Vä#@¥Vä!ì§Vä"{©Vä!\ªVä"c²Vä#c‰ä#°†‰ä!‰‰ä"—Љä!{‹‰ä"G‰ä#sR¼ä#`_¼ä!²a¼ä"Yc¼ä!=d¼ä"n¼ä#?7ïä#&;ïä!½=ïä"‚?ïä!{@ïä"¥Cïä# "å#³"å!•"å"-!"å!""å"Þ*"å#/óTå#:÷Tå!¹ùTå"~ûTå!tüTå"qÿTå#&чå#ÿÖ‡å!lÙ‡å"RÛ‡å!0܇å"Oä‡å#£ªºå#¯ºå!r±ºå"‚³ºå!x´ºå"S¸ºå#·Šíå#šíå!’íå"““íå!Δíå"¸›íå#Èe æ#i æ!nk æ"÷l æ!)n æ"zq æ#XASæ#ÆESæ!ISæ"ÁJSæ!áKSæ"îSSæ#3 †æ#x#†æ!Í%†æ"b'†æ!C(†æ"Ö+†æ#ãò¸æ#ò¹æ!P¹æ"ܹæ!ùæ"¹æ#ŸØëæ#ÌÞëæ!-áëæ"(ãëæ! äëæ"çëæ#Ù²ç#‰·ç!˺ç"̼ç!­½ç"BÅç#G“Qç#Í—Qç!%šQç"œQç!øœQç"â Qç#©n„ç#´r„ç!$u„ç"þv„ç!÷w„ç"Å„ç#J·ç#´M·ç!P·ç"žQ·ç!‚R·ç"÷U·ç#g*êç# /êç!f1êç" 3êç!ñ3êç" ;êç#¥üè#aè!Ý è"f è!J è"€è#pÙOè#åèOè!ëOè"íOè!þíOè"`õOè#¯À‚è#qÅ‚è!ðÇ‚è"µÉ‚è!®Ê‚è"óÍ‚è#9“µè#lµè! µè"þ¡µè!⢵è"‹«µè#ôyèè#^èè!¹èè"lƒèè!P„èè")‡èè#éSé#OZé!°\é"„^é!Ë_é";hé#)Né#*6Né!—8Né" :Né!R;Né"?NéÞeWéahci þ~WéT€Wéuhci_hcd:usb3 þ„Wé<†Wéeth1 ‹Wé#}é#'é!¬é"¤é!šé"!%é#Pã³é#bï³é!˜ò³é"uô³é!nõ³é"7ù³é#9Ìæé#ïÐæé!¡Óæé"?Õæé! Öæé"oÞæé/Ýñéahci éìñé{îñéuhci_hcd:usb3 óñé™ôñéeth1 gùñé#Φê#`«ê!Z®ê"m°ê!“±ê"hµê#»Lê#è‡Lê!ÖŠLê"­ŒLê!¦Lê"ž•Lê#Ç_ê#¦eê!hê"¨iê!‰jê"­mê#¬:²ê#Ñ?²ê!>B²ê"îC²ê!ØD²ê"‹L²ê#Èåê#ºåê!'åê"¹åê!  åê"$åê#½öë#%ûë!qýë"ÿë!öÿë"Xë#TÑJëÁüÁõ©‹à‡îØF²ÿbÊ™HŽB×JëÈ74¬;ôÈ7ø€#B×Jë!ÚJë…ßJëltt-kconsumerd2gåJëltt-kconsumerd2x"ÉéJë!õêJë"‹îJëòJëkworker/0:0ltt-kconsumerd2QKëSKëöéKë±Këö€@ŽK=¿Kë8KëHŽK=¿N(KëO*Kë ˆbKë eKë  -/mKëP‡0 ltt-kconsumerdd†K댈Kë ¾ŒK볎KëÝ °šKëݱœKëöÖžKëë¡Kë°Ä@ ÿÿÿÿÿÿÿÿ–®Këltt-kconsumerd2^ËÜ ¿EºKëltt-kconsumerd2kworker/0:0#f¶}ë#d»}ë!Ǿ}ë"(Á}ë!'Â}ë"ÊÊ}ë#㎰ë#~“°ë!o–°ë"j˜°ë!N™°ë"¥œ°ë#A`ãë#Žjãë!Âlãë"œnãë!}oãë"bxãë&ÿëuhci_hcd:usb4 A+ÿë£,ÿëeth0#3ÿë 4ÿë!Q6ÿë"‰Iÿë#àDì#lIì!ÜKì"†Mì!mNì"tSì#Ê&Iì#€+Iì!Þ-Iì"µ/Iì!™0Iì".8Iì#|ì#é|ì!V|ì" |ì!ð |ì"%|ì#åÛ®ì#…á®ì!Iä®ì"ÿå®ì!ãæ®ì"î®ì#º°áì#m¼áì!û¾áì"Àáì!qÁáì"àÄáì#ƒ—í#Œí!öŸí"¡í!„¢í"Ωí#tGí#°wGí!zGí"{Gí!~|Gí"„Gí#¸Pzí#†Uzí!ðWzí"—Yzí!~Zzí" bzí#,­í#Ì/­í!$2­í"õ3­í!î4­í"T8­í#O àí#àí!Zàí"æàí!Íàí"Úàí#ëî#0ðî! òî"Ôôî!µõî"çùîßÝîahci ôøîbúîuhci_hcd:usb3 åþîVîeth1 î##ÃEî#”ÇEî!øÉEî"ÌEî!ãÌEî"·ÔEî#¡xî#Ñ¥xî!A¨xî"ªxî!«xî"š¯xî#t«î#X€«î!È‚«î"o„«î!Y…«î"—Œ«î#&ZÞî#¤]Þî!`Þî"µaÞî!ŸbÞî"¿fÞî#²-ï#x:ï!N=ï"é>ï!Ð?ï",Gï#aDï#ÏDï!9Dï"ÈDï!¬Dï"T Dï# ðvï#Çôvï!÷vï"Òøvï!Èùvï"wï#óÍ©ï#jÒ©ï!×Ô©ï"~Ö©ï!_שï"ôÛ©ï#ìªÜï#Á®Üï!±Üï"º²Üï!¡³Üï"~»Üï#í}ð#;Šð!Œð"[Žð!9ð"’ð#æeBð#BjBð!šlBð"nnBð!UoBð"yxBð#vAuð#›Fuð!äHuð"$Kuð!Luð"àOuðdzðahci ºrzð7tzðuhci_hcd:usb3 œxzðãyzðeth1 ™~zð#r¨ð#¹ ¨ð!)#¨ð"E%¨ð!,&¨ð"·.¨ð#BñÚð#ÜüÚð!4ÿÚð"ÌÛð!¶Ûð"IÛð#Î ñ#@Ý ñ!’ß ñ"'á ñ!â ñ"ýé ñ#À´@ñ#»@ñ!½@ñ"X¿@ñ!TÀ@ñ"çÃ@ñ#ÿ‘sñ#Á–sñ!m™sñ"n›sñ!Rœsñ"‰¤sñ#nd¦ñ#ðo¦ñ!Ss¦ñ"Üt¦ñ!½u¦ñ"y¦ñ#lJÙñ#eNÙñ!äPÙñ"šRÙñ!–SÙñ"+[Ùñ#c' ò#P+ ò!À- ò"v/ ò!r0 ò"J4 ò#ìú>ò#Ý?ò!2 ?ò"ñ ?ò!ê ?ò"~?ò#×áqò#aèqò!Âêqò"Wìqò!Gíqò"bðqò#|´¤ò#ö¿¤ò!0¤ò"ïäò! Ťò"Τò#™×ò#¤ ×ò!£×ò"Ĥ×ò!À¥×ò"‰©×ò#my ó#F ó!­ ó"Qƒ ó!A„ ó"NŒ ó#qS=ó#ÜW=ó!FZ=ó"\=ó!]=ó"¬`=ó#0pó#6pó!o8pó":pó!;pó""Cpó# £ó#Û£ó!u£ó"þ£ó!å£ó"£ó#êÕó#ÝïÕó!8òÕó"ÊóÕó!®ôÕó"‘üÕó#CÆô#ôÉô!9Íô"ÎÎô!¸Ïô"îÒô#W¤;ô#M¨;ôÁüÁõ©‹à‡îØF²ÿbÊ™HŽ«;ôÈ7·ˆdúÈ7°€!«;ô´;ôltt-kconsumerd2bº;ôltt-kconsumerd2x"*¿;ô!nÀ;ô"*È;ôùË;ôkworker/0:0ltt-kconsumerd2±õ;ôsú;ôöšý;ô\ÿ;ôö€@ŽK=¿¯<ôŒ<ôHŽK=¿<ô<ô `I<ôèK<ô °-ÜT<ôX‡0 ltt-kconsumerdo<ô)q<ô  Êu<ô³w<ôÝ  eƒ<ôÝl…<ôö‚‡<ô…Š<ô°Ä@ ÿÿÿÿÿÿÿÿq•<ôá—<ôö¡<ô£<ôö€@ŽK=¿1¥<ôS§<ôHŽK=¿Ž®<ôŒ°<ôê<ôîì<ô-ëõ<ô†0 ltt-kconsumerdÁ =ôÎ=ô*=ôø=ôÝS!=ôÝ{#=ôö'=ô±)=ô°Ä@ ÿÿÿÿÿÿÿÿÞ8=ôltt-kconsumerd2Z€6”¿C=ôltt-kconsumerd2kworker/0:0#0…nô#+Šnô!jnô"¼nô!Ênô"8•nô#>^¡ô#ab¡ô!Åd¡ô"]f¡ô!>g¡ô"‰p¡ôÞý§ôahci ʨô,¨ôuhci_hcd:usb3 ¾¨ô¨ôeth1 Ǩô#9Ôô#|=Ôô!@Ôô"DBÔô!%CÔô"œGÔô#¯õ#eõ!¥õ": õ!!õ"Ü)õ#ö9õ#¡ú9õ!áü9õ" þ9õ!Ïÿ9õ"7:õ#œÑlõ#ÂÕlõ!ü×lõ"¦Ùlõ!Úlõ"ãlõ#ĬŸõ#Ò°Ÿõ!Q³Ÿõ"à´Ÿõ!ÁµŸõ",ºŸõ# ‚Òõ#ÛÒõ!9Òõ"¿‘Òõ!’Òõ"ÅšÒõ#Îfö#jö!zlö" nö!ínö"‰rö#ÓB8ö#ÔG8ö!8J8ö"L8ö!ùL8ö"ôT8ö#í kö#Œ$kö!Y'kö"ú(kö!Þ)kö"}-kö#]õö#Çžö!"žö"ážö!מö"žö#*ÒÐö#žÝÐö!máÐö"ãÐö!ìãÐö"(çÐö#?¸÷#μ÷!,¿÷"µÀ÷!™Á÷"ÛÊ÷#Ü‹6÷#î—6÷!^š6÷"ó›6÷!ל6÷" 6÷#êpi÷#šui÷!+xi÷"®yi÷!zi÷"‰ƒi÷#DLœ÷#öQœ÷!cTœ÷"ûUœ÷!ßVœ÷"‡Zœ÷#]"Ï÷#/Ï÷!c1Ï÷"ò2Ï÷!Ù3Ï÷"û;Ï÷#3 ø#Ø ø!-ø"øø!ñø"¯ø#$ä4ø#¨ê4ø!$í4ø"ï4ø!÷ï4ø"1ø4ø#EÀgø#9Ægø!µÈgø"°Êgø!”Ëgø"<Ïgø#Å•šø#ÖŸšø!‹¢šø"¤šø!þ¤šø"U®šø#š{Íø#©€Íø!.ƒÍø"Þ„Íø!×…Íø"…‰Íø#XXù#<\ù!©^ù"V`ù!Oaù"}iù®ðùahci Hÿù¹ùuhci_hcd:usb3 -ùzùeth1 6 ù#—33ù#83ù!’:3ù"–<3ù!}=3ù"ÙA3ù#/ fù#'fù!‘fù"\fù!Xfù"w'fù#èî˜ù#3ò˜ù!‚ô˜ù"8ö˜ù![÷˜ù"…ú˜ù#¿ÂËù#ËÏËù!&ÒËù"ÁÓËù!«ÔËù":ÜËù#`Ÿþù#’¬þù!¯þù"±þù!ü±þù"µþù#r„1ú#6‰1ú!—‹1ú"õ1ú!ñŽ1ú"#™1ú#ÿadú#Ðfdú!idú·mdúkworker/1:0,&x"Ôqdú!Ürdú"˜wdúÙ{dúkworker/0:0kworker/1:0,&ÁüÁõ©‹à‡îØF²ÿbÊ™HŽy‡dúÈ7h´BýÈ7 f€y‡dúkworker/1:0,&a—“W¾¸“dúkworker/1:0,&kworker/0:0#À?—ú#1C—ú!þE—úµL—últt-kconsumerd2ÂQ—últt-kconsumerd2x"NV—ú!SW—ú"9_—ú™b—úkworker/0:0ltt-kconsumerd2œŒ—úœ’—úö–•—úR——úö€@ŽK=¿¥˜—ú‚š—úHŽK=¿N§—úC©—ú äû—ú¢þ—ú À-Q˜úh‡0 ltt-kconsumerd¡ ˜ú´"˜ú °4'˜úü(˜úÝ °á4˜úÝß6˜úöæ8˜ú‘<˜ú°Ä@ ÿÿÿÿÿÿÿÿÍH˜últt-kconsumerd2‰÷¿‹¿ R˜últt-kconsumerd2kworker/0:0­Ìœúahci 9Ýœú¤Þœúuhci_hcd:usb3 *ãœúqäœúeth1 $éœú#«Êú#^$Êú!Ü'Êú"%*Êú!+Êú"\/Êú#«÷üú#oýüú!ýú"µýú!´ýú" ýú#ŒÔ/û#ðÙ/û!6Ü/û"Þ/û!ß/û"Éâ/û#ï²bû#ì·bû!§ºbû"®¼bû!•½bû" Æbû# †•û#:‘•û!§“•û"8••û!–•û"™•û#ùlÈû#ÚsÈû!hvÈû"ixÈû!eyÈû"Èû#˜Hûû#=Lûû!£Nûû"ePûû!aQûû"pTûûÕüahci äüåüuhci_hcd:usb3 êüÂëüeth1 oðü# ).ü#Z-.ü! 0.ü":2.ü!3.ü"]<.ü#Iaü#iaü!Íaü" aü!¾ aü"$aü#ß“ü#âã“ü!(æ“ü"Àç“ü!¡è“ü"™ð“ü#³Æü#l¼Æü!ë¾Æü"€ÀÆü!gÁÆü"ÏÄÆü#š™ùü#8žùü!Œ ùü"¢ùü!ÿ¢ùü"«ùü#Ïu,ý#’y,ý!É{,ý"u},ý!_~,ý"§,ýZðAýltt-sessiond2xiöAýkworker/0:0ltt-sessiond2ÐBý6Bý+ >:Ÿœ>:Ÿ€„¥:ŸJ!Bý+ È-Bý/ P>:Ÿ°®Ë:Ÿ °®Ë:ŸÜFBý/ RBýG öp\¥:ŸžA2{\Bý_BýO ö0^Ap\¥:ŸžAdBý(gBýN ö0^Ap\¥:ŸžA„kBýahci ”|Bý~Býuhci_hcd:usb3 Ž‚BýêƒBýeth1 ¸ˆBýБBýà“BýM ö0^Ap\¥:ŸžAšBýYœBýL ö0^Ap\¥:ŸžA†¢BýÒ¤BýK ö0^Ap\¥:ŸžAq¨Bý–ªBýJ ö0^Ap\¥:ŸžAB°BýU²BýI ö0^Ap\¥:ŸžAÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄµBýÈ7/ÚiÉ7€ĵBýÖ¸BýH ö0^Ap\¥:ŸžA4¾BýàÀBý Sö0^Ap\¥:ŸžAbabeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_40000755000175000017500000017000011616325072020151 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽºgÈ76äö…È7Ѐÿÿ#?IØyÈ7#1TØy #áXØy!´[Øy"J_Øy!¦`Øy"kØy!FlØy "÷oØy #ƒ z#! z !§% z"Q' z!t( z "ò+ z #U÷=z#¥>z!l>z"õ>z!â>z"O>z#FÒpz#‘Üpz !Vápz"Üâpz!Ïãpz "‚èpz #s¯£z#º£z #a¿£z!ÝÁ£z"§Ä£z!¬Å£z"ÂУz!µÑ£z "™Õ£z #CÖz!šÖz"|œÖz#Ýg {#q {!Üt {"zv {!gw {"Ñ‚ { {ahci Í{‚{uhci_hcd:usb3 "{c${eth1 ‹){#G<{#“N<{ !eU<{"W<{!MX<{ "M[<{ #˜!o{#¡*o{ #œ/o{!î1o{"Å3o{!²4o{"Ê@o{!½Ao{ "TDo{ #eþ¡{#L¢{ !‘¢{",¢{!¢{ "¢{ #?ÛÔ{#äÔ{ #”çÔ{!×éÔ{"lëÔ{!PìÔ{"*÷Ô{!øÔ{ "HúÔ{ #Â|#úÄ| ! É|"¸Ê|!ŸË| "Î| G˜|ahci ^¨|™©|uhci_hcd:usb3 æ­|Z¯|eth1 õ³|Š<0|ahci J0|K0|uhci_hcd:usb3 ÚO0| Q0|eth1 ³U0|# :|#¢:|!²¤:|"˦:|!²§:|"4³:|II|ahci ~WI|¼XI|uhci_hcd:usb3 !]I|ª^I|eth1 EcI|ÇÙ_|ahci ìç_|Hé_|uhci_hcd:usb3 í_|¸î_|eth1 eó_|#×rm|#Øtm| !l€m|"j‚m|!Qƒm| "è…m| #pN |#óV | #[ |!¿] |"Z_ |!;` |"Ãk |!ïl | "×o | #v-Ó|#™4Ó| !¤;Ó|"W=Ó|!w>Ó| "ïAÓ| #?}#x}!B}"Ñ}!µ}"Ï!}#]í8}# ñ8} !Ðõ8}"˜÷8}!”ø8} "Åú8} #ÄÂk}#?Êk} #rÍk}!ÐÏk}"YÑk}!‚Òk}""Þk}!ýÞk} "ûàk} #¨žž}!f§ž}"xªž}z)©}ahci Ï7©} 9©}uhci_hcd:usb3 Z=©}Î>©}eth1 rC©}# }Ñ}#¼†Ñ}!2‰Ñ}"Z‹Ñ}!GŒÑ}":–Ñ}#äa~!³h~"ºj~#C57~#sA7~!ÅC7~"BE7~!,F7~"ÍP7~#j~!A!j~"ô"j~#·îœ~#Þøœ~!“ûœ~"Xýœ~!–þœ~"ú ~#FÔÏ~!ÚÏ~"“ÛÏ~#tª#²·!×¹"W»!A¼"éÅ#ä5!Ž’5"”5#bh##mh!xoh"øph!åqh"õ|h# ?›!K›"šL›#b&Î#©*Î!¤,Î"x.Î!b/Î"+9Î#_ú€!$€"ï€#7Ü3€#Eà3€!Äâ3€"Aä3€!+å3€"ð3€#¤»f€!©Âf€"\Äf€# ™€#Ùš™€!.™€"çž™€! ™€")«™€#&uÌ€!·zÌ€"R|Ì€#Pÿ€#lUÿ€!aWÿ€"íXÿ€!ÚYÿ€"æeÿ€#o&2! 32"=52#qe#Ä e!jeæekworker/4:11x"?e!Ye"Ö%eÅ*ekworker/0:1kworker/4:11µ4ekworker/4:11% žE”âj=ekworker/4:11kworker/0:1#aà—!]ë—"ší—#ÃÊ#WÈÊ! ËÊ"ÎÌÊ!ÐÍÊ"4ÙÊ#ò˜ý!û¤ý"ê¦ý#8y0‚#·‚0‚!x…0‚"»‡0‚!½ˆ0‚"‹“0‚#˜Rc‚!’^c‚"<`c‚#q/–‚!Ë<–‚"Õ>–‚# É‚#%É‚!zÉ‚"ýÉ‚!íÉ‚"Ã%É‚#óû‚!éøû‚"¥úû‚#¶È.ƒ#ˆÓ.ƒ!}Õ.ƒ"u×.ƒ!zØ.ƒ"öà.ƒÐ3ƒahci à3ƒhá3ƒuhci_hcd:usb3 -æ3ƒVç3ƒeth1 ýë3ƒ#_¦aƒ!ë°aƒ" ³aƒ#‹‚”ƒ#k”ƒ!½”ƒ"@‘”ƒ!’”ƒ"¼œ”ƒ#€\ǃ!’lǃ"Nnǃ#d9úƒ#EFúƒ!RHúƒ"ùIúƒ!ûJúƒ"Vúƒ#!-„!d -„"V"-„#/ó_„#Òü_„!Íþ_„"•`„!—`„"ª `„#ÌÏ’„!EÜ’„"aÞ’„#²¬Å„#&ºÅ„!!¼Å„"g¾Å„!i¿Å„"¯ÊÅ„#\‰ø„!R–ø„"˘ø„#¸o+…#Ùr+…!°t+…"Zv+…!Dw+…"®‚+…#C^…!yP^…"R^…#ß(‘…#í,‘…!K/‘…"Ë0‘…!ý1‘…"ñ=‘…#wþÃ…!‘ Ä…"q Ä…ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ Ûö…È7iöÈ7ð€# Ûö…#Âëö…!áíö…/÷ö…ltt-kconsumerd2®üö…ltt-kconsumerd2x"6÷…!D÷…"¼ ÷…U÷…kworker/0:1ltt-kconsumerd2°E÷…‚R÷…öSZ÷…u\÷…ö€@ŽK=¿R^÷…¦a÷…HŽK=¿çv÷…iy÷…=ù÷…‹ü÷…-™ ø…@‚0 ltt-kconsumerd‘,ø…L/ø…ö'3ø…Ä5ø…öB?ø…@Aø…ö€@ŽK=¿ÀBø…£Dø…HŽK=¿Kø…vMø…ó„ø…Çø…-ÈŽø…€‚0 ltt-kconsumerd¤ø…¿¦ø…ö;©ø…l®ø…°Ä@ ÿÿÿÿÿÿÿÿݽø…€Àø…ö˜Ìø…`Îø…ö€@ŽK=¿ Ðø…³Òø…HŽK=¿iÚø…UÜø…ßù…Rù…p-,ù…x€0 ltt-kconsumerd)/ù…1ù…`7ù…‹9ù…Ý`”Wù…݉Yù…ö]ù…°_ù…°Ä@ ÿÿÿÿÿÿÿÿyoù…ltt-kconsumerd2t% ½âMzù…ltt-kconsumerd2kworker/0:1f™†ahci 㩆Z«†uhci_hcd:usb3 °†T±†eth1 ûµ†#ü¾)†!Æ)†"ƒÈ)†#Z–\†#S \†!B¢\†"m¤\†!™¥\†"¦³\†#Ñr†!D†"뀆#/T†#\W†!¢Y†"1[†!'\†"íh†#œ4õ†!X9õ†"e;õ†#Ç(‡#(‡!ß(‡"n(‡!d(‡" #(‡#ÛìZ‡!QòZ‡"øóZ‡#’Á‡#Ї!*Ò‡"1Ô‡!BÕ‡"Î߇#+À‡!¼¨À‡"œªÀ‡#‚{ó‡#†ó‡!ˆó‡"“‰ó‡!†Šó‡"–ó‡#^&ˆ!øe&ˆ"g&ˆ#›3Yˆ#Ç>Yˆ!ž@Yˆ"$BYˆ!GCYˆ"ÈOYˆ#ªŒˆ!@Œˆ"Þ Œˆ#<í¾ˆ!¦ö¾ˆ"¡ø¾ˆ#]Ëñˆ#¸Öñˆ!"Ùñˆ"±Úñˆ!§Ûñˆ"£åñˆ#Û¦$‰!³$‰"è´$‰#âW‰#´‘W‰!î“W‰"’•W‰!…–W‰"מW‰#ÅjЉ!$oЉ"ÑpЉ ahci  ‰‘‰uhci_hcd:usb3 ¬•‰—‰eth1 *œ‰#@½‰#WJ½‰!âL½‰"O½‰!ýO½‰"÷X½‰#ð‰!§)ð‰"E+ð‰#÷"Š#o#Š!Ð#Š"› #Š!¬ #Š"”#Š#üÓUŠ!NâUŠ"õãUŠ#µ°ˆŠ#E½ˆŠ!Ä¿ˆŠ"×ÁˆŠ!ÈŠ"̈Š#›»Š!œ»Š"©ž»Š#ÊsîŠ#ïxîŠ!’{îŠ"o}îŠ!€~îŠ"ˆîŠ#ïS!‹!-X!‹"[Z!‹##$T‹#©/T‹!¹1T‹"93T‹!/4T‹"Í>T‹#‡‹!̇‹"µ‡‹#-蹋#@í¹‹!w﹋"Bñ¹‹!5ò¹‹"‚ü¹‹#‰ºì‹!ÕÈì‹"mÊì‹#埌#v¥Œ!…¨Œ"JªŒ![«Œ"õŒ#û}RŒ!I„RŒ"†RŒ#~T…Œ#À`…Œ!Bc…Œ"Ëd…Œ!f…Œ"“o…Œ#R0¸Œ!Y<¸Œ" >¸Œ#³ ëŒ#lëŒ!TëŒ"ÔëŒ!ÊëŒ"…$ëŒ#ŒçÁüÁõ©‹à‡îØF²ÿbÊ™HŽþôÈ7k™È7Ø€!þôVýltt-kconsumerd2Últt-kconsumerd2x"½† kworker/0:1ltt-kconsumerd2©+/öu2I4ö€@ŽK=¿ð58HŽK=¿àBÏD¦y7|-w„H‚0 ltt-kconsumerd›ž¢ v¥q§Ý¹¶ÝÛ¸öôº¾°Ä@ ÿÿÿÿÿÿÿÿ®Êltt-kconsumerd20ÉUÒ½â€×ltt-kconsumerd2kworker/0:11F#ahci ŠV#éW#uhci_hcd:usb3 ~\#¿]#eth1 ib##\ÎP#MÔP!)×P"uÙP!tÚP"XäP#šªƒ!=°ƒ"z²ƒ#€¶#Œ¶!\޶"H¶!;‘¶"<œ¶#÷[é!×fé"‡hé#°7Ž#ÜBŽ!CEŽ"ÉFŽ!¼GŽ"aQŽ#ÂOŽ!%OŽ"¯&OŽ#NûŽ#;ÿŽ!'‚Ž"³‚Ž!¦‚Ž" ‚Ž#@δŽ!}ß´Ž"á´Ž#ùªçŽ#¹çŽ!p»çŽ"P½çŽ!C¾çŽ"RÇçŽ#n!§–"]˜#dM#ÏpM!EsM"¼tM!²uM",€M#XJ€!GO€"Q€#’ ³#©+³!.³"®/³!¤0³" :³#ûå!æ"« æ#Õà#Gä!oæ"éç!Üè"ò#å´K!ÃK"ðÄK#¼”~#Š ~!ë¢~"k¤~!a¥~"$¯~#v±!‡{±"}±#©Kä#¥Vä!ßXä"ûZä!\ä"íeä##(‘!6‘"8‘#êJ‘#ŸJ‘!‹J‘"J‘!J‘"­J‘©•#läÛ•!hëÛ•" íÛ•#À–#Ä–!•Æ–"BÈ–!˜É–"€Õ–#«žA–!¤A–"é¥A–#Írt–#€t–!ç‚t–"Í„t–!Ò…t–"Ât–#‚O§–!êZ§–"K]§–#].Ú–#>9Ú–!É;Ú–"=Ú–!®>Ú–"IÚ–#? —!© —"G —#4è?—#®õ?—!!ø?—":ú?—!Bû?—"ï@—#¼Âr—!ñÒr—"¡Ôr—#¢Ÿ¥—#Ϭ¥—!¬®¥—"P°¥—!C±¥—"7º¥—#Â|Ø—!*ŠØ—"ì‹Ø—#šZ ˜#¨e ˜!Hh ˜"Îi ˜!k ˜"¯s ˜#>7>˜!A>˜"'C>˜#9q˜#q˜!d"q˜"$q˜!õ$q˜"ª-q˜#ã!xý£˜"dÿ£˜#µÎÖ˜!ºÛÖ˜"FÝÖ˜F÷™uhci_hcd:usb4 Æû™ý™eth0#™ ÿ™ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<™È7½žc È7€€!<™«'™sshdf(L,™sshdf(x">™lB™kworker/0:1sshdf(Õ]™.b™𢴀ÿp£´€ÿûd™ùf™p£´€ÿ÷h™öo™àc´€ÿ@Yy™0’™@ù¨ª2 ù¨ª2# ™~¢™𢴀ÿp£´€ÿ—¤™ž¦™p£´€ÿ¨™¦ª™ Eªª2Gµ™sshdf(÷‰â¸™kworker/4:11x(¼™sshdf(xÈÁ™•Ç™@ù¨ª2 ù¨ª2(Ñ™sshdf(¥¹*âÖÔ™sshdf(kworker/4:11Õê™kworker/4:117Õ_”âåõ™kworker/4:11kworker/0:1#Ÿ· ™#» ™!=¿ ™"SÍ ™!aÎ ™"ß ™"· ™sshdf(x~¾ ™kworker/0:1sshdf(µÕ ™ߨ ™𢴀ÿp£´€ÿÛ ™Ý ™p£´€ÿšÞ ™Cá ™àb´€ÿ@/ì ™&  ™@ù¨ª2 ù¨ª2d ™Œ ™𢴀ÿp£´€ÿE ™Ó ™p£´€ÿP ™þ ™‹¨ª2P-9 ™P$? ™@ù¨ª2 ù¨ª2¾J ™sshdf(9–òÀâßV ™sshdf(kworker/0:1#»‘<™!ɘ<™"N›<™# no™#šro™!=uo™"övo™!ïwo™"Ù„o™²Wt™ahci )nt™”ot™uhci_hcd:usb3 Jtt™ßut™eth1 ’zt™#bB¢™#øL¢™!SO¢™"ü "OHü #™/¡!c/¡"»/¡#}äa¡#Dña¡!<óa¡" õa¡!öa¡"db¡#[Ê”¡!ìÏ”¡"ÌÑ”¡5ù™¡ahci —š¡)š¡uhci_hcd:usb3 Í š¡ š¡eth1 ëš¡#q§Ç¡#´¬Ç¡!¯Ç¡"Ú°Ç¡!ʱǡ"À»Ç¡#Ë{ú¡!¦†ú¡"•ˆú¡#ÒX-¢#+d-¢!f-¢"Bh-¢!5i-¢"ús-¢#ž4`¢!P@`¢"÷A`¢#b“¢#f“¢!š!“¢"Î#“¢!Ä$“¢"E.“¢#-îÅ¢!ûÅ¢"ýÅ¢ÀË¢ahci m#Ë¢¨$Ë¢uhci_hcd:usb3 7)Ë¢f*Ë¢eth1 /Ë¢#vËø¢#1Õø¢!n×ø¢"xÙø¢!kÚø¢"“åø¢#Ÿ¨+£!ij+£"×µ+£#ä…^£!„^£"F‘^£#‰a‘£#äj‘£!Õm‘£"do‘£!Zp‘£"½|‘£#¤?Ä£!ÁIÄ£"ÈKÄ£¬sÑ£ahci H€Ñ£žÑ£uhci_hcd:usb3 3†Ñ£Ňѣeth1 {ŒÑ£#¹÷£#‡'÷£!Ð)÷£"æ+÷£!Ù,÷£"¨6÷£#V*¤!n*¤" *¤#ÒÔ\¤##â\¤!Bä\¤" æ\¤!ýæ\¤"qñ\¤#5º¤!¿¤"=Á¤#ŽÂ¤!˜›Â¤"N¤#Alõ¤#[tõ¤! wõ¤"–xõ¤!‰yõ¤"¼‚õ¤#DS(¥!Y(¥"ÐZ(¥#ë+[¥#2[¥!—4[¥"6[¥! 7[¥"4@[¥#ÿŽ¥!wŽ¥" Ž¥#ÉßÀ¥!#íÀ¥"äïÀ¥#r»ó¥#’Èó¥!)Ëó¥"¬Ìó¥!¢Íó¥"z×ó¥#¢&¦!J©&¦"âª&¦#ô|Y¦#>Y¦!®ƒY¦"y…Y¦!l†Y¦"#Y¦#RŒ¦!)_Œ¦"¾`Œ¦#¾.¿¦#›<¿¦! ?¿¦"Ä@¿¦!áA¿¦"çJ¿¦# ò¦!=ò¦"öò¦#’è$§#„ô$§!^ö$§"Û÷$§!ù$§"%§#QÅW§!òÐW§"&ÓW§#G¢Š§#œ°Š§!µ²Š§"G´Š§!:µŠ§"K¿Š§#½§!»½§"1“½§#ß[ð§#ið§!UE²#Âx²!=#x²"A%x²#µòª²#•ýª²!íÿª²"|«²!r«²"S «²#£Íݲ!?Úݲ"Üݲ›ã²ahci ?ã²Âã²uhci_hcd:usb3 ?㲌ã²eth1 B"ã²#Óª³!¹³"Ø»³#,‡C³#à”C³!—C³"™C³!›šC³"'¥C³#Äfv³!uv³"çvv³#-A©³#£L©³!O©³"´P©³!­Q©³"Š\©³#ˆܳ!ì'ܳ"D*ܳ#5ü´#=´! ´"„ ´!¡ ´"B´#“ÙA´!ÝæA´"ÉèA´#\´t´#;¾t´!ØÀt´"Ât´!¨Ãt´"ÖÎt´#:“§´!YŸ§´"?¡§´#þmÚ´#mzÚ´!e|Ú´"ñ}Ú´!ç~Ú´"‹Ú´#!U µ!šZ µ"A\ µ#0@µ#6@µ!8@µ"3:@µ!>;@µ"•D@µ#” sµ!#sµ"»sµ#Q᥵#­î¥µ!)ñ¥µ"âò¥µ!íó¥µ"mþ¥µ#\¿Øµ!õÌØµ"ŸÎص#§¤ ¶# ¨ ¶!§ª ¶"!¬ ¶!h­ ¶"°¹ ¶#Å~>¶!˜„>¶"{†>¶#9]q¶#Xbq¶!_dq¶"ßeq¶!Øfq¶"qq¶Ûš¶uhci_hcd:usb4 ®ßš¶æàš¶eth0#wæš¶ gçš¶!žéš¶"n ›¶#™<¤¶!›C¤¶"«E¤¶™Åº¶ahci ÍÓº¶2Õº¶uhci_hcd:usb3 »Ùº¶Ûº¶eth1 ñߺ¶#Ý×¶#T×¶!î×¶"×¶! ×¶"Ù+×¶#ðõ ·!û ·"Èü ·#÷Ï<·#DÔ<·!rÖ<·"ø×<·!ñØ<·"ä<·#¨o·!°µo·"f·o·#¦¢·#Õ¢·!B’¢·"¿“¢·!µ”¢·"0ž¢·#*`Õ·!½lÕ·"[nÕ·#ŸF¸#JJ¸!TL¸"ÔM¸!O¸"DY¸#B;¸!T%;¸"ã&;¸##øm¸#gn¸!bn¸" n¸!n¸"n¸#‡Ò ¸!€ß ¸"á ¸#è¸Ó¸#_½Ó¸!ÀÓ¸"÷ÁÓ¸!ÿÂÓ¸"ŠÎÓ¸#”¹!p™¹"&›¹#þo9¹#Âu9¹!x9¹"‘y9¹!„z9¹"A„9¹#Fl¹!Pl¹"æRl¹##Ÿ¹#P+Ÿ¹!).Ÿ¹"Ó/Ÿ¹!Û0Ÿ¹"<Ÿ¹#—Ò¹!Ò¹"¯Ò¹#˜Ûº#áæº!Oëº" íº!îº"Éøº#ŠÁ7º!ÙÆ7º"ªÈ7º#U—jº#·¢jº!¥¥jº"|§jº!„¨jº"J²jº#(rº!^~º"€º# Pк!F[к"ü\к#¼6»#|:»!=»"·>»!ª?»"ÚH»#§6»!Ö6»"%6»êI;»ahci }V;»ÖW;»uhci_hcd:usb3 ‰\;»Ç];»eth1 €b;»#ðh»ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ™ôh»È7Ð:%ÅÈ7À€#™ôh»!Ùùh»jÿh»ltt-kconsumerd2•i»ltt-kconsumerd2x"ü i»!1 i»"i»i»kworker/0:1ltt-kconsumerd2(8i»TÔ!ƒÅ>Ô"3Ç>Ô#;–qÔ!¯¡qÔ"ƒ£qÔ”xÔahci Ç xÔö¡xÔuhci_hcd:usb3 a¦xÔ‡§xÔeth1 @¬xÔ#,t¤Ô#F¤Ô!k¤Ô"`ƒ¤Ô!P„¤Ô"3¤Ô#ÓQ×Ô!‚[×Ô",]×Ô#Ž, Õ#Ó; Õ!> Õ"ù? Õ!ã@ Õ"]K Õ#² =Õ!€=Õ"0=Õ#PæoÕ#¢òoÕ!õoÕ"†öoÕ!s÷oÕ" pÕ#BâÕ!8ТÕ"âÑ¢Õ#n¡ÕÕ!ª«ÕÕ"¨­ÕÕ#à|Ö#³‰Ö!ŒÖ"¯Ö!œŽÖ"ž˜Ö#âY;Ö!šf;Ö"¤h;Ö#^7nÖ#@CnÖ!ìEnÖ"¥GnÖ!ªHnÖ"îRnÖ#º¡Ö!„¡Ö"4!¡Ö#QðÓÖ#ÌýÓÖ!²ÿÓÖ">ÔÖ!+ÔÖ"Ù ÔÖ#±Î×!³Û×"ŠÝ×#ï©9×#Ù´9×!à¶9×"~¸9×!h¹9×"JÂ9×#l×!ð“l×"Ž•l×#YcŸ×#œoŸ×!pqŸ×"sŸ×! tŸ×"”}Ÿ×#W@Ò×!Øahci Õ>Ø>Øuhci_hcd:usb3 o“>Ø›”>Øeth1 B™>Ø#™ßjØ#ÐäjØ!ÈæjØ"±èjØ!žéjØ"—ójØ#„¶Ø!rÀØ"ÂØ#‹ÐØ#žÐØ!© ÐØ"8¢ÐØ!%£ÐØ"æ«ÐØ#{mÙ!LyÙ"ÕzÙ#:J6Ù#bU6Ù!™W6Ù"RY6Ù!?Z6Ù"–c6Ù# )iÙ!{2iÙ"4iÙ#ÉœÙ#ÔœÙ!#œÙ"»œÙ!¨œÙ"ÑœÙ#½êÎÙ! ïÎÙ"_ñÎÙ#1ÇÚ#žÌÚ!xÎÚ"ûÏÚ!!ÑÚ">ÛÚ#"›4Ú!S§4Ú"Z©4Ú#ÇgÚ#¨…gÚ!£‡gÚ",‰gÚ!ŠgÚ"“gÚ#Ä[šÚ!½bšÚ"¸dšÚ#Ì7ÍÚ#:<ÍÚ!D>ÍÚ"Ä?ÍÚ!®@ÍÚ"2JÍÚ#¸ Û!´Û"ÄÛ#—ò2Û#óö2Û!Bù2Û"@û2Û!Bü2Û"Q3Û#tÎeÛ!4ÕeÛ"ÆÖeÛ#N«˜Û#5²˜Û! ´˜Û"’µ˜Û!y¶˜Û"%¿˜Û#ƒËÛ!™ËÛ"O‘ËÛ#»`þÛ#kþÛ!pmþÛ">oþÛ!=pþÛ"¾yþÛ#°:1Ü!˜I1Ü"-K1Ü#×!dÜ#¢&dÜ! )dÜ"Ô*dÜ!Ó+dÜ"ñ4dÜ#Çý–Ü!õ—Ü"Õ—Ü#ÓÉÜ#þÜÉÜ!ßÉÜ"àÉÜ!„áÉÜ"ÀêÉÜ#4®üÜ!ºüÜ"ô»üÜ#Œ‹/Ý#–/Ý!ž˜/Ý"!š/Ý!›/Ý"z¤/Ý#ÂqbÝ!)wbÝ"ybÝ#|O•Ý#ºS•Ý!uV•Ý"=X•Ý!?Y•Ý"c•Ý#l!ÈÝ!b2ÈÝ"]4ÈÝkbÍÝahci TvÍÝ¡wÍÝuhci_hcd:usb3 9|ÍÝq}ÍÝeth1 !‚ÍÝ#ÌÿúÝ#¤ ûÝ!kûÝ"rûÝ!tûÝ">ûÝ#éÛ-Þ!=è-Þ";ê-Þ#a¹`Þ!SÅ`Þ"èÆ`Þ#"ž“Þ#Q¢“Þ!Ф“Þ"q¦“Þ!s§“Þ"б“Þ#€rÆÞ!›ÆÞ"NÆÞ#–XùÞ#@]ùÞ!†_ùÞ"-aùÞ!/bùÞ"ÐlùÞ#ø-,ß!l9,ß" ;,ß#Þ_ß! _ß"¹_ß#pç‘ß#¯ó‘ß!‚ö‘ß"\ø‘ß!^ù‘ß"=’ß#5ÃÄß!fÌÄß"ûÍÄß#ªž÷ß#«÷ß!~­÷ß"F¯÷ß!H°÷ß"“¹÷ß#»‚*à!·*à"l‰*à#X]à#€g]à!oi]à"@k]à!Bl]à"u]à#5à!î@à"ÅBà±8œàahci ¿EœàGœàuhci_hcd:usb3 ªKœàâLœàeth1 ˜Qœà#Ãà#¤Ãà! Ãà"Ü!Ãà!Æ"Ãà"-Ãà#Øðõà!“üõà"dþõà#óÔ(á#ûØ(á!öÚ(á"sÜ(áÁüÁõ©‹à‡îØF²ÿbÊ™HŽ«Ý(áÈ7cÌæéÈ7à€!«Ý(á"ìç(á#³[á!i¸[á-¾[áltt-kconsumerd2Ä[áltt-kconsumerd2x"¶È[á-Í[ákworker/0:1ltt-kconsumerd2„ë[áï[áö;ò[áýó[áö€@ŽK=¿¡õ[á“÷[áHŽK=¿(\á\áO@\áþB\á€-ÔK\á@ˆ0 ltt-kconsumerd2c\áKe\ápéi\áÕk\áÝpÖy\áÝõ{\áö ~\á\\á°Ä@ ÿÿÿÿÿÿÿÿ@‹\áFŽ\áöö¤\ᵦ\áö€@ŽK=¿û¨\á&«\áHŽK=¿»²\á•´\áiï\áò\áÀ-&ù\áh†0 ltt-kconsumerd” ]áÚ]á°]áæ]áݰë!]áÝÅ#]áö²']á=*]á°Ä@ ÿÿÿÿÿÿÿÿð7]áltt-kconsumerd2v °ÁâÂD]áltt-kconsumerd2kworker/0:1Ä'báahci 25báÄ6báuhci_hcd:usb3 ž;báßôá#[Kôá!_Môá"èNôá!ÛOôá"“[ôá#¶'â!™''â"4)'â#‹Zâ#VZâ!<Zâ"ËZâ!» Zâ"ZZâ#QÕŒâ!qàŒâ"~âŒâ#c³¿â#p¼¿â!4¿¿â"ÀÀ¿â!­Á¿â"XË¿â#ôŽòâ!¾žòâ"_ òâ#ím%ã#[x%ã!Âz%ã"™|%ã!¡}%ã"*ˆ%ã#’HXã!ETXã"`WXã#f%‹ã#Ò/‹ã!o2‹ã"õ3‹ã!ß4‹ã"Æ>‹ã#…¾ã!g¾ã" ¾ã#öÞðã!Àêðã"¸ìðã#£Ä#ä#È#ä!àÉ#ä"cË#ä!PÌ#ä".Ö#ä# ™Vä!8§Vä"ĨVä#w‰ä!F‰ä"„‰ä#8Z¼ä#O^¼ä!>`¼ä"Êa¼ä!·b¼ä"(m¼ä#Y8ïä!w>ïä"3@ïä# "å#Z"å!Í"å"Y"å!I"å"f'"å#éTå!¬ôTå"DöTå#߯‡å!&Ô‡å"'Ö‡å#¤¢ºå#Ê­ºå!C°ºå" ²ºå!(³ºå"ý¼ºå#píå!Žíå"Êíå#‚f æ#™j æ!ýl æ"zn æ!go æ"™y æ#ÏBSæ!iHSæ"JSæ#»†æ#˜!†æ!$†æ"…%†æ!r&†æ"[1†æ#Ôò¸æ!“¹æ"¹æ#MÐëæ#ÜÚëæ!CÝëæ"ßëæ!àëæ"éëæ#o¬ç!H¹ç"¦»çœÂ#çahci ðÎ#çOÐ#çuhci_hcd:usb3 ÛÔ#çÖ#çeth1 ØÚ#ç#2ŒQç#A–Qç!f˜Qç"=šQç!*›Qç"g¦Qç#½f„ç!Íq„ç"ts„ç#øB·ç#çM·ç!ŠP·ç"R·ç!S·ç"¶]·ç#Ô êç!á+êç"—-êç#Ÿüè#gè!t è"B è!M è"—è#‹ÙOè!üéOè"åëOè#v¹‚è#ÌÄ‚è!ÇÆ‚è"VÈ‚è!CÉ‚è"ýÒ‚è#$“µè!|Ÿµè"#¡µè#…yèè#Š}èè!Ùèè"ªèè!²‚èè"üŒèè#:Té!¿Yé"®[é#Ü)Né##4Né!6Né"O8Né!Z9Né"ªCNé#|é!é" é 5†éahci JA†éB†éuhci_hcd:usb3 íF†éyH†éeth1 ,M†é#ã³é#Hñ³é!=ó³é"\õ³é!Iö³é"b´éÁüÁõ©‹à‡îØF²ÿbÊ™HŽ#ÃæéÈ7ʼ@ñÈ7€€##Ãæé!NÒæé•Ùæéltt-kconsumerd2;ßæéltt-kconsumerd2x"*äæéÒçæékworker/0:1ltt-kconsumerd2§çéxçéö`çé+çéö€@ŽK=¿„çévçéHŽK=¿”+çéŒ-çéeçé–gçé-ÓoçéHˆ0 ltt-kconsumerd߇çéò‰çé€÷çéïçéÝ€ñ™çéÝÝ›çéöíçéü çé°Ä@ ÿÿÿÿÿÿÿÿ©çé-¬çé!öâ´çéž¶çé!ö€@ŽK=¿¥¸çéyºçé!HŽK=¿{ÁçéLÃçé"µüçé@ÿçé" -êè阅0 ltt-kconsumerdãèéJèé" èéä!èéÝ"ú,èéÝÈ.èé!öß2èé5èé°Ä@ ÿÿÿÿÿÿÿÿÏBèéltt-kconsumerd2Üd|ÃâkOèéltt-kconsumerd2kworker/0:1#ñ§ê#•¬ê!ž¯ê"ç±ê!³ê"¯¼ê#Š…Lê!aŠLê" ŒLê#`ê#dê!{fê"øgê!iê"Ltê#e3²ê!µ=²ê"h?²ê#åê# åê!òåê"uåê!båê"*åê#íë!µûë"Yýë#KÊJë#\ÕJë!3×Jë"LÙJë!9ÚJë"$æJëPëahci žPëPëuhci_hcd:usb3 ¼PëýPëeth1 ¶ Pë#|¨}ë!§´}ë"±¶}ë#‡°ë#A”°ë!’—°ë"„™°ë!†š°ë"ø£°ë#e`ãë!ëjãë"lãë#<=ì#ŽHì!ÎJì"cLì!MMì"²WìvD!ìahci lQ!ìàR!ìuhci_hcd:usb3 rW!ì­X!ìeth1 o]!ì#bIì!Ð&Iì"×(Iì# |ì#j|ì!_|ì"å |ì!ð |ì"[|ì#BÜ®ì!ðâ®ì"šä®ì#‡°áì#¼áì!n¾áì"0Àáì!2Ááì"¨Ìáì#…Ží!ʘí"nší#ívGí#¤zGí!À|Gí"R~Gí!BGí"1ŠGí#%Gzí!Szí",Uzí#m+­í#6/­í!R1­í"Õ2­í!¿3­í"@­í#Ãàí!D àí"îàí#uÞî#…æî!¸éî"›ëî!…ìî"õî#·ÂEî!mÊEî"SÌEî#e¢xî#T§xî!@©xî"Àªxî!Å«xî"K¶xî#t«î!D«î"«î#ÞPÞî#;ZÞî!_]Þî"â^Þî!Ï_Þî"$kÞî#Ê-ï!Ó9ï"n;ï#úDï#ùDï!ÇDï"GDï!1Dï"¢&Dï#wçvï!µôvï"_övï#)Ä©ï#bË©ï!ÂΩï"HЩï!5Ñ©ï"Ý©ï#j«Üï!£±Üï"b³Üï#2~ð#R‹ð!šŽð"§ð!¬‘ð"5œðÿlðahci +yðzðuhci_hcd:usb3 û~ðK€ðeth1 .…ð#Ý\Bð!ƒkBð"–mBð#’7uð# Auð!ËCuð"ÞEuð!æFuð"Quð#"¨ð!v!¨ð"h#¨ð#9ñÚð#€þÚð!DÛð"Ûð!Ûð"%Ûð#ýÍ ñ!}Ò ñ"iÛ ñ#«Þ ñ ã ñksoftirqd/4x~ê ñkworker/0:1ksoftirqd/4!¡î ñ"ð ñ]ó ñksoftirqd/4à\ â‚þ ñksoftirqd/4kworker/0:1#™­@ñ#Ÿ@ñ!8»@ñÁüÁõ©‹à‡îØF²ÿbÊ™H޲Â@ñÈ7NûûÈ7ð€²Â@ñltt-kconsumerd2ìÇ@ñltt-kconsumerd2x"6Ì@ñ!bÍ@ñ"òÖ@ñ|Ú@ñkworker/0:1ltt-kconsumerd2\ù@ñ:ý@ñö@AñAñö€@ŽK=¿aAñMAñHŽK=¿AñþAñDAñ«FAñ -rOAñPˆ0 ltt-kconsumerdòeAñhAñ×kAñÆmAñÝòwAñÝüyAñö|AñAñ°Ä@ ÿÿÿÿÿÿÿÿó‹Añltt-kconsumerd2žÄÚÃâÔAñltt-kconsumerd2kworker/0:1#ó”sñ!à›sñ"žsñ#d¦ñ#?o¦ñ!¾q¦ñ"As¦ñ!.t¦ñ"„~¦ñ#?JÙñ!×NÙñ"±PÙñ#z( ò#¬, ò!›. ò"'0 ò!1 ò" ; ò#4û>ò!/?ò"-?ò#Úqò#æqò!—èqò"Sêqò!Uëqò"fõqò#д¤ò!⾤ò"›À¤ò#›‘×ò#Í›×ò!ž×ò"ŸŸ×ò!Œ ×ò"sª×ò#o ó!åy ó"£| ó#9U=ó#&Y=ó![=ó"¤\=ó!”]=ó"Qg=ó#x/pó!™5pó"+7pó#Ú£ó#-£ó! £ó"Ì£ó!Σó"å!£ó#¥áÕó!.íÕó"ÒîÕó#*Àô# Êô!‘Ìô"Îô!Ïô"ØÙô#wœ;ô!;¨;ô"!ª;ô¥pFôahci ø}FôxFôuhci_hcd:usb3 ûƒFôE…Fôeth1 ŠFô#@xnô#”nô!d„nô"׆nô!ćnô"o‘nô#;U¡ô!Õc¡ô"‚e¡ô#÷1Ôô#x>Ôô!„AÔô"LCÔô!9DÔô"ÀMÔô#Ðõ!¬õ"Mõ#të9õ#îø9õ!Rû9õ"ý9õ!ïý9õ"@:õ#ÐÓlõ!}Ølõ"'Úlõ#½­Ÿõ#[²Ÿõ!´Ÿõ"¶Ÿõ!ü¶Ÿõ" ÀŸõ#‚Òõ!«Òõ"‚Òõ#Ü^ö#¯jö!mö"{nö!hoö"¶xö#ÌC8ö!ñH8ö"’J8ö#bkö#û$kö!³'kö"0)kö!*kö"T5kö#lõö!žö"Ížö#ÒÐö#ØÜÐö!ŸßÐö"áÐö! âÐö"íÐö#ù®÷!•¹÷"$»÷#6÷#v—6÷!Ñ™6÷"{›6÷!hœ6÷"§6÷#§hi÷!½vi÷"Rxi÷#~Eœ÷#aPœ÷!\Rœ÷"èSœ÷!ÒTœ÷"#^œ÷#~"Ï÷!2Ï÷"Ù3Ï÷#1ÿø#¹ ø! ø"Žø!{ø"¥ø# Ü4ø!ê4ø"aì4ø̱9øahci b¾9øÊ¿9øuhci_hcd:usb3 VÄ9øŽÅ9øeth1 ;Ê9ø#TÀgø#ÈÄgø!ÉÆgø"…Ègø!rÉgø"VÓgø#Εšø!¢£šø©šøkworker/4:11x"꬚øa±šøkworker/0:1kworker/4:118¼šøkworker/4:11‚ù˜âÇšøkworker/4:11kworker/0:1#â}Íø#$Íø!åƒÍø"­…Íø!¦†Íø"‘Íø#üVù!J]ù"÷^ù#®43ù#y83ù!;3ù"=3ù!>3ù"`H3ù#5 fù!ófù"»fù#áå˜ù#ÿï˜ù!ùò˜ù" ô˜ù!¥õ˜ù"Îÿ˜ù#ŽÍËù!ÓÓËù"‰ÕËù#cŸþù#¾ªþù!­þù"¯þù!°þù"3ºþù#^|1ú!‰Š1ú"®Œ1úF‹6úahci T˜6ú°™6úuhci_hcd:usb3 Ež6úƒŸ6úeth1 Q¤6ú#Zdú#îfdú!Êidú"¼kdú!Äldú"udú#¹6—ú!ÙC—ú"†E—ú#Êú#uÊú!Ö!Êú"Ñ#Êú!Ê$Êú"r.Êú#²ïüú!óýüú"úÿüú#éÔ/û#SÚ/û!`Ü/û"%Þ/û!ß/û"è/ûÃÖ4ûahci hã4û»ä4ûuhci_hcd:usb3 Dé4ûîê4ûeth1 ­ï4û#S²bû!‚¸bû"€ºbû#8•û#­••û!‡—•û"™•û!÷™•û"­¤•û#dÈû!‰mÈû"‡oÈû#~@ûûÁüÁõ©‹à‡îØF²ÿbÊ™HŽÙLûûÈ7——.ýÈ7°~€#ÙLûû!µQûûËVûûltt-kconsumerd2Š[ûûltt-kconsumerd2x"`ûû!0aûû"Riûûèlûûkworker/0:1ltt-kconsumerd2‹ûû˜ûûöƒ’ûûT”ûûö€@ŽK=¿à•ûûÉ—ûûHŽK=¿ñ¢ûûé¤ûûtÔûû×ûû°-fßûûXˆ0 ltt-kconsumerdÀôûûÖöûû óúûûåüûûÝ üûÝŠ üûöñ üûEüû°Ä@ ÿÿÿÿÿÿÿÿüûltt-kconsumerd2MÁg›ÄâÕ$üûltt-kconsumerd2kworker/0:1#á'.ü!^/.ü"›1.ü#±aü#¼aü! aü"ú aü!ÿ aü"ôaü#ÎØ“ü!Äã“ü"€å“ü#³Æü#a¾Æü!•ÀÆü"WÂÆü!XÃÆü"cÍÆü#÷ùü!^Ÿùü"¡ùü#²w,ý#k|,ý!\~,ý"€,ý!,ýB’,ýltt-kconsumerd2x",ý” ,ýkworker/0:1ltt-kconsumerd2·,ýº,ýöáÂ,ý÷Ä,ýö€@ŽK=¿ Ç,ýÉ,ýHŽK=¿ÊÐ,ýÅÒ,ýS-ýV -ýP-Z-ý°†0 ltt-kconsumerdû#-ýmd1_raid1.-ýš0-ý@5-ý]7-ýÝ@ñB-ýÝÔD-ýö=H-ý¿J-ýö'X-ýæY-ýö€@ŽK=¿ö[-ýÐ]-ýHŽK=¿‰e-ýfg-ý†¤-ý§-ý -.®-ýX‰0 ltt-kconsumerdÂ-ý/Ä-ý©È-ýÂÊ-ýÝ'Õ-ýÝ×-ýö¡Ù-ý8Ü-ý°Ä@ ÿÿÿÿÿÿÿÿ¾æ-ýsé-ý!ö¦û-ýký-ý!ö€@ŽK=¿!ÿ-ýþ.ý!HŽK=¿ .ý .ý"æ?.ýbB.ý" -ÊI.ýØ…0 ltt-kconsumerd¥\.ýµ^.ý"ÿb.ý»d.ýÝ")o.ýÝýp.ý!öut.ýßv.ýö!†.ýׇ.ýö€@ŽK=¿AŠ.ýŒ.ýHŽK=¿æ“.ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽw–.ýÈ7” BýÈ7P1€w–.ýÒ.ý)Õ.ý-gÜ.ýˆ„0 ltt-kconsumerd’í.ýÆï.ýðwó.ý<õ.ýÝð /ýÝ÷/ýö¸/ýI/ý°Ä@ ÿÿÿÿÿÿÿÿ/ýL/ýö/ýÐ/ýö€@ŽK=¿/ýñ/ýHŽK=¿(/ýî)/ým/ý_p/ýÀ-x/ýhˆ0 ltt-kconsumerdã‹/ýö/ý°7’/ý”/ýݰw/ýÝcŸ/ýö©¡/ýC¤/ý°Ä@ ÿÿÿÿÿÿÿÿÿ±/ýltt-kconsumerd2[#¾Çâz¾/ýltt-kconsumerd2kworker/0:1Á8;ýahci F;ý|G;ýuhci_hcd:usb3 L;ýdM;ýeth1 R;ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽ–ÚiÉ7X—ÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_20000755000175000017500000050000011616325072020144 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽæ‡È7nÝk}È7ø€ÿÿ#ñHØyÈ7#BUØy #‘ZØy!1]Øy"¦`Øy!«aØy":fØy!xgØy "úlØy # z#Ô z !r' z") z!* z ". z #¬÷=z#Ë>z # >z!†>z">z!b >z"â >z!Õ>z "€>z #£Òpz# Ôpz !ìápz"~ãpz!eäpz "[ëpz «‡qzsshdf(x7qzkworker/0:1sshdf( ¡qzsshdf(«®ÆôL ?´qzsshdf(kworker/0:1RÅqzsshdf(xtÊqzkworker/0:1sshdf(TÛqz·Þqz𢴀ÿp£´€ÿñàqzÂâqzp£´€ÿNäqzµæqzàb´€ÿ@zñqz2çrz@ù¨ª2 ù¨ª2| rz•rz𢴀ÿp£´€ÿ<rz.rzp£´€ÿ–rz±rz‹¨ª2`44rz`ƒ9rz@ù¨ª2 ù¨ª2Drzsshdf(¾€lGõL ’Mrzsshdf(kworker/0:1f«vzsshdf(x?±vzkworker/0:1sshdf(ÄvzÕÆvz𢴀ÿp£´€ÿÇÈvz€Êvzp£´€ÿîËvz@Îvzàb´€ÿ@©×vz$©évz@ù¨ª2 ù¨ª2]ðvzsòvz𢴀ÿp£´€ÿ)ôvzßõvzp£´€ÿ ÷vzPúvz‹¨ª2PYwzPfwz@ù¨ª2 ù¨ª2h!wzsshdf(–xÀõL z*wzsshdf(kworker/0:1#F¹£z#½£z #Á£z!bÄ£z"/Ç£z!dÈ£z"ÎÍ£z!ÇΣz "SÓ£z #Ó–Öz#™šÖz !ïžÖz";¡Öz!"¢Öz "j¥Öz #–i {#°p {!Ft {"üu {!Úv {"¢{ {>4{ahci#Ê>{ ’@{oB{uhci_hcd:usb3 G{¢H{eth1 ‘M{!þO{d{kworker/2:1Qx(Žn{€ºð0+kworker/0:1"Ö€{t…{kworker/0:1kworker/2:1QÄŒ{kworker/2:1QE*T ÝL  •{kworker/2:1Qkworker/0:1#ZG<{# O<{ !V<{"JX<{!‘Y<{ "r]<{ #w!o{#&*o{ #‘.o{!×0o{"Ÿ2o{!ƒ3o{"Q8o{!/9o{ " =o{ #È¢{# ¢{ !g¢{"A¢{!(¢{ "²¢{ #ÝãÔ{#±åÔ{ #SéÔ{!¨ëÔ{"MïÔ{!1ðÔ{"õÔ{!öÔ{ "ïøÔ{ #Áº|#™Â| !ãÆ|"~È|!eÉ| "&Ì| 93|ahci MC|²D|uhci_hcd:usb3 )I|¯J|eth1 SO|ø>6|ahci ÛL6|UN6|uhci_hcd:usb3 ¥R6|ÔS6|eth1 „X6|#¦ž:|#ø :| #¸¤:|!L§:|"k©:|!dª:|"¯:|!°:| "—³:| úN|ahci ¨O|é O|uhci_hcd:usb3 O|ÈO|eth1 O|Se|ahci <%e|}&e|uhci_hcd:usb3 å*e|>,e|eth1 è0e|#¦sm|#Gum| !›m|"“ƒm|!¿„m| "͈m| #mN |#}W | #?\ |!v^ |"D` |!%a |"&f |!þf | "|j | #œ+Ó|#4Ó| !á:Ó|"Ž<Ó|!=Ó| "ë?Ó| #}#Ú}!€}" }!í}"[}#ßå8}![ò8}"8ô8}#ÝÁk}#ÂËk} #ˆÏk}!¹Ñk}"~Ók}ÁüÁõ©‹à‡îØF²ÿbÊ™HŽdÕk}È7k›W‰È7Ѐ!dÕk}"uåk}!hæk} "¢èk} #Ûžž}!©ž}O²ž}ltt-kconsumerd2·ž}ltt-kconsumerd2x"f¼ž}”Áž}kworker/0:1ltt-kconsumerd2ùž}nŸ}öŸ}Ÿ}ö€@ŽK=¿¾Ÿ}³Ÿ}HŽK=¿a-Ÿ}h/Ÿ}üÀŸ}›ÄŸ}-ÞäŸ}À€0 ltt-kconsumerdï  }¼ }ö" }' }°Ä@ ÿÿÿÿÿÿÿÿg( }ltt-kconsumerd2öq{:•M º5 }ltt-kconsumerd2kworker/0:1#7‡Ñ}#AŒÑ}!YÑ}")’Ñ}!F“Ñ}"_˜Ñ}ãÒ×}ahci wä×}èå×}uhci_hcd:usb3 ¹ê×}ì×}eth1 Ëð×}#zb~!Îh~"êj~#57~#‰@7~!‡B7~"D7~! E7~"ãI7~#þj~!C"j~"ê#j~#Ûîœ~#ýœ~!ÿœ~" ~!~"à~#ËÌÏ~!cØÏ~"RÚÏ~#Jª#rµ!Ö·"§¹!©º"&¿#A…5!$“5"Ë”5#bh#Xnh!•ph"rh!sh"Uwh#ä>›!¼K›"~M›#'Î#x(Î!d*Î",Î!-Î" 1Î#Úú€!€"±€#øÛ3€#åß3€!Lâ3€"Ìã3€!õä3€"`é3€#¥ºf€!¢Àf€":Âf€#-™€#¼™™€!Þ›™€"m™€!Zž™€"P¢™€#ÿtÌ€!5{Ì€"â|Ì€# Pÿ€#!Uÿ€!@Wÿ€"ÒXÿ€!ÂYÿ€"^ÿ€#»/2!52"G72#qe#ve!Ýe"äe!Ñe"{e#8ß—!Ûë—"Qî—#(ÄÊ#\ÉÊ!äËÊ"‹ÍÊ!ÎÊ"žÒÊ#õ˜ý!‚¥ý"§ý#x0‚!X„0‚"h†0‚#£\c‚#-`c‚!Bcc‚"¼dc‚!©ec‚"\jc‚#€/–‚!ð;–‚Ê@–‚kworker/2:1Qx"ÕD–‚‚I–‚kworker/0:1kworker/2:1Q&W–‚kworker/2:1Qš7ÞL `–‚kworker/2:1Qkworker/0:1#ÁÉ‚#ÐÉ‚!ŽÉ‚"×É‚!ÇÉ‚"Õ"É‚#ëû‚!­õû‚"9÷û‚#ÓÆ.ƒ!ÿÑ.ƒ"$Ô.ƒÝù3ƒahci  4ƒ’ 4ƒuhci_hcd:usb3 Z4ƒ†4ƒeth1 -4ƒ#‡¥aƒ# ±aƒ!X³aƒ"nµaƒ![¶aƒ"¡»aƒ#Û€”ƒ!ë‹”ƒ"¡”ƒ#ieǃ#Äjǃ!ªlǃ"?nǃ!Soǃ"åsǃ#nAúƒ!Húƒ"«Iúƒ#î -„#œ$-„!Ü&-„"€(-„!…)-„".-„#ÿò_„!zý_„"cÿ_„#ÆÏ’„#Û’„!žÝ’„"ß’„!zà’„"ñä’„#Ьń!\ºÅ„"c¼Å„#jø„#Ó™ø„!1œø„"Ažø„!CŸø„"£ø„#Bf+…!r+…"«s+…#YC^…#0N^…!+P^…"ºQ^…!ªR^…"îV^…#Ž(‘…!ë.‘…"¼0‘…#»üÃ…!C Ä…"Ø Ä…#wÛö…#Öæö…!Oéö…"Ìêö…!¹ëö…"Ùïö… †ahci Lц¥Ò†uhci_hcd:usb3 ׆6؆eth1 õ܆#æ¼)†!DÂ)†"BÄ)†#!“\†#"¡\†!•£\†"ê¥\†!ï¦\†"«\†#Õq†!Ü}†"&‚†#©U†#—X†!†Z†"0\†!,]†"a†#4õ†!³8õ†"r:õ†#­(‡#ƒ(‡!o(‡"(‡!~(‡"!(‡#ôëZ‡!+ñZ‡"ÞòZ‡#ˇ#F·!›Ð‡"]Ò‡!bÓ‡"aׇ#(À‡!a¬À‡"&®À‡#ðyó‡#ˆó‡!&Šó‡"Ù‹ó‡! ó‡"ìó‡#^&ˆ!—f&ˆ"2h&ˆ# =Yˆ#­@Yˆ!PCYˆ"EYˆ!FYˆ"^JYˆ#iŒˆ!SŒˆ"` Œˆ#$í¾ˆ#¦ö¾ˆ!ù¾ˆ"¢ú¾ˆ!•û¾ˆ"¿ˆ#Êñˆ!ÖÓñˆ"†Õñˆ#ê¦$‰!”±$‰"ø³$‰#LW‰#ÍW‰!à’W‰"~”W‰!k•W‰ÁüÁõ©‹à‡îØF²ÿbÊ™HŽè™W‰È7u¬“È7€€"è™W‰#QiЉ!1nЉBuЉltt-kconsumerd2ŽzЉltt-kconsumerd2x"‰Љ©ƒŠ‰kworker/0:1ltt-kconsumerd2ƒ¯Š‰Z´Š‰ö·Š‰²¹Š‰ö€@ŽK=¿V»Š‰H½Š‰HŽK=¿ðÉŠ‰ÊËŠ‰õ‹‰Ý‹‰-Ç‹‰È€0 ltt-kconsumerd^-‹‰¡/‹‰þ5‹‰28‹‰Ý˜S‹‰ÝœU‹‰öX‹‰c[‹‰°Ä@ ÿÿÿÿÿÿÿÿ,h‹‰ltt-kconsumerd2ï)–M “s‹‰ltt-kconsumerd2kworker/0:1ש‰ahci ?º‰ò»‰uhci_hcd:usb3 fÀ‰³Á‰eth1 ±Æ‰#¾?½‰#K½‰!¡N½‰"üP½‰!õQ½‰"†W½‰#Õð‰!*%ð‰"÷'ð‰#H#Š#ó#Š!Ö#Š"õ #Š!è #Š"°#Š#ÕUŠ!†ãUŠ"åUŠ# °ˆŠ#×¾ˆŠ!±ÀˆŠ"šÂˆŠ!ÈŠ"LjŠ#ÄŽ»Š!b—»Š"l™»Š#¾sîŠ#ÝxîŠ!ízîŠ"…|îŠ!À}îŠ"³îŠ#J!‹!W!‹"ÏX!‹#Û#T‹#e1T‹!Q3T‹"5T‹!÷5T‹"_:T‹#†‡‹!±‡‹"Ö‡‹#๋#gí¹‹!P﹋"ßð¹‹!Øñ¹‹"`÷¹‹#˜ºì‹!©Çì‹"zÉì‹#o Œ#㤌!†§Œ"T©Œ!GªŒ"U®Œ#n}RŒ!SƒRŒ"î„RŒ#FS…Œ#Ê\…Œ!—_…Œ">a…Œ!Ib…Œ"f…Œ#°/¸Œ!«>¸Œ"U@¸Œ#¼ ëŒ#gëŒ!wëŒ"ýëŒ!DëŒ"ëŒ#‰ç!¾õ"h÷#óÄP#ÑP!ÓP"òÔP!åÕP"ÚP?Vahci ;V¬Vuhci_hcd:usb3 VaVeth1 /"V#£ƒ!ž¯ƒ"±±ƒ#ê}¶!‘‰¶"gŒ¶#cé#]hé!‘jé"&lé!mé"qéÇÊøapache2Q x Ðøkworker/0:1apache2Q "Ùø¬âø=ÿÿÿÿÿÿÿÿ¬—„ÿ(À=äà ²åøapache2êéø=Vìøà—„ÿ»óøapache2Q $*£8ßL  üøapache2Q kworker/0:1#ëBŽ!¼GŽ"ØIŽ#»OŽ##OŽ!˜%OŽ"K'OŽ!V(OŽ"Ç,OŽ#àòŽ!;ÿŽ"ñ‚Ž#IδŽ#:Ú´Ž!›Ü´Ž"*Þ´Ž! ß´Ž"^ã´Ž#OµçŽ!ºçŽ"¼çŽ#ˆ#Z•!Á—"M™!Cš"¥ž#ÒdM!&qM" sM#A€#‹M€!þO€"xQ€!kR€"¸V€#a!³!©.³"_0³#7ûå!N æ"U æ#@â#æ!è"Šé!}ê"ð#ë´K!”ÃK";ÅK#@•~#ÄŸ~!4¢~"É£~! ¥~"ü©~#w±!•|±"3~±#pKä#¥Vä!,Zä"¸[ä!«\ä"¶`ä#5(‘!u7‘"6:‘#òJ‘#J‘!–J‘"LJ‘!WJ‘"J‘#ßá|‘!Ìë|‘"Üí|‘®â‘ahci ü‘½ý‘uhci_hcd:usb3 =‚‘~‚‘eth1 :‚‘#¸È¯‘#€Í¯‘!‡Ï¯‘"»Ñ¯‘!ÀÒ¯‘"gׯ‘#«›â‘!¨â‘"È©â‘#Ax’#,„’!3†’"=ˆ’!H‰’"n’#MUH’!}eH’"$gH’#2{’#2={’!Ø?{’"£A{’!®B{’"˜F{’#Á®’!y®’")®’#„íà’#ôøà’!^ûà’"ýà’!1þà’"Qá’#{È“!Ô“"Ÿ×“#^¥F“#ê°F“!‡³F“"µF“!÷µF“"8ºF“#*‚y“!‰y“"W‘y“# k¬“#»n¬“!°p¬“"Er¬“!ƒs¬“ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ z¬“È7›5=™È78€" z¬“#ÁCß“!ÑHß“Oß“ltt-kconsumerd2ÒSß“ltt-kconsumerd2x"©Xß“Õ\ß“kworker/0:1ltt-kconsumerd2¶‡ß“#ß“öß“E’ß“ö€@ŽK=¿ì“ß“–ß“HŽK=¿à¢ß“ó¤ß“Tæß“Héß“ -òß“Ѐ0 ltt-kconsumerd à“Eà“›à“~à“Ý'!à“Ý.#à“ö%à“þ(à“°Ä@ ÿÿÿÿÿÿÿÿ‡6à“ltt-kconsumerd2»ã: —M öBà“ltt-kconsumerd2kworker/0:1#$”#K(”!¥+”"Ù-”!Û.”"Í3”#zýD”!ÆE”"aE”#wÔw”!Éßw”"Xáw”#‚°ª”#¹ª”!q»ª”"ù½ª”!¿ª”"¯Âª”_Ƶ”ahci ›Õµ”9×µ”uhci_hcd:usb3 ³Ûµ”<ݵ”eth1 âµ”#•—Ý”!–œÝ”"ëžÝ”#Õh•!šs•"Xv•#_FC•#ÙNC•!ÁQC•"GSC•!@TC•"çXC•#m"v•!V1v•"-3v•#Yÿ¨•#N©•! ©•"¿ ©•!å ©•"©•#ÜÛ•!«çÛ•"@éÛ•#0–#Æ–!<È–"îÊ–!çË–"Ж#‡žA–!‘£A–"ú¬A–#ñrt–#!t–!ßt–"׃t–!è„t–")‰t–#|O§–!z[§–"Ø]§–#~.Ú–#?;Ú–!=Ú–"?Ú–!@Ú–"9DÚ–#E —!– —"" —#¶ç?—#tó?—!Ìõ?—"X÷?—!Nø?—"2ü?—#æÂr—!dÏr—"ÿÐr—#«¥—#Í®¥—! ±¥—"ϲ¥—!ø³¥—"¸¥—#w|Ø—!ۇؗ"v‰Ø—#,Y ˜#Žd ˜!èg ˜"hi ˜![j ˜"œn ˜#27>˜!É@>˜"¯B>˜#þq˜#Ðq˜!Í"q˜"V$q˜!F%q˜"Ø)q˜#¡ï£˜!ü£˜"´ý£˜# ÎÖ˜!9ÛÖ˜"@ÝÖ˜#Ϫ ™#;µ ™!œ· ™"Ĺ ™!Ϻ ™"w¾ ™½n ™md1_raid1xt ™kworker/0:1md1_raid130€ ™€ x€P‚0 -Bƒ ™€ xmd1_raid1.5– ™€ xmd1_raid10Ò› ™md1_raid13Р ™€ x€P‚0 -£ ™€ xmd1_raid1.Å­ ™€ xmd1_raid1'`¸ ™€ xmd1_raid11VË ™md1_raid1(Ù ™€ xmd1_raid1'*ñ ™€ xmd1_raid11Où ™md1_raid1(þ ™€ xmd1_raid13u ™€º~x€‚0 - ™€º~xmd1_raid1.' ™€º~xmd1_raid10Ÿ ™md1_raid13  ™€º~x€‚0 -¶" ™€º~xmd1_raid1.´' ™€º~xmd1_raid1'Ô+ ™€º~xmd1_raid11Ò0 ™md1_raid1(Ÿ3 ™€º~xmd1_raid1'Ÿ? ™€º~xmd1_raid11þC ™md1_raid1(F ™€º~xmd1_raid1ôS ™md1_raid1òå óL t^ ™md1_raid1kworker/0:1(˜™uhci_hcd:usb4 ðœ™О™eth0# ó¥™!¢¨™"Ù™#¤<™!d—<™"ª™<™¯=™md1_raid1x%=™kworker/0:1md1_raid13 =™€Ò}x€0 -!=™€Ò}xmd1_raid1.='=™€Ò}xmd1_raid10m*=™md1_raid13 ,=™€Ò}x€0 -.=™€Ò}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‹3=™È7˜\›žÈ7€.‹3=™€Ò}xmd1_raid1'v<=™€Ò}xmd1_raid11^A=™md1_raid1(E=™€Ò}xmd1_raid1'èS=™€Ò}xmd1_raid11~W=™md1_raid1(7Y=™€Ò}xmd1_raid1Øf=™md1_raid1ÛTçmóL $o=™md1_raid1kworker/0:1#Úno™#!so™!xvo™p{o™ltt-kconsumerd2Wo™ltt-kconsumerd2x"˃o™!ú„o™"OŠo™„Žo™kworker/0:1ltt-kconsumerd26£o™Þ¦o™ö¢©o™y«o™ö€@ŽK=¿­o™H¯o™HŽK=¿p·o™M¹o™±åo™rèo™0-·ño™Ø€0 ltt-kconsumerd ÿo™md1_raid1°p™à p™ âp™Âp™Ý Áp™ÝÅp™öç p™$p™°Ä@ ÿÿÿÿÿÿÿÿq0p™ltt-kconsumerd2–±Ð¾—M —:p™ltt-kconsumerd2kworker/0:1#ÐJ¢™!ZQ¢™"»S¢™#%Õ™#¡)Õ™!ö+Õ™"Ž-Õ™!±.Õ™"£3Õ™#¥ùš!š"{š#7â:š#Óå:š! è:š"Šé:š!}ê:š"ï:š#¯»mš!ÑÀmš"ÀÂmš#ט š# š!õž š"~  š!q¡ š"¯¥ š#nÓš!(zÓš"Û{Óš#ÉI›# V›!"X›"ðY›!ãZ›"ú^›Áè ›ahci#€ó › Nõ › ÷ ›uhci_hcd:usb3 ®û ›"ý ›eth1 Ì ›!H ›&ž ›€Ú}x*"ë! ›#ƒ(9›!ò49›"q79›#Xl›#´l›! l›"l›!l›"Xl›#Rèž›!îž›"Oðž›#½Ñ›#UÉÑ›!§ËÑ›"KÍÑ›!;ÎÑ›"ÓÑ›#활!‡¥œ"§œ#Ãv7œ!+‚7œ"È„7œ#ß]jœ#óajœ!]djœ".fjœ!0gjœ"&kjœ#D9œ!Ø>œ"Ù@œ#ž М#sМ!¼М"ÃМ!¶М"9!М#-ê!ø"·ù#Î5#Ò5!ûÓ5" Ö5!øÖ5"úÚ5#ܬh!¶±h"f³h#e‚›#\›!ð‘›"¯“›!±”›"˘›#Ž^Î!åhÎ"ÅjÎ#H:ž#ÛDž!Gž"¡Hž!ÖIž"®Mž# 4ž!¾#4ž"e%4ž#Ñüfž#agž!Dgž"Ígž!ºgž"gž#ÉЙž!NÝ™ž":ß™ž¨šžmd1_raid1xè­šžkworker/0:1md1_raid13T´šž€â}x€(0 -?·šž€â}xmd1_raid1.\¾šž€â}xmd1_raid10šžmd1_raid13óÚž€â}x€(0 -Æšž€â}xmd1_raid1.AÊšž€â}xmd1_raid1'Ïšž€â}xmd1_raid11'Õšžmd1_raid1(gÚšž€â}xmd1_raid1'uêšž€â}xmd1_raid11ïšžmd1_raid1(¬òšž€â}xmd1_raid1㛞md1_raid1 YšÓõL ù ›žmd1_raid1kworker/0:1ø/›žmd1_raid1x)5›žkworker/0:1md1_raid13;›ž€J~x€0 -Z=›ž€J~xmd1_raid1.½C›ž€J~xmd1_raid10ÒF›žmd1_raid13…H›ž€J~x€0 -àJ›ž€J~xmd1_raid1.¸N›ž€J~xmd1_raid1'íR›ž€J~xmd1_raid11yW›žmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<[›žÈ7§;ü È7È€(<[›ž€J~xmd1_raid1'ýi›ž€J~xmd1_raid11Àm›žmd1_raid1(µo›ž€J~xmd1_raid1@{›žmd1_raid1çKöL >ƒ›žmd1_raid1kworker/0:1ç䤞ahci# N𤞿ñ¤žuhci_hcd:usb3 Šö¤ž×÷¤žeth1 ‡ü¤ž!3ÿ¤ž&¡¥ž€J~x*í¥žkworker/2:1Qx"%¥žœ#¥žkworker/0:1kworker/2:1Q+¥žkworker/2:1Q켺àL 92¥žkworker/2:1Qkworker/0:1#°Ìž#º»Ìž!–¾ÌžòÂÌžltt-kconsumerd2èÆÌžltt-kconsumerd2x"ÔËÌž!ôÌÌž"ûÑÌž«ÖÌžkworker/0:1ltt-kconsumerd2ÕëÌžŒïÌžö2òÌž ôÌžö€@ŽK=¿ŒõÌžx÷ÌžHŽK=¿ÅÍžœÍž~-ÍžW0Íž@-*9Ížà€0 ltt-kconsumerdŒCÍžmd1_raid1·KÍžNÍž0¡RÍžTÍžÝ0ó]ÍžÝå_ÍžödbÍžXeÍž°Ä@ ÿÿÿÿÿÿÿÿqÍžltt-kconsumerd2N«j˜M Y|Ížltt-kconsumerd2kworker/0:1#0–ÿž!“œÿž"NŸÿž#i2Ÿ#Þq2Ÿ!ºt2Ÿ":v2Ÿ!9w2Ÿ"õ{2Ÿ#XDeŸ!dQeŸ"¶SeŸifŸmd1_raid1x”fŸkworker/0:1md1_raid13~fŸ€ê}x€00 -ñfŸ€ê}xmd1_raid1.9&fŸ€ê}xmd1_raid10·)fŸmd1_raid13Á+fŸ€ê}x€00 -.fŸ€ê}xmd1_raid1.$2fŸ€ê}xmd1_raid1'Ñ6fŸ€ê}xmd1_raid11ÿ;fŸmd1_raid1(@fŸ€ê}xmd1_raid1'šOfŸ€ê}xmd1_raid11rSfŸmd1_raid1(@UfŸ€ê}xmd1_raid1¥bfŸmd1_raid1DRìÇ÷L  kfŸmd1_raid1kworker/0:1#@+˜Ÿ#±/˜Ÿ!„2˜Ÿ"¾4˜Ÿ!É5˜Ÿ"F:˜Ÿ#ŽËŸ!À ËŸ"jËŸ#ŸÛýŸ!äåýŸ"pçýŸ#§·0 #`Ã0 !TÆ0 "È0 !É0 "kÍ0 #N›c !¢c "¤c ¬Qd md1_raid1xˆVd kworker/0:1md1_raid13°^d €x€X‚0 -Sad €xmd1_raid1.hd €xmd1_raid10 kd md1_raid13@nd €x€X‚0 -Vpd €xmd1_raid1.‚td €xmd1_raid1'Èyd €xmd1_raid11­d md1_raid1(À„d €xmd1_raid1'‰‘d €xmd1_raid11{–d md1_raid1(x™d €xmd1_raid1¦d md1_raid1jVVøL f±d md1_raid1kworker/0:1¼Ïh ahci#Ùh  öÚh yÜh uhci_hcd:usb3 áh vâh eth1 hçh !&êh &Jíh €x*©i kworker/2:1Qx"] i ¡i kworker/0:1kworker/2:1Q+i kworker/2:1QQodáL ½i kworker/2:1Qkworker/0:1#}– #˜€– !eƒ– "¨…– !›†– "‹– #¢WÉ !”\É " aÉ #¯*ü ÁüÁõ©‹à‡îØF²ÿbÊ™HŽl:ü È7.ú¢È7€#l:ü !F?ü ÑDü ltt-kconsumerd2ºIü ltt-kconsumerd2x"INü !xOü "ïSü UWü kworker/0:1ltt-kconsumerd2÷uü zü öD}ü 6ü ö€@ŽK=¿é€ü ù‚ü HŽK=¿9Žü =ü Ë¿ü •Âü P-Ëü è€0 ltt-kconsumerd*Öü md1_raid1OÞü Sàü @<åü Rçü Ý@ñü Ýóü ö@õü gøü °Ä@ ÿÿÿÿÿÿÿÿ¦ý ltt-kconsumerd2³»Ñ%™M Eý ltt-kconsumerd2kworker/0:1#ð/¡!u/¡"ú/¡®›/¡md1_raid1xë /¡kworker/0:1md1_raid13f§/¡€ò}x€80 -ñ©/¡€ò}xmd1_raid1.°/¡€ò}xmd1_raid10Þ³/¡md1_raid13Áµ/¡€ò}x€80 -¸/¡€ò}xmd1_raid1.E¼/¡€ò}xmd1_raid1'ìÀ/¡€ò}xmd1_raid11Æ/¡md1_raid1(åÊ/¡€ò}xmd1_raid1'Ú/¡€ò}xmd1_raid11&Þ/¡md1_raid1(ñß/¡€ò}xmd1_raid1ní/¡md1_raid1§RÕ|ùL ´õ/¡md1_raid1kworker/0:1#}îa¡#%òa¡!ˆõa¡"Ô÷a¡!åøa¡"þa¡#”¡!BΔ¡"ËÏ”¡D€•¡md1_raid1xE…•¡kworker/0:1md1_raid13ÝŒ•¡€Jx€‚0 -&•¡€Jxmd1_raid1.ò••¡€Jxmd1_raid10㘕¡md1_raid13€›•¡€Jx€‚0 -À•¡€Jxmd1_raid1.墕¡€Jxmd1_raid1'µ¨•¡€Jxmd1_raid11µ®•¡md1_raid1(鳕¡€Jxmd1_raid1'…Õ¡€Jxmd1_raid11;È•¡md1_raid1(2Ë•¡€Jxmd1_raid1Ú•¡md1_raid1.\ÙùL õå•¡md1_raid1kworker/0:1#“©Ç¡#ó¬Ç¡!˜°Ç¡"n³Ç¡!y´Ç¡"G¹Ç¡#á}ú¡!ʉú¡"Œú¡#)Y-¢#c-¢!fe-¢"àf-¢!!h-¢"•l-¢#•4`¢!-B`¢"ÔC`¢U ¢uhci_hcd:usb4 G¢—¢eth0#Ú¢ å¢!a¢÷:¢sshdf( @¢sshdf(x"ÉJ¢þN¢kworker/0:1sshdf(ãi¢º¢ Eªª2¦Ä¢sshdf(†…QÎøL LÇ¢kworker/2:1QxBË¢sshdf(xÊТ…Ö¢@ù¨ª2 ù¨ª2Tà¢sshdf(±êøL óã¢sshdf(kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽÌø¢È7Zýý¢È7Ð€Ìø¢kworker/2:1Qi:#âL Ü¢kworker/2:1Qkworker/0:1qv’¢sshdf(xb|’¢kworker/0:1sshdf(v’¢’’¢𢴀ÿp£´€ÿ&”’¢–’¢p£´€ÿ’—’¢š’¢àb´€ÿ@X¤’¢&»’¢@ù¨ª2 ù¨ª2BÂ’¢Ä’¢𢴀ÿp£´€ÿ>Æ’¢È’¢p£´€ÿÉ’¢%Í’¢‹¨ª2P­ê’¢P2ð’¢@ù¨ª2 ù¨ª2ˆú’¢sshdf(p†rpùL Á“¢sshdf(kworker/0:1#†“¢#ó“¢!¹#“¢"'4“¢!25“¢":“¢1ü“¢md1_raid1xû”¢kworker/0:1md1_raid13@ ”¢€ª}x€ð€0 -Ý ”¢€ª}xmd1_raid1.€”¢€ª}xmd1_raid10'”¢md1_raid13®”¢€ª}x€ð€0 -ô ”¢€ª}xmd1_raid1.=%”¢€ª}xmd1_raid1'+”¢€ª}xmd1_raid11—1”¢md1_raid1(7”¢€ª}xmd1_raid1'D”¢€ª}xmd1_raid11I”¢md1_raid1(sL”¢€ª}xmd1_raid1úX”¢md1_raid1=_@8úL Ýc”¢md1_raid1kworker/0:1ö}”¢md1_raid1xè‚”¢kworker/0:1md1_raid131‹”¢€Ê~x€‚0 -}”¢€Ê~xmd1_raid1.””¢€Ê~xmd1_raid10j—”¢md1_raid13C𔢀Ê~x€‚0 -Dœ”¢€Ê~xmd1_raid1.¸ ”¢€Ê~xmd1_raid1'Ë¥”¢€Ê~xmd1_raid11ª”¢md1_raid1(´­”¢€Ê~xmd1_raid1'ì·”¢€Ê~xmd1_raid11a»”¢md1_raid1(¤½”¢€Ê~xmd1_raid1ÌÈ”¢md1_raid1MD…úL  Ð”¢md1_raid1kworker/0:1#ñÅ¢!þÅ¢"«Æ¢ë‰Æ¢md1_raid1xÎŽÆ¢kworker/0:1md1_raid13ö–Æ¢€Ò~x€‚0 -i™Æ¢€Ò~xmd1_raid1.áŸÆ¢€Ò~xmd1_raid10£Æ¢md1_raid13M¦Æ¢€Ò~x€‚0 -“¨Æ¢€Ò~xmd1_raid1.R­Æ¢€Ò~xmd1_raid1'}²Æ¢€Ò~xmd1_raid11]·Æ¢md1_raid1(»Æ¢€Ò~xmd1_raid1'ÖÈÆ¢€Ò~xmd1_raid11ÏÌÆ¢md1_raid1(ÏÆ¢€Ò~xmd1_raid1ÝÆ¢md1_raid1bU¦ÚúL 𿯢md1_raid1kworker/0:1#yÕø¢#KÙø¢!!Üø¢"9ßø¢!Dàø¢"åø¢.ù¢md1_raid1xÓù¢kworker/0:1md1_raid13]™ù¢€úx€@ƒ0 -£›ù¢€úxmd1_raid1.¡ù¢€úxmd1_raid10¤ù¢md1_raid13Ò¥ù¢€úx€@ƒ0 -î§ù¢€úxmd1_raid1.«ù¢€úxmd1_raid1'§¯ù¢€úxmd1_raid11гù¢md1_raid1(·ù¢€úxmd1_raid1'ÓÂù¢€úxmd1_raid11oÆù¢md1_raid1(Èù¢€úxmd1_raid1 Óù¢md1_raid1‚D(ûL £Úù¢md1_raid1kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽüý¢È7„û§È7¸€üý¢ahci#Ëþ¢ „ þ¢õ þ¢uhci_hcd:usb3 «þ¢ïþ¢eth1 “þ¢!Bþ¢&Tþ¢€úx*+,þ¢kworker/2:1Qx"5þ¢„9þ¢kworker/0:1kworker/2:1Q;@þ¢kworker/2:1Q F8âL  Gþ¢kworker/2:1Qkworker/0:1#¯ª+£!¬¶+£ðº+£ltt-kconsumerd2×¾+£ltt-kconsumerd2x"£Â+£)Ç+£kworker/0:1ltt-kconsumerd2 Ý+£â+£ö†å+£iç+£ö€@ŽK=¿øè+£Së+£HŽK=¿üó+£$ö+£Ï&,£),£p-í2,£ø€0 ltt-kconsumerd©=,£md1_raid1àE,£#H,£`M,£O,£Ý`ÎZ,£ÝÛ\,£öW_,£Øb,£°Ä@ ÿÿÿÿÿÿÿÿp,£ltt-kconsumerd2Ò±£×™M `y,£ltt-kconsumerd2kworker/0:1#!ˆ^£#?’^£!W•^£"˜^£!™^£"ž^£#gb‘£!Ól‘£"n‘£#;?Ä£!èIÄ£"gLÄ£òüÄ£md1_raid1xçÅ£kworker/0:1md1_raid13Å£€€x€Hƒ0 -¹ Å£€€xmd1_raid1. Å£€€xmd1_raid10£Å£md1_raid13‰Å£€€x€Hƒ0 -¨Å£€€xmd1_raid1.>Å£€€xmd1_raid1'å Å£€€xmd1_raid11ø%Å£md1_raid1(**Å£€€xmd1_raid1'9Å£€€xmd1_raid11~<Å£md1_raid1(:>Å£€€xmd1_raid1úJÅ£md1_raid1YONÁüL SÅ£md1_raid1kworker/0:1#¹%÷£#)÷£!R,÷£"Œ.÷£!‘/÷£"d5÷£#ù*¤!î*¤"‰*¤#óÞ\¤#°â\¤!Þä\¤"pæ\¤!]ç\¤"ûë\¤#¹±¤!5½¤"뾤#€ŽÂ¤#ý™Â¤!µœÂ¤"! Â¤!¡Â¤"…¥Â¤#Wkõ¤!Âyõ¤"r{õ¤#´R(¥#cX(¥!LZ(¥"#\(¥!%](¥"¸`(¥#¤-[¥!ÿ2[¥"4[¥#XŽ¥#Ž¥!QŽ¥"òŽ¥!⎥"ÞŽ¥#²ÞÀ¥!”îÀ¥"ðÀ¥#T»ó¥#6Çó¥! Éó¥"¥Êó¥!’Ëó¥"‚Ïó¥#Y£&¦!·¨&¦"[ª&¦#­~Y¦#8Y¦!ƒY¦"ø„Y¦!ú…Y¦"ð‰Y¦#RŒ¦!+`Œ¦"ÌaŒ¦#þ0¿¦#õ9¿¦!<¿¦"š=¿¦!‡>¿¦"’B¿¦#l ò¦!Vò¦"îò¦#yé$§#&õ$§!Æ÷$§"Cù$§!0ú$§"2þ$§#fÅW§!nÓW§"!ÕW§#8¢Š§#诊§!ױЧ"¢³Š§!¤´Š§"¹Š§pt‹§md1_raid1xzy‹§kworker/0:1md1_raid13ž‚‹§€~x€X0 -Ò„‹§€~xmd1_raid1.Œ‹‹§€~xmd1_raid10øŽ‹§md1_raid13Α‹§€~x€X0 - ”‹§€~xmd1_raid1."˜‹§€~xmd1_raid1'‹§€~xmd1_raid11£‹§md1_raid1(ô§‹§€~xmd1_raid1'´‹§€~xmd1_raid11Ÿ‹§md1_raid1(1¼‹§€~xmd1_raid1¥É‹§md1_raid1ÃWýL ŠÕ‹§md1_raid1kworker/0:1"ܧahci#Íå§ †ç§'é§uhci_hcd:usb3 Èí§ï§eth1 ×ó§!†ö§ÁüÁõ©‹à‡îØF²ÿbÊ™HŽú§È7x¬È7`€&ú§€~x*+§kworker/2:1Qx"š§É§kworker/0:1kworker/2:1QÞ"§kworker/2:1Q¬OÑâL *§kworker/2:1Qkworker/0:1#ˆ€½§!ÎŒ½§Ó“½§ltt-kconsumerd2_˜½§ltt-kconsumerd2x"ñœ½§- ½§kworker/0:1ltt-kconsumerd2“ʽ§gϽ§öÒ½§ÕÓ½§ö€@ŽK=¿Õ½§üÖ½§HŽK=¿Âã½§Ÿå½§€"¾§5%¾§€-ÿ-¾§Àƒ0 ltt-kconsumerdÃ9¾§md1_raid1B¾§…D¾§pžI¾§lK¾§Ýp7U¾§Ý2W¾§ö{Y¾§A]¾§°Ä@ ÿÿÿÿÿÿÿÿõi¾§ltt-kconsumerd2QÒô©šM âs¾§ltt-kconsumerd2kworker/0:1#®fð§#dkð§!ënð§"”qð§!“rð§"µwð§òð§md1_raid1x"÷ð§kworker/0:1md1_raid13þüð§€ €x€Pƒ0 -tÿð§€ €xmd1_raid1.ïñ§€ €xmd1_raid10m ñ§md1_raid13; ñ§€ €x€Pƒ0 -? ñ§€ €xmd1_raid1.Æñ§€ €xmd1_raid1'(ñ§€ €xmd1_raid11ñ§md1_raid1(Oñ§€ €xmd1_raid1'Ä-ñ§€ €xmd1_raid11r1ñ§md1_raid1(73ñ§€ €xmd1_raid1N@ñ§md1_raid1nO‚…þL ‹Hñ§md1_raid1kworker/0:1#VA#¨!ãG#¨",J#¨#•V¨!¥#V¨":%V¨#§ýˆ¨#.‰¨!‰¨"¦‰¨!–‰¨"! ‰¨#ÈÑ»¨!Ý»¨"°Þ»¨#ƒ¶î¨#mºî¨!‰¼î¨"r¾î¨!t¿î¨"ZÄî¨#‰”!©!ù™!©"µ›!©#ÑeT©#rT©!ñsT©"ÅuT©!ÖvT©"°{T©# J‡©!P‡©"ŸQ‡©#'º©#¶,º©!«.º©"I0º©!91º©"7º©#üì©!Öí©"­í©#™âª#†æª!±èª":êª!$ëª"8ïª#ѵRª!šÂRª"JÄRª!‘Sªmd1_raid1x–Sªkworker/0:1md1_raid13ΞSª€R~x€˜0 -¡Sª€R~xmd1_raid1.g¨Sª€R~xmd1_raid10g«Sªmd1_raid13I®Sª€R~x€˜0 -°Sª€R~xmd1_raid1.Ž´Sª€R~xmd1_raid1'1ºSª€R~xmd1_raid11 ÀSªmd1_raid1(ÏÄSª€R~xmd1_raid1'ÓSª€R~xmd1_raid11Î×Sªmd1_raid1(ªÚSª€R~xmd1_raid1èSªmd1_raid1»Y=ßþL KôSªmd1_raid1kworker/0:1#6ž…ª#¢…ª!ó¤…ª"§…ª!˜¨…ª"o­…ª#ùy¸ª! ~¸ª"G€¸ª#XLëª#3Yëª!\ëª"¼]ëª!¾^ëª"ábëª#%)«!µ5«"b7«#°Q«!ÿQ«"šQ«# 냫#®ðƒ«!Wóƒ«"ãôƒ«! öƒ«"úƒ«#·¿¶«!z̶«"0ζ«#âžé«#™¬é«!÷®é«"Űé«!DZé«"Hµé«™!¬uhci_hcd:usb4 y&¬Ø'¬eth0#t-¬ y.¬!Ô0¬xP¬sshdf(x"\¬†`¬kworker/0:1sshdf( p¬ýs¬𢴀ÿp£´€ÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽÊv¬È7ëñ¬È7à€Êv¬˜{¬p£´€ÿ`}¬U‚¬àc´€ÿ@\Ь0Ö ¬@ù¨ª2 ù¨ª2®¬±¬𢴀ÿp£´€ÿⲬ¼´¬p£´€ÿ$¶¬Ù¸¬ Eªª2CÁ¬sshdf(¬qâùL Ñìkworker/2:1Qx¾Ç¬sshdf(x:ͬàÒ¬@ù¨ª2 ù¨ª2³Û¬sshdf(ÇåüùL òÞ¬sshdf(kworker/2:1Q{ò¬kworker/2:1QÑÅ¥ãL ‹ý¬kworker/2:1Qkworker/0:1M^¬sshdf(xìd¬kworker/0:1sshdf(w¬ày¬𢴀ÿp£´€ÿí{¬¬}¬p£´€ÿ¬~¬àb´€ÿ@+Œ¬&®Ÿ¬@ù¨ª2 ù¨ª2›¦¬ɨ¬𢴀ÿp£´€ÿ|ª¬>¬¬p£´€ÿ…­¬Ö°¬‹¨ª2PãʬP&Ь@ù¨ª2 ù¨ª2šÚ¬sshdf(«~{úL Çã¬sshdf(kworker/0:1#)ˆ¬!wެ"‰¬Ø[¬md1_raid1xfa¬kworker/0:1md1_raid13Wj¬€‚€x€Èƒ0 -ßl¬€‚€xmd1_raid1._t¬€‚€xmd1_raid10—x¬md1_raid13â{¬€‚€x€Èƒ0 -ì}¬€‚€xmd1_raid1.E‚¬€‚€xmd1_raid1'Ó‡¬€‚€xmd1_raid11lެmd1_raid1(”¬€‚€xmd1_raid1'8¡¬€‚€xmd1_raid11Ó¥¬md1_raid1(µ¨¬€‚€xmd1_raid1ص¬md1_raid1O\Œ;ÿL ÁÀ¬md1_raid1kworker/0:1’ì¬md1_raid1xrñ¬kworker/0:1md1_raid13ýù¬€x€`‚0 -Cü¬€xmd1_raid1.V¬€xmd1_raid10ª¬md1_raid13G¬€x€`‚0 -` ¬€xmd1_raid1.À ¬€xmd1_raid1'p¬€xmd1_raid11ìmd1_raid1(/¬€xmd1_raid1'P%¬€xmd1_raid11Å(¬md1_raid1(«*¬€xmd1_raid1I5¬md1_raid1$K°†ÿL ±<¬md1_raid1kworker/0:1ti¬md1_raid1x±n¬kworker/0:1md1_raid13Ùv¬€Ú~x€ ‚0 -(y¬€Ú~xmd1_raid1.ÿ}¬€Ú~xmd1_raid10G¬md1_raid13ì€Ú~x€ ‚0 -Ù…¬€Ú~xmd1_raid1.Q‰¬€Ú~xmd1_raid1'ެ€Ú~xmd1_raid11‡’¬md1_raid1(º•¬€Ú~xmd1_raid1'¡¬€Ú~xmd1_raid11~¤¬md1_raid1(U¦¬€Ú~xmd1_raid1ä°¬md1_raid1sJ#ÑÿL 4¸¬md1_raid1kworker/0:1@ë¬md1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽGð¬È7®È7p€Gð¬kworker/0:1md1_raid13§ü¬€â~x€(‚0 -ÿþ¬€â~xmd1_raid1.¬€â~xmd1_raid10`¬md1_raid13… ¬€â~x€(‚0 -ž ¬€â~xmd1_raid1.欀â~xmd1_raid1'!¬€â~xmd1_raid11Y¬md1_raid1(¡¬€â~xmd1_raid1'ä%¬€â~xmd1_raid11Y)¬md1_raid1(0+¬€â~xmd1_raid1Ù6¬md1_raid1WNzM ?¬md1_raid1kworker/0:1ʸ0¬md1_raid1xY½0¬kworker/0:1md1_raid13êÂ0¬€€x€Xƒ0 -?Å0¬€€xmd1_raid1..Ê0¬€€xmd1_raid10Í0¬md1_raid13ÕÎ0¬€€x€Xƒ0 -ñÐ0¬€€xmd1_raid1.u×0¬€€xmd1_raid1'zÛ0¬€€xmd1_raid11²ß0¬md1_raid1(ã0¬€€xmd1_raid1'uï0¬€€xmd1_raid11«ò0¬md1_raid1(Íô0¬€€xmd1_raid1ñ1¬md1_raid1¥HhM Î1¬md1_raid1kworker/0:1<.1¬md1_raid1xÅ21¬kworker/0:1md1_raid1381¬€Š€x€Ðƒ0 -f:1¬€Š€xmd1_raid1.ï>1¬€Š€xmd1_raid10¼A1¬md1_raid13ÏC1¬€Š€x€Ðƒ0 -âE1¬€Š€xmd1_raid1.NI1¬€Š€xmd1_raid1'5M1¬€Š€xmd1_raid11sQ1¬md1_raid1(©T1¬€Š€xmd1_raid1'Î_1¬€Š€xmd1_raid11@c1¬md1_raid1(e1¬€Š€xmd1_raid1‚o1¬md1_raid1åAªM ½v1¬md1_raid1kworker/0:1Aâ6¬ahci#Åë6¬ í6¬ï6¬uhci_hcd:usb3 Àó6¬õ6¬eth1 Ìù6¬!{ü6¬&®ÿ6¬€â~x*"7¬#­bO¬#fO¬!OiO¬"§kO¬!©lO¬"¶qO¬#=:‚¬!)B‚¬"ÇC‚¬#µ¬#/µ¬!¢ µ¬"g"µ¬!i#µ¬"S'µ¬#¿ìç¬!büç¬"þç¬*¯è¬md1_raid1x‘´è¬kworker/0:1md1_raid13¼è¬€Rx€˜‚0 -u¾è¬€Rxmd1_raid1.–Ä謀Rxmd1_raid10Èè¬md1_raid13Ë謀Rx€˜‚0 -'Í謀Rxmd1_raid1.)Ñ謀Rxmd1_raid1'BÖ謀Rxmd1_raid11'Üè¬md1_raid1(Ñà謀Rxmd1_raid1'®î謀Rxmd1_raid11"óè¬md1_raid1("ö謀Rxmd1_raid1žé¬md1_raid1ZW^M –é¬md1_raid1kworker/0:1#RÒ­#Â×­!¶Ú­"Ý­!Þ­"±â­#§M­!´´M­"d¶M­#3Œ€­#}€­!„’€­".”€­!0•€­"S™€­#ß_³­!l³­"^n³­#Eæ­#âHæ­!@Kæ­"ðLæ­!ïMæ­"TRæ­#›®!ˆ'®"2)®"à®md1_raid1xœä®kworker/0:1md1_raid13'ꮀ"€x€hƒ0 -g쮀"€xmd1_raid1.ò®€"€xmd1_raid10õ®md1_raid13Õö®€"€x€hƒ0 -ëø®€"€xmd1_raid1.¥ü®€"€xmd1_raid1'Ñ®€"€xmd1_raid11º®md1_raid1(+ ®€"€xmd1_raid1'‘®€"€xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÞ®È7ðcL±È7˜€1Þ®md1_raid1(®€"€xmd1_raid1*®md1_raid1ŽJìKM 2®md1_raid1kworker/0:1?I®ahci# R® ÑS®\U®uhci_hcd:usb3 îY®#[®eth1 Ö_®!jb®&+e®€"€x*Ïu®kworker/2:1Qx"î}®&‚®kworker/0:1kworker/2:1Q\ˆ®kworker/2:1QƒH¹ãL p®kworker/2:1Qkworker/0:1#˜þK®#yL®![L®v L®ltt-kconsumerd2¤L®ltt-kconsumerd2x"sL®!“L®"L®KL®kworker/0:1ltt-kconsumerd2A4L®²8L®ö^;L®M=L®ö€@ŽK=¿Ü>L®AL®HŽK=¿›IL®±KL®ZuL®xL®°-$L®؃0 ltt-kconsumerdÚ‹L®md1_raid1ö“L®–L® 4›L®/L®Ý í¨L®Ý «L®ö@­L® °L®°Ä@ ÿÿÿÿÿÿÿÿ ½L®ltt-kconsumerd2ú­îW›M šÈL®ltt-kconsumerd2kworker/0:1#ÄÝ~®!Áã~®"…æ~®#=±±®#†½±®!~¿±®".Á±®!'±®"‘DZ®#ýŒä®!öšä®"¦œä®#mt¯#Cw¯!Îy¯"K{¯!G|¯"K¯#%HJ¯!¦TJ¯"_VJ¯#r,}¯#š1}¯!˜3}¯"„5}¯!}6}¯"Ü:}¯´ã}¯md1_raid1x©è}¯kworker/0:1md1_raid13Eï}¯€*€x€pƒ0 -ßñ}¯€*€xmd1_raid1.î÷}¯€*€xmd1_raid10Ÿû}¯md1_raid13¬ý}¯€*€x€pƒ0 -Åÿ}¯€*€xmd1_raid1.v~¯€*€xmd1_raid1'~¯€*€xmd1_raid11* ~¯md1_raid1(¡~¯€*€xmd1_raid1'­ ~¯€*€xmd1_raid11$~¯md1_raid1(ð%~¯€*€xmd1_raid1ò2~¯md1_raid1‘PæìM  ;~¯md1_raid1kworker/0:1#x °¯!#°¯"c°¯#9Ýâ¯!ëâ¯"öìâ¯#%ð#áǰ!<ʰ"Å˰!»Ì°"õѰ#í˜H°!n£H°"™¥H°#Q}{°#}{°! „{°"……{°!x†{°"YŠ{°#MX®°!_®°"“`®°#f.á°!õ8á°"Ô;á°#†±#±!u±"û±!î±" ±#çF±!"öF±"Û÷F±HºG±md1_raid1x(¿G±kworker/0:1md1_raid13%ÈG±€ê~x€0‚0 -eÊG±€ê~xmd1_raid1.ÐG±€ê~xmd1_raid10DÓG±md1_raid13/ÖG±€ê~x€0‚0 -3ØG±€ê~xmd1_raid1.ŒÜG±€ê~xmd1_raid1'äáG±€ê~xmd1_raid11xçG±md1_raid1(LìG±€ê~xmd1_raid1'@øG±€ê~xmd1_raid11ÕüG±md1_raid1( H±€ê~xmd1_raid16 H±md1_raid1#U BM ÿH±md1_raid1kworker/0:1JL±ahci#&L± Ø'L±a)L±uhci_hcd:usb3 ð-L±R/L±eth1 4L±!®6L±&½9L±€ê~x*›LL±kworker/2:1Qx"[VL±rZL±kworker/0:1kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽjbL±È7ýð³È7€jbL±kworker/2:1Q)SäL ElL±kworker/2:1Qkworker/0:1#ˆÅy±!DÐy±p×y±ltt-kconsumerd2öÛy±ltt-kconsumerd2x"$áy±Ååy±kworker/0:1ltt-kconsumerd2z±¶z±ökz±Wz±ö€@ŽK=¿Ëz±´z±HŽK=¿ƒ*z±f,z±5rz±#uz±À-¢}z±èƒ0 ltt-kconsumerdu‰z±md1_raid1“’z±Ž”z±°ö˜z±Üšz±Ý°s¥z±Ýn§z±ö®©z±Ò¬z±°Ä@ ÿÿÿÿÿÿÿÿð¸z±ltt-kconsumerd2ÍÝ»5œM ÞÄz±ltt-kconsumerd2kworker/0:1#»¬¬±#Û°¬±!)´¬±" ·¬±!¸¬±";½¬±#kß±!ê‹ß±"‹ß±#AZ²#¡i²!l²"¯m²!±n²"òr²#d8E²!@DE²"kFE²#&x²#­"x²!œ$x²""&x²!'x²"M.x²#Ïðª²!‹þª²"8«²3•«²md1_raid1xXš«²kworker/0:1md1_raid13‹ «²€2€x€xƒ0 - £«²€2€xmd1_raid1.¯©«²€2€xmd1_raid10c­«²md1_raid13v¯«²€2€x€xƒ0 -’±«²€2€xmd1_raid1.Q¶«²€2€xmd1_raid1' »«²€2€xmd1_raid11æÀ«²md1_raid1(GÆ«²€2€xmd1_raid1'çÔ«²€2€xmd1_raid11ÈØ«²md1_raid1(ªÛ«²€2€xmd1_raid1Ä諲md1_raid1œTÀ¿M ñ«²md1_raid1kworker/0:1#¸Ùݲ#Ýݲ!ëßݲ""âݲ!'ãݲ"èݲ{—Þ²md1_raid1x|œÞ²kworker/0:1md1_raid13¥Þ²€~x€`0 -˧޲€~xmd1_raid1.Ä­Þ²€~xmd1_raid10±Þ²md1_raid13´Þ²€~x€`0 -X¶Þ²€~xmd1_raid1.EºÞ²€~xmd1_raid1'$ÀÞ²€~xmd1_raid11ÑÄÞ²md1_raid1(OÈÞ²€~xmd1_raid1'¹ÖÞ²€~xmd1_raid11UÚÞ²md1_raid1( ÜÞ²€~xmd1_raid1£éÞ²md1_raid1`T M ÔôÞ²md1_raid1kworker/0:1# ¬³!^º³"½³éX³md1_raid1xü]³kworker/0:1md1_raid13¥f³€Z~x€ 0 -ôh³€Z~xmd1_raid1.¾n³€Z~xmd1_raid10r³md1_raid13ou³€Z~x€ 0 -pw³€Z~xmd1_raid1.±{³€Z~xmd1_raid1'Ѐ³€Z~xmd1_raid11D…³md1_raid1( ˆ³€Z~xmd1_raid1',–³€Z~xmd1_raid11š³md1_raid1(_œ³€Z~xmd1_raid1ˆ©³md1_raid1ÈRèfM Œ´³md1_raid1kworker/0:1½¬³ahci#ÿµ³ Á·³P¹³uhci_hcd:usb3 ÷½³M¿³eth1 ýó!©Æ³&»É³€Z~x*šÛ³kworker/2:1Qx"Áä³üè³kworker/0:1kworker/2:1QÁüÁõ©‹à‡îØF²ÿbÊ™HŽnï³È7ô楶È78€nï³kworker/2:1QL/åL ßù³kworker/2:1Qkworker/0:1#I’C³#µ•C³!‹˜C³ÛŸC³ltt-kconsumerd2Q¥C³ltt-kconsumerd2x"ªC³!±«C³"m°C³dzC³kworker/0:1ltt-kconsumerd2oÞC³¬ãC³öšæC³˜èC³ö€@ŽK=¿*êC³ìC³HŽK=¿¬øC³†úC³G2D³&5D³Ð-V>D³ðƒ0 ltt-kconsumerdeJD³md1_raid1µTD³¿VD³À“[D³Ä]D³ÝÀ'gD³ÝiD³öhkD³žnD³°Ä@ ÿÿÿÿÿÿÿÿòzD³ltt-kconsumerd2ÔÖ M =„D³ltt-kconsumerd2kworker/0:1#œpv³!×wv³"’zv³#A©³#îL©³!þN©³"ŠP©³!‰Q©³"]V©³#õ ܳ!Ä+ܳ"q-ܳ#»ý´#˜´!ð ´"‘ ´!œ ´"”´_¤´md1_raid1xZ©´kworker/0:1md1_raid13°´€:€x€€ƒ0 -̲´€:€xmd1_raid1.)¹´€:€xmd1_raid10ݼ´md1_raid13þ´€:€x€€ƒ0 -÷À´€:€xmd1_raid1.ÉÄ´€:€xmd1_raid1'+É´€:€xmd1_raid11Ï´md1_raid1(tÔ´€:€xmd1_raid1'/ã´€:€xmd1_raid11Iç´md1_raid1(7ê´€:€xmd1_raid19÷´md1_raid1âSÝM ¾ÿ´md1_raid1kworker/0:1#5ãA´!/éA´"{ëA´#â¼t´#eÁt´!TÃt´"ÝÄt´!ÐÅt´"§Êt´#¼’§´!( §´"¢§´#TxÚ´#|Ú´!~Ú´"•Ú´!ˆ€Ú´"q…Ú´#kS µ!„X µ"Z µ#i1@µ#Ö6@µ!"9@µ"®:@µ!¤;@µ"ë?@µ#Î sµ!†sµ"$sµ#=쥵#Œñ¥µ!uó¥µ"øô¥µ!èõ¥µ"àú¥µ#'¾Øµ!£Êص"SÌØµ#œ ¶#'¦ ¶!d¨ ¶"&ª ¶!‚« ¶"c¯ ¶#Ù>¶!|…>¶"J‡>¶#!]q¶#eaq¶!ücq¶"eq¶!rfq¶"¸kq¶#ð2¤¶!1A¤¶"C¤¶Ò%¥¶md1_raid1xî*¥¶kworker/0:1md1_raid13ß3¥¶€B€x€ˆƒ0 -(6¥¶€B€xmd1_raid1.<¥¶€B€xmd1_raid10…?¥¶md1_raid13IB¥¶€B€x€ˆƒ0 -hD¥¶€B€xmd1_raid1.H¥¶€B€xmd1_raid1'M¥¶€B€xmd1_raid11xR¥¶md1_raid1(ûV¥¶€B€xmd1_raid1' e¥¶€B€xmd1_raid11àh¥¶md1_raid1(kk¥¶€B€xmd1_raid1Cx¥¶md1_raid18UW2M tƒ¥¶md1_raid1kworker/0:1¨¥¶md1_raid1xû¬¥¶kworker/0:1md1_raid13Mµ¥¶€ò~x€8‚0 -Š·¥¶€ò~xmd1_raid1.å¼¥¶€ò~xmd1_raid10À¥¶md1_raid13¬Â¥¶€ò~x€8‚0 -7Å¥¶€ò~xmd1_raid1.È¥¶€ò~xmd1_raid1'Í¥¶€ò~xmd1_raid11gÑ¥¶md1_raid1(©Ô¥¶€ò~xmd1_raid1'°ß¥¶€ò~xmd1_raid11I㥶md1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽn奶È7Y»È7¨€(n奶€ò~xmd1_raid1ó¥¶md1_raid1LM£M ›ú¥¶md1_raid1kworker/0:1|.¦¶md1_raid1xA3¦¶kworker/0:1md1_raid13K;¦¶€ú€x€@„0 -‘=¦¶€ú€xmd1_raid1.‰B¦¶€ú€xmd1_raid10ÝE¦¶md1_raid13ùG¦¶€ú€x€@„0 -J¦¶€ú€xmd1_raid1.?M¦¶€ú€xmd1_raid1'€Q¦¶€ú€xmd1_raid11šU¦¶md1_raid1(ÙX¦¶€ú€xmd1_raid1'ìc¦¶€ú€xmd1_raid11g¦¶md1_raid1(i¦¶€ú€xmd1_raid1>u¦¶md1_raid1óH–ÈM 3}¦¶md1_raid1kworker/0:1!L­¶ahci#™U­¶ [W­¶öX­¶uhci_hcd:usb3 ˆ]­¶í^­¶eth1 ©c­¶!Rf­¶&gi­¶€B€x*"ç|­¶3è²¶md1_raid1xCí²¶kworker/0:1md1_raid13ìò²¶€²€x€øƒ0 ->õ²¶€²€xmd1_raid1.¥ú²¶€²€xmd1_raid10Òý²¶md1_raid13³¶€²€x€øƒ0 -1³¶€²€xmd1_raid1.²³¶€²€xmd1_raid1'Þ ³¶€²€xmd1_raid11=³¶md1_raid1(޳¶€²€xmd1_raid1'E³¶€²€xmd1_raid11Ã!³¶md1_raid1( #³¶€²€xmd1_raid1÷/³¶md1_raid1oHM é7³¶md1_raid1kworker/0:1#‚×¶#´×¶!¿×¶"!×¶!"×¶"ü&×¶#aô ·!ú ·"®û ·#%Ò<·#ÏÖ<·!Ù<·"¡Ú<·!ŽÛ<·"à<·#“§o·!Ͷo·"¼¸o·#¢·#°¢·!2¢·"¾‘¢·!«’¢·"[—¢·#¯_Õ·!_mÕ·"oÕ·#qG¸#OK¸!SM¸"ÐN¸!ÃO¸"ãS¸#?;¸!v$;¸")&;¸#Åõm¸!Ôn¸"·n¸# Ñ ¸#Ká ¸!7ã ¸"öä ¸!øå ¸"«ê ¸‹‚¡¸md1_raid1xw‡¡¸kworker/0:1md1_raid13¸€Zx€ ‚0 -:‘¡¸€Zxmd1_raid1.j—¡¸€Zxmd1_raid10vš¡¸md1_raid13¡¸€Zx€ ‚0 -2Ÿ¡¸€Zxmd1_raid1.£¡¸€Zxmd1_raid1'¨¡¸€Zxmd1_raid11®¡¸md1_raid1(Q³¡¸€Zxmd1_raid1'vÀ¡¸€Zxmd1_raid11íÄ¡¸md1_raid1(ØÇ¡¸€Zxmd1_raid1ŒÔ¡¸md1_raid1-T2eM “ß¡¸md1_raid1kworker/0:1©ì¥¸ahci#ñõ¥¸ ¶÷¥¸3ù¥¸uhci_hcd:usb3 ¼ý¥¸ÿ¥¸eth1 ݦ¸!q¦¸&G ¦¸€Zx*¦¸kworker/2:1Qx"¾"¦¸á&¦¸kworker/0:1kworker/2:1QÞ,¦¸kworker/2:1QÑ`æL Ë3¦¸kworker/2:1Qkworker/0:1#¢¹Ó¸!~¿Ó¸"ëÁÓ¸#Ý’¹#E—¹!:™¹"T¹!Dž¹"_¤¹#wi9¹!0t9¹"Ýu9¹#òOl¹#½Tl¹!'Wl¹"ÎXl¹!ÐYl¹"Œ^l¹#z$Ÿ¹!1Ÿ¹" 2Ÿ¹#Ò¹#ï Ò¹!PÒ¹"Ò¹!üÒ¹"Ò¹#’Ûº!æº"Šéº#ÿÁ7º#ãÅ7º!ÛÇ7º"pÉ7º!`Ê7º"†Î7º#–jº!—¡jº"}£jº#þzº#)€º!!‚º"ûƒº!ý„º"Ɉº#Qк!!_к"Â`к#ß4»#»:»!©=»"t?»!s@»"`D»°þ»md1_raid1xŸ»kworker/0:1md1_raid139 »€ºx€ƒ0 -»€ºxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽñ»È7j4¼È7Ø€.ñ»€ºxmd1_raid10*»md1_raid13“»€ºx€ƒ0 -² »€ºxmd1_raid1.ù$»€ºxmd1_raid1'‰.»€ºxmd1_raid114»md1_raid1(ˆ8»€ºxmd1_raid1'yD»€ºxmd1_raid11íH»md1_raid1(•L»€ºxmd1_raid1ìX»md1_raid1”\ÆÁM Jd»md1_raid1kworker/0:1æ—»md1_raid1xŸœ»kworker/0:1md1_raid13£¤»€º€x€„0 -榻€º€xmd1_raid1.;¬»€º€xmd1_raid10E°»md1_raid13ú²»€º€x€„0 -µ»€º€xmd1_raid1.¬¸»€º€xmd1_raid1';½»€º€xmd1_raid11ÜÁ»md1_raid1(EÅ»€º€xmd1_raid1'^л€º€xmd1_raid11ßÓ»md1_raid1(ËÕ»€º€xmd1_raid1á»md1_raid1ZK M ëè»md1_raid1kworker/0:1#` 6»!Ò6»"ð6»ÔÝ6»md1_raid1xlâ6»kworker/0:1md1_raid13Zè6»€J€x€ƒ0 -—ê6»€J€xmd1_raid1.ûï6»€J€xmd1_raid10ìò6»md1_raid13Ûô6»€J€x€ƒ0 -ôö6»€J€xmd1_raid1.ðú6»€J€xmd1_raid1'ÿ6»€J€xmd1_raid11`7»md1_raid1(À7»€J€xmd1_raid1'‚7»€J€xmd1_raid117»md1_raid1(à7»€J€xmd1_raid1‹&7»md1_raid1§IÇV M  .7»md1_raid1kworker/0:1#ñh»#Bôh»!÷h»"Lùh»!Wúh»"ÿh»¿¯i»md1_raid1xÀ´i»kworker/0:1md1_raid13¿»i»€"x€h‚0 -ó½i»€"xmd1_raid1.)Äi»€"xmd1_raid10&Çi»md1_raid13/Êi»€"x€h‚0 -HÌi»€"xmd1_raid1.Ði»€"xmd1_raid1'êÔi»€"xmd1_raid11UÙi»md1_raid1(²Üi»€"xmd1_raid1'ðéi»€"xmd1_raid11¹íi»md1_raid1(“ïi»€"xmd1_raid1Ÿûi»md1_raid1ÙM ¤ M °j»md1_raid1kworker/0:1óm»ahci#"üm» Òým»Cÿm»uhci_hcd:usb3 Æn»ûn»eth1 ¥ n»!H n»&n»€"x* n»kworker/2:1Qx"A(n»m,n»kworker/0:1kworker/2:1Q 2n»kworker/2:1QöVæL 39n»kworker/2:1Qkworker/0:1#†Í›»!yÔ›»"­Ö›»#·§Î»# «Î»!å¬Î»"´°Î»!¡±Î»"öλ#Þ{¼!zˆ¼"HмN¼md1_raid1x²R¼kworker/0:1md1_raid13²[¼€b~x€¨0 -^¼€b~xmd1_raid1.ãc¼€b~xmd1_raid10Cg¼md1_raid13j¼€b~x€¨0 -l¼€b~xmd1_raid1.xp¼€b~xmd1_raid1'¬u¼€b~xmd1_raid11¼z¼md1_raid1(!¼€b~xmd1_raid1'=м€b~xmd1_raid11ºŽ¼md1_raid1(Û‘¼€b~xmd1_raid1˜ž¼md1_raid1‰R)÷ M p¨¼md1_raid1kworker/0:1#Üc4¼ÁüÁõ©‹à‡îØF²ÿbÊ™HŽƒh4¼È7 †.ÀÈ7À€#ƒh4¼!În4¼v4¼ltt-kconsumerd2ë{4¼ltt-kconsumerd2x"û€4¼!*‚4¼"‡4¼—Š4¼kworker/0:1ltt-kconsumerd2°³4¼Þ¸4¼öP¼4¼'¾4¼ö€@ŽK=¿¤¿4¼ÏÁ4¼HŽK=¿†Î4¼oÐ4¼Ä5¼y5¼-d5¼„0 ltt-kconsumerdù'5¼md1_raid1½05¼Ä25¼ð75¼*95¼Ýð‰C5¼Ý‡E5¼öÍG5¼K5¼°Ä@ ÿÿÿÿÿÿÿÿ½W5¼ltt-kconsumerd2gÝöéM d5¼ltt-kconsumerd2kworker/0:1#DAg¼!,Gg¼"ZIg¼?Þg¼md1_raid1x…ãg¼kworker/0:1md1_raid13Qêg¼€R€x€˜ƒ0 -íg¼€R€xmd1_raid1.óg¼€R€xmd1_raid10Æög¼md1_raid13¸øg¼€R€x€˜ƒ0 -ûg¼€R€xmd1_raid1.ÿg¼€R€xmd1_raid1'‰h¼€R€xmd1_raid11–h¼md1_raid1(Å h¼€R€xmd1_raid1'=h¼€R€xmd1_raid11Óh¼md1_raid1(¡!h¼€R€xmd1_raid1/h¼md1_raid1±Q¤w M F7h¼md1_raid1kworker/0:1# š¼#Ó š¼!N$š¼"‘&š¼!¢'š¼"c-š¼#÷øÌ¼! þ̼"Jͼ#Ôÿ¼#Ùÿ¼!SÛÿ¼"ôÜÿ¼!ðÝÿ¼"Çâÿ¼#$«2½!8¹2½"к2½*x9½ahci ·{9½=}9½uhci_hcd:usb3 Þ9½mƒ9½eth1#^‰9½ WŠ9½!—Œ9½"–9½#‡e½#çe½!“’e½"¾”e½!É•e½"še½#¯e˜½!lr˜½"t˜½#È?˽##L˽!N˽"P˽!ZQ˽"^V˽R̽md1_raid1xÔ̽kworker/0:1md1_raid13ï̽€"~x€h0 -n ̽€"~xmd1_raid1.Ñ&̽€"~xmd1_raid10"*̽md1_raid13‹-̽€"~x€h0 -×/̽€"~xmd1_raid1.*4̽€"~xmd1_raid1'@9̽€"~xmd1_raid11 ?̽md1_raid1(D̽€"~xmd1_raid1'›P̽€"~xmd1_raid11HU̽md1_raid1(X̽€"~xmd1_raid1že̽md1_raid1kXÐ M Gq̽md1_raid1kworker/0:1#“þ½!h*þ½"Y-þ½#5ù0¾#u1¾!v1¾¥ 1¾kworker/2:1Qx"Î1¾!ñ1¾"ä1¾1¾kworker/0:1kworker/2:1Qx(1¾kworker/2:1Q´ªíæL ¤21¾kworker/2:1Qkworker/0:1#ßc¾!mäc¾"bæc¾#:¼–¾#ñ¿–¾!L–¾"óÖ¾!õÄ–¾"_Ê–¾#®‘ɾ! É¾"þ¡É¾#elü¾#Ïwü¾!Tzü¾"þ{ü¾!}ü¾"Åü¾##Q/¿!BV/¿"ÝW/¿#w/b¿#£3b¿!û5b¿"€8b¿!‚9b¿"µ?b¿#Ÿ•¿!•¿"Õ¿#:éÇ¿#íÇ¿!µïÇ¿"qñÇ¿!sòÇ¿"KöÇ¿#-Èú¿!{Îú¿"Ðú¿#~™-À#9¦-À!©-À"˜ª-À!Ç«-À"ü¯-À‘g.Àmd1_raid1xm.Àkworker/0:1md1_raid13Ùv.À€x€H„0 -ay.À€xmd1_raid1.Ÿ€.À€xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ˜„.ÀÈ7µõ>ÀÈ7ø~€0˜„.Àmd1_raid13;Š.À€x€H„0 -BŒ.À€xmd1_raid1.#.À€xmd1_raid1'9•.À€xmd1_raid11jš.Àmd1_raid1(Ÿ.À€xmd1_raid1'`­.À€xmd1_raid11Ô±.Àmd1_raid1(_´.À€xmd1_raid1ÃÂ.Àmd1_raid1Ÿ]®- M ‰Ì.Àmd1_raid1kworker/0:1?à.Àmd1_raid1x%å.Àkworker/0:1md1_raid13/í.À€Âx€ƒ0 -Tï.À€Âxmd1_raid1.mô.À€Âxmd1_raid10š÷.Àmd1_raid13(ú.À€Âx€ƒ0 -)ü.À€Âxmd1_raid1.•ÿ.À€Âxmd1_raid1'$/À€Âxmd1_raid11Î/Àmd1_raid1(O /À€Âxmd1_raid1'9/À€Âxmd1_raid11 /Àmd1_raid1(3"/À€Âxmd1_raid1"-/Àmd1_raid1\O } M ¨4/Àmd1_raid1kworker/0:1è€/Àmd1_raid1x’…/Àkworker/0:1md1_raid13]/À€Ê€x€„0 -—/À€Ê€xmd1_raid1.)”/À€Ê€xmd1_raid10L˜/Àmd1_raid13ך/À€Ê€x€„0 -Øœ/À€Ê€xmd1_raid1.€ /À€Ê€xmd1_raid1'0¥/À€Ê€xmd1_raid112©/Àmd1_raid1(k¬/À€Ê€xmd1_raid1'Z·/À€Ê€xmd1_raid11½º/Àmd1_raid1(Á¼/À€Ê€xmd1_raid1¿Ç/Àmd1_raid1AIKÆ M ¾Î/Àmd1_raid1kworker/0:1=ø/Àmd1_raid1xÃü/Àkworker/0:1md1_raid13î0À€Êx€ƒ0 -=0À€Êxmd1_raid1., 0À€Êxmd1_raid10b0Àmd1_raid13~0À€Êx€ƒ0 -š0À€Êxmd1_raid1.å0À€Êxmd1_raid1'0À€Êxmd1_raid11R0Àmd1_raid1(‚"0À€Êxmd1_raid1'~,0À€Êxmd1_raid11ö/0Àmd1_raid1(Ó10À€Êxmd1_raid1,<0Àmd1_raid1F_ M D0Àmd1_raid1kworker/0:1ÎÌ=Àahci#ÇÖ=À €Ø=ÀÚ=Àuhci_hcd:usb3 §Þ=Àà=Àeth1 ×ä=À!ç=À&dë=À€Âx*!þ=Àltt-kconsumerd2€>Àltt-kconsumerd2x"Y>À‚>Àkworker/0:1ltt-kconsumerd2Â,>ÀI0>ÀÝ1?>ÀÝMA>ÀöàF>ÀAL>À°Ä@ ÿÿÿÿÿÿÿÿ<`>Àåb>À!ö­j>À„l>À!ö€@ŽK=¿Åm>À¨o>À!HŽK=¿ƒ|>ÀÆ~>À";»>À¾>À"0-áÆ>À ƒ0 ltt-kconsumerd«Ò>Àmd1_raid1ëÚ>ÀøÜ>À" ëà>ÀÚâ>ÀÝ" í>ÀÝ ï>À!öYñ>ÀÁüÁõ©‹à‡îØF²ÿbÊ™HŽtô>ÀÈ7U×'ÄÈ7À~€tô>À°Ä@ ÿÿÿÿÿÿÿÿÎ?À ?ÀöÕ?À”?Àö€@ŽK=¿Þ?À÷ ?ÀHŽK=¿e?ÀQ?ÀæE?ÀH?À -÷O?À„0 ltt-kconsumerdb?Àd?ÀÃh?Àltt-kconsumerd2ÝfÓPŸM 8r?Àltt-kconsumerd2kworker/0:1^PÀahci#þ#PÀ Ï%PÀ['PÀuhci_hcd:usb3 ç+PÀX-PÀeth1 ü1PÀ!É4PÀ&Y8PÀ€Ò€x*hPPÀkworker/2:1Qx"Q[PÀû_PÀkworker/0:1kworker/2:1Q£fPÀkworker/2:1QCMèL ,nPÀkworker/2:1Qkworker/0:1#J`À!w‡`À" Š`À#@S“À#Õ]“À!º`“À"Ëd“À!Êe“À"ÿl“À#‹1ÆÀ!>ÆÀ"½?ÆÀ#µ ùÀ#vùÀ!ÔùÀ"‡ùÀ!}ùÀ"#ùÀ#é+Á!tö+Á"Qø+Á#yÈ^Á#%Õ^Á!Î×^Á"¢Ù^Á!­Ú^Á"fß^Á#Ö£‘Á!ý°‘Á"°²‘Á#D€ÄÁ#ãŒÄÁ!üŽÄÁ"‘ÄÁ!‡‘ÄÁ"õ•ÄÁ#]÷Á!ôj÷Á"l÷Á#´A*Â#UF*Â!SH*Â"J*Â!óJ*Â"ÅN*Â#"]Â!ç%]Â"š']Â#µüÂ#<Â!IÂ"ÛÂ!ÎÂ"ü Â#IÐÂÂ!áÛÂÂ"»ÝÂÂ#­õÂ#¼·õÂ!±¹õÂ"1»õÂ!*¼õÂ"hÀõÂ#܉(Ã!%›(Ã"½œ(Ã#Öf[Ã#Òs[Ã!åu[Ã"§w[Ã!¯x[Ã"}[Ã#-EŽÃ!ÇQŽÃ"XTŽÃ'üŽÃmd1_raid1x³Ãkworker/0:1md1_raid13=Àb€x€¨ƒ0 -ΠÀb€xmd1_raid1.øÀb€xmd1_raid10¾Ãmd1_raid13àÀb€x€¨ƒ0 -Àb€xmd1_raid1.•Àb€xmd1_raid1'T Àb€xmd1_raid11O%Ãmd1_raid1()Àb€xmd1_raid1'¿6Àb€xmd1_raid11L:Ãmd1_raid1(<Àb€xmd1_raid1HÃmd1_raid1­L:bM ™PÃmd1_raid1kworker/0:1#0*ÁÃ#Ï-ÁÃ!%2ÁÃ"P4ÁÃ!^5ÁÃ"t:ÁÃ#'ôÃ!¦ ôÃ"AôÃÛÔôÃmd1_raid1x²ÙôÃkworker/0:1md1_raid13ßâôÀj~x€°0 -=åôÀj~xmd1_raid1.pëôÀj~xmd1_raid10ÓîôÃmd1_raid13”ñôÀj~x€°0 -­óôÀj~xmd1_raid1.ü÷ôÀj~xmd1_raid1'ýôÀj~xmd1_raid11 õÃmd1_raid1(þõÀj~xmd1_raid1'õÀj~xmd1_raid11âõÃmd1_raid1(ÜõÀj~xmd1_raid1*-õÃmd1_raid1cZ¼M \7õÃmd1_raid1kworker/0:1# Ü&Ä#Ãé&Ä!í&Ä"·ï&Ä!Èð&Ä"rõ&Ä’'Ämd1_raid1x—'Äkworker/0:1md1_raid13ÇŸ'Ä€Òx€ƒ0 -¢'Ä€Òxmd1_raid1. ¨'Ä€Òxmd1_raid10R«'Ämd1_raid13@®'Ä€Òx€ƒ0 -S°'Ä€Òxmd1_raid1.ˆ´'Ä€Òxmd1_raid1'¹'Ä€Òxmd1_raid11E¾'Ämd1_raid1(äÁ'Ä€Òxmd1_raid1'-Ð'Ä€Òxmd1_raid11Ó'Ämd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÕÕ'ÄÈ7T'£ÉÈ7ˆ~€(ÕÕ'Ä€Òxmd1_raid1£æ'Ämd1_raid1ëVˆM ‰ñ'Ämd1_raid1kworker/0:1#ÀYÄ!ÔÅYÄ9ÍYÄltt-kconsumerd2ÇÒYÄltt-kconsumerd2x"Î×YÄ=ÛYÄkworker/0:1ltt-kconsumerd2òZÄç ZÄö– ZÄaZÄö€@ŽK=¿ÆZĵZÄHŽK=¿´ZĬ ZÄkXZÄ)[ZÄ0-rcZÄ „0 ltt-kconsumerd—pZÄmd1_raid1yZÄ {ZÄ €ZÄÝZÄÝ NŒZÄÝdŽZÄöªZÄì“ZİÄ@ ÿÿÿÿÿÿÿÿÏ›ZÄ0žZÄ!ös²ZÄ/´ZÄ!ö€@ŽK=¿µZÄq·ZÄ!HŽK=¿;ZÄ¡ÀZÄ"éZÄ—ëZÄ"P-ìóZ݃0 ltt-kconsumerd*[Äp[Ä"@ [ÄC [ÄÝ"@¯[ÄÝ’[Ä!öÕ[Ä[İÄ@ ÿÿÿÿÿÿÿÿ)[Ältt-kconsumerd2;W¨ M h2[Ältt-kconsumerd2kworker/0:1€D`Äahci#ÁN`Ä tP`ÄÙQ`Äuhci_hcd:usb3 nV`ÄÇW`Äeth1 q\`Ä!>_`Ä&Ic`Ä€Ú€x*"ét`Ä#ŸŒÄ#梌Ä!O¦ŒÄ"¶¨ŒÄ!¦©ŒÄ"(¯ŒÄ#òy¿Ä!¤¿Ä"N¿Ä#¦OòÄ#ZòÄ!|\òÄ"^òÄ!_òÄ"dòÄ#ù,%Å!T8%Å"þ9%Å#XÅ#¬XÅ!FXÅ"XÅ!òXÅ"*XÅ#6çŠÅ!õòŠÅ"¥ôŠÅ#l½Å# ̽Å!¬Î½Å"¡Ð½Å!‘ѽÅ"ÛÕ½Å#„ðÅ!«ðÅ"±¬ðÅ#s|#Æ#ü†#Æ!‰#Æ""‹#Æ!Œ#Æ"M#Æ#$XVÆ!ÜaVÆ"dVÆ#6‰Æ#ËA‰Æ! D‰Æ"ÜE‰Æ!ÉF‰Æ"¤J‰Æ#X¼Æ!?¼Æ"鼯#¬øîÆ#ÒüîÆ!ÊþîÆ"MïÆ!=ïÆ"WïÆ#Ô!Ç!:Ù!Ç"êÚ!Ç#:§TÇ#I³TÇ!¡µTÇ"*·TÇ!¸TÇ"¼TÇ#ý„‡Ç!d‡Ç"q’‡Çï[’Çahci#if’Ç Ih’ÇÉi’Çuhci_hcd:usb3 Fn’Ç„o’Çeth1 Ft’Ç!Dv’Ç&5y’Ç€r€x*ÍŒ’Çkworker/2:1Qx"ë•’Çnš’Çkworker/0:1kworker/2:1Qà ’Çkworker/2:1QÛé¢éL {¨’Çkworker/2:1Qkworker/0:1#™cºÇ#›nºÇ!˜qºÇ" tºÇ!uºÇ"®yºÇ#é@íÇ!bLíÇ"¦PíÇ#‰ È#@% È!´) È"[+ È!E, È"}0 È#ÏSÈ!gSÈ"#SÈ#Ô…È#†à…È!áâ…È"Ää…È!Æå…È"Ýé…È#m¹¸È!ú¿¸È"¶Á¸È#ýëÈ#ƒ›ëÈ!{ëÈ"CŸëÈ!E ëÈ"&¤ëÈ#¾jÉ!¼uÉ">xÉ#úHQÉ#·SQÉ!HVQÉ" XQÉ!YQÉ"V]QÉ#—$„É!b2„É"Q4„É#£Éapache2Q xŸ£Ékworker/0:1apache2Q ʣɡ£É=ÿÿÿÿÿÿÿÿ¬—„ÿ(À=äà Ÿ£Éapache2Ô"£É=ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÈ%£ÉÈ7Ë€PÍÈ7`€È%£Éà—„ÿÜ/£Éapache2Q ‚/¼éL ";£Éapache2Q kworker/0:1# ·É#%·É!Ú·ÉH·Éltt-kconsumerd2*·Éltt-kconsumerd2x"#·É!K$·É"R)·Éè,·Ékworker/0:1ltt-kconsumerd2#X·ÉØ]·Éö®`·Éb·Éö€@ŽK=¿d·É*f·ÉHŽK=¿êr·É÷t·É·«·ÉW®·É@-ú¶·É(„0 ltt-kconsumerdÀÉ·ÉâË·É0#зÉ-Ò·ÉÝ0›Ü·ÉÝ·Þ·Éöá·ÉÕä·É°Ä@ ÿÿÿÿÿÿÿÿñ·Éltt-kconsumerd2ûÓ |¡M :û·Éltt-kconsumerd2kworker/0:1#BàéÉ!2îéÉ"™ðéÉúˆêÉmd1_raid1xûêÉkworker/0:1md1_raid13|”êÉ€úx€@…0 -+—êÉ€úxmd1_raid1.ÇêÉ€úxmd1_raid10‡¡êÉmd1_raid13¾£êÉ€úx€@…0 -×¥êÉ€úxmd1_raid1.Ö©êÉ€úxmd1_raid1'ƒ®êÉ€úxmd1_raid11Ÿ³êÉmd1_raid1(¹·êÉ€úxmd1_raid1'þÆêÉ€úxmd1_raid11dÊêÉmd1_raid1(ÌêÉ€úxmd1_raid1:ÙêÉmd1_raid1Q¯ÏM dáêÉmd1_raid1kworker/0:1#MÆÊ#æÉÊ!IÍÊ"¶ÏÊ!ÊÐÊ"CÖÊ#ø OÊ!©OÊ"÷ªOÊ#Hv‚Ê#È€‚Ê!’ƒ‚Ê"Z…‚Ê!n†‚Ê"”Š‚Ê#ÕTµÊ!ñ`µÊ"¡bµÊ#/èÊ#å6èÊ!ˆ;èÊ"=èÊ!û=èÊ"ëAèÊ#¦ Ë!ÆË" Ë#ùòMË#R÷MË!hùMË" ûMË!üMË"•ÿMË#¿Î€Ë!Ó€Ë"+Õ€Ë#‡¡³Ë!ä°³Ë"…²³Ë#­‹æË#…æË!\‘æË"3“æË!>”æË"˜æË#a[Ì!NiÌ"kÌ# :LÌ#íELÌ!ØGLÌ"[ILÌ!QJLÌ"LOLÌ#õÌ!£!Ì"€#Ì#Šó±Ì!×þ±Ì"u²Ì#õÖäÌ#‡ÛäÌ!”ÝäÌ"žßäÌ!‘àäÌ"óääÌ#U«Í!ߺÍ"¼¼Í#@ˆJÍ#"•JÍ!—JÍ" ™JÍ!šJÍ"žJÍîcKÍmd1_raid1x iKÍkworker/0:1md1_raid13ÂqKÍ€r~x€¸0 -ùsKÍ€r~xmd1_raid1.Ž{KÍ€r~xmd1_raid10¦~KÍmd1_raid13LKÍ€r~x€¸0 -•ƒKÍ€r~xmd1_raid1.Ó‡KÍ€r~xmd1_raid1'æŒKÍ€r~xmd1_raid11.“KÍmd1_raid1(#˜KÍ€r~xmd1_raid1'Ù¥KÍ€r~xmd1_raid11qªKÍmd1_raid1(e­KÍ€r~xmd1_raid1¬ºKÍmd1_raid1éX˜(M žÅKÍmd1_raid1kworker/0:1ÂüOÍahci#PÍ ú PÍ}PÍuhci_hcd:usb3 P͉PÍeth1 NPÍ!ëPÍ& PÍ€r~x*‡1PÍkworker/2:1Qx&"*Ï€jxmd1_raid11,0Ïmd1_raid1(T5Ï€jxmd1_raid1'sCÏ€jxmd1_raid11¨GÏmd1_raid1(ÞJÏ€jxmd1_raid1CXÏmd1_raid1šVkíM *bÏmd1_raid1kworker/0:1#X+GÏ#5GÏ!8GÏ"j:GÏ!x;GÏ"ø?GÏ#‘zÏ!qzÏ"zÏ#;â¬Ï#‡î¬Ï!¸ð¬Ï"bò¬Ï!Ló¬Ï"º÷¬Ï#õÆßÏ!<ÎßÏ"ïÏßÏ#tÐ#`©Ð!Ö«Ð"_­Ð!U®Ð"¼²ÐfkÐmd1_raid1xypÐkworker/0:1md1_raid13²yЀÚx€ ƒ0 -ã{ЀÚxmd1_raid1.¿ЀÚxmd1_raid10ã„Ðmd1_raid13’‡Ð€Úx€ ƒ0 -ՉЀÚxmd1_raid1.ÚЀÚxmd1_raid1'Ò’ЀÚxmd1_raid11`˜Ðmd1_raid1(éœЀÚxmd1_raid1'!ªÐ€Úxmd1_raid11¼®Ðmd1_raid1(ž±Ð€Úxmd1_raid1j¾Ðmd1_raid1¤UCM  ÉÐmd1_raid1kworker/0:1#êEÐ!ˆEÐ"ºŠEÐéESÐuhci_hcd:usb4 ØJSÐ4LSÐeth0ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ`SSÐÈ7¯æyÐÈ7~€#`SSÐ ˜WSÐ!ÆYSÐd|SÐsshdf(›SÐsshdf(x"÷‘SÐD–SÐkworker/0:1sshdf(MºSпSÐ𢴀ÿp£´€ÿ‡ÂSÐ|ÄSÐp£´€ÿMÆSÐKÍSÐàc´€ÿ@?ÖSÐ0¿òSÐ@ù¨ª2 ù¨ª2TÐ$TÐ𢴀ÿp£´€ÿøTÐÏTÐp£´€ÿdTÐ TÐ Eªª2>TÐsshdf(y•á‰þL ÌTÐkworker/2:2 xÅTÐsshdf(xV"TÐ$TÐ Tࢴ€ÿ@£´€ÿ?*TÐ0TÐ@ù¨ª2 ù¨ª2:TÐsshdf(¸#™­þL >TÐsshdf(kworker/2:2 DRTÐkworker/2:2 ®MëL ¡[TÐkworker/2:2 kworker/0:1sðUÐsshdf(xgöUÐkworker/0:1sshdf(îVЈ VÐ𢴀ÿp£´€ÿ† VÐNVÐp£´€ÿÔVÐÂVÐàb´€ÿ@ VÐb4VÐ@ù¨ª2 ù¨ª2Ð;VÐõ=VÐ𢴀ÿp£´€ÿ·?VÐyAVÐp£´€ÿçBVÐ#FVЋ¨ª2@ hVÐ@‚mVÐ@ù¨ª2 ù¨ª2ówVÐsshdf(Á‰Z7ÿL ƒVÐsshdf(kworker/0:1#axÐ#ÝdxÐ! hxÐéoxÐltt-kconsumerd2wuxÐltt-kconsumerd2x"zxÐ!|xÐ"˜xÐy…xÐkworker/0:1ltt-kconsumerd2±xÐÒ¶xÐö¢¹xБ»xÐö€@ŽK=¿>½xÐZ¿xÐHŽK=¿°ÌxÐÆÎxÐàyЉyÐ`-syÐ8„0 ltt-kconsumerd»yÐmd1_raid1¬'yÐì)yÐP~.yÐ…0yÐÝPB:yÐÝyÐPAyÐöMMyÐOyÐö€@ŽK=¿XQyÐ;SyÐHŽK=¿úZyÐ×\yÐЖyÐj™yР-´ yÐX„0 ltt-kconsumerdůyÐÕ±yÐú¶yÐ˸yÐÝ|ÂyÐÝÄyÐö&ÇyЛÊyаÄ@ ÿÿÿÿÿÿÿÿuÒyÐÄÔyÐ!öÚâyÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽDåyÐÈ7³¦qÔÈ7ø€DåyÐ!ö€@ŽK=¿éyÐÿêyÐ!HŽK=¿"õyÐ÷yÐ"7"zЭ$zÐ"-¯+zÐP…0 ltt-kconsumerd^:zÐhÔ!GÈ>Ô"îÉ>Ô#Í—qÔ#cŸqÔ!“¢qÔ""¤qÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽx¥qÔÈ7Í#ØÈ7ø€!x¥qÔ"R­qÔÉ…rÔmd1_raid1x‹rÔkworker/0:1md1_raid136”rÔ€ƒx€H†0 -µ–rÔ€ƒxmd1_raid1.“rÔ€ƒxmd1_raid10õ¡rÔmd1_raid13¥rÔ€ƒx€H†0 -_§rÔ€ƒxmd1_raid1.Ä«rÔ€ƒxmd1_raid1'ȰrÔ€ƒxmd1_raid11Ú¶rÔmd1_raid1(ó»rÔ€ƒxmd1_raid1'–ÊrÔ€ƒxmd1_raid11(ÏrÔmd1_raid1(XÒrÔ€ƒxmd1_raid1JàrÔmd1_raid1ß\”YM }ìrÔmd1_raid1kworker/0:1 sÔmd1_raid1x\ sÔkworker/0:1md1_raid13sÔ€2~x€x0 -ZsÔ€2~xmd1_raid1.sÔ€2~xmd1_raid10T sÔmd1_raid13!#sÔ€2~x€x0 -p%sÔ€2~xmd1_raid1.)sÔ€2~xmd1_raid1'°-sÔ€2~xmd1_raid11*2sÔmd1_raid1({5sÔ€2~xmd1_raid1'*AsÔ€2~xmd1_raid11™DsÔmd1_raid1(ÄFsÔ€2~xmd1_raid1åRsÔmd1_raid1sM§M ÈZsÔmd1_raid1kworker/0:1„|Ôahci#Ç|Ô ˜|Ô‘|Ôuhci_hcd:usb3 ›•|Ô—|Ôeth1 Ë›|Ô!qž|Ô&¢|Ô€2~x*γ|Ôkworker/2:2 x"û¼|ÔHÁ|Ôkworker/0:1kworker/2:2 È|Ôkworker/2:2 —¢íL UÏ|Ôkworker/2:2 kworker/0:1#_t¤Ô!0€¤Ô"ƒ¤Ô#ÒO×Ô#q`×Ô!ºb×Ô"òf×Ô!åg×Ô"0m×ÔvØÔmd1_raid1xPØÔkworker/0:1md1_raid13qØÔ€‚x€`…0 -ØÔ€‚xmd1_raid1.l!ØÔ€‚xmd1_raid10½$ØÔmd1_raid13g&ØÔ€‚x€`…0 -°(ØÔ€‚xmd1_raid1.ú,ØÔ€‚xmd1_raid1'1ØÔ€‚xmd1_raid11x6ØÔmd1_raid1(+;ØÔ€‚xmd1_raid1'°FØÔ€‚xmd1_raid11ÜJØÔmd1_raid1(”MØÔ€‚xmd1_raid11YØÔmd1_raid1uK|òM YaØÔmd1_raid1kworker/0:1#_7 Õ!Â= Õ"@ Õ#\=Õ#â=Õ!+=Õ"®=Õ!ž=Õ"“ =Õ# çoÕ!iòoÕ"CôoÕ#±Ì¢Õ#[Ñ¢Õ!kÓ¢Õ"Õ¢Õ!íÕ¢Õ"Û¢Õ# ÕÕ!¬ÕÕ"®ÕÕ#¯}Ö#î‡Ö!OŠÖ"tŒÖ!sÖ"¨‘Ö„V Ömd1_raid1x”[ Ökworker/0:1md1_raid13d Ö€úƒx€@‡0 -_f Ö€úƒxmd1_raid1.m Ö€úƒxmd1_raid10"p Ömd1_raid13ûr Ö€úƒx€@‡0 -’u Ö€úƒxmd1_raid1.dy Ö€úƒxmd1_raid1'¿~ Ö€úƒxmd1_raid11/„ Ömd1_raid1(Ùˆ Ö€úƒxmd1_raid1'³– Ö€úƒxmd1_raid11-› Ömd1_raid1(ñ Ö€úƒxmd1_raid1O¬ Ömd1_raid1ØWTJM · Ömd1_raid1kworker/0:1#$d;Ö! i;Ö"Íl;Ö#ñ@nÖ#~DnÖ!âFnÖ"ãHnÖ!ÖInÖ"vOnÖ#C¡Ö!!¡Ö"·"¡Ö#BðÓÖ#ÜüÓÖ!²ÿÓÖ",ÔÖ!ÔÖ"eÔÖ#6Î×!,Ø×"Ú×#ã°9×#µ9×!|·9×";¹9×!=º9×"±¾9×#3l×!f“l×"C•l×#›cŸ×#InŸ×!xrŸ×""tŸ×!uŸ×"³yŸ×#ÉLÒ×!ÇQÒ×"kSÒ×ÁüÁõ©‹à‡îØF²ÿbÊ™HŽlØÈ7ÆC–ÝÈ7Ð~€#lØ#Ë(Ø!Ø*Ø%2Øltt-kconsumerd2ã7Øltt-kconsumerd2x"‡<Ø!³=Ø"9BرEØkworker/0:1ltt-kconsumerd2ŒpØAvØö§yØl{Øö€@ŽK=¿Å|Øê~ØHŽK=¿b‹Ø?Ø±ÌØuÏØ-îרP†0 ltt-kconsumerdŽãØmd1_raid1|ìØwîØ€NóØ+õØÝ€]ÿØÝRØöƒØËذÄ@ ÿÿÿÿÿÿÿÿ=Øltt-kconsumerd2ËÜôn¥M +Øltt-kconsumerd2kworker/0:1#08Ø!Ò 8Ø"T8ؘÅBØahci#ÑBØ ÙBؘÚBØuhci_hcd:usb3 BßBØ›àBØeth1 NåBØ!£çBØ&ÏëBØ€âx*TCØkworker/2:2 x&Æ CØ€âx*"F)CØ¥-CØkworker/0:1kworker/2:2 ç3CØkworker/2:2 ^5R‰îL ý5CØkworker/2:1Qx9CØkworker/2:2 kworker/2:1Q]BCØkworker/2:1Q0$ZîL  JCØkworker/2:1Qkworker/0:1#óßjØ#¾äjØ!…çjØ":êjØ!EëjØ"`ñjØ#§´Ø!W½Ø"ŽÂØ#û’ÐØ#ÐØ!hŸÐØ"0¡ÐØ!¢ÐØ"Ž¦ÐØ#xmÙ!h{Ù"$}Ù#dJ6Ù#T6Ù!V6Ù"¨W6Ù!˜X6Ù"¦\6Ù# 'iÙ!¢2iÙ":4iÙ#çœÙ#¢œÙ!|œÙ";œÙ!+œÙ"‡œÙ#íáÎÙ!5îÎÙ"ÍïÎÙ#‚½Ú#ËÚ!ïÌÚ"lÎÚ!YÏÚ"|ÓÚ#§4Ú!ñ«4Ú"Ñ­4Ú#%wgÚ#Æ‚gÚ!*…gÚ"³†gÚ!£‡gÚ"¢‹gÚ#ÿSšÚ!DcšÚ"ôdšÚ#Õ0ÍÚ#9ÍÚ!_;ÍÚ"Q=ÍÚ!V>ÍÚ"%BÍÚ#Û!öÛ"—Û#Gô2Û#¯ø2Û!›ú2Û"xü2Û!hý2Û"…3Û#ïÎeÛ!ÖeÛ"¶×eÛ#¹¬˜Û#籘Û!Ó³˜Û"Pµ˜Û!:¶˜Û"º˜Û#™‚ËÛ![ŽËÛ"JËÛ#Á]þÛ!ˆjþÛ"€lþÛ#g;1Ü#dG1Ü!ûI1Ü"®K1Ü!›L1Ü"ŠQ1Ü#tdÜ!2'dÜ"\*dÜ#áû–Ü#(—Ü!S—Ü"—Ü!—Ü" —Ü#ëÚÉÜ!âàÉÜ"âÉÜgˆÊÜmd1_raid1xðŒÊÜkworker/0:1md1_raid13S“ÊÜ€*‚x€p…0 -ö•ÊÜ€*‚xmd1_raid1.ÔœÊÜ€*‚xmd1_raid10| ÊÜmd1_raid13¤¢ÊÜ€*‚x€p…0 -½¤ÊÜ€*‚xmd1_raid1.Ô¨ÊÜ€*‚xmd1_raid1'‡­ÊÜ€*‚xmd1_raid11!³ÊÜmd1_raid1(U¸ÊÜ€*‚xmd1_raid1'íÅÊÜ€*‚xmd1_raid11ÑÉÊÜmd1_raid1(¤ÌÊÜ€*‚xmd1_raid1ÜÙÊÜmd1_raid1&R©¿M âÊÜmd1_raid1kworker/0:1#ƶüÜ#øºüÜ!¾üÜ"­ÀüÜ!¾ÁüÜ"2ÆüÜ#”/Ý! ™/Ý"z›/Ý#'ibÝ#?pbÝ!¦ubÝ")wbÝ!RxbÝ"º|bÝ#„D•Ý!äP•Ý"ßR•Ý%–Ýmd1_raid1xM#–Ýkworker/0:1md1_raid13¼,–Ý€z„x€À‡0 -/–Ý€z„xmd1_raid1.5–Ý€z„xmd1_raid10k8–Ýmd1_raid13w;–Ý€z„x€À‡0 -Æ=–Ý€z„xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽUB–ÝÈ7C?‘àÈ7Ø€.UB–Ý€z„xmd1_raid1' J–Ý€z„xmd1_raid11O–Ýmd1_raid1(@T–Ý€z„xmd1_raid1'5b–Ý€z„xmd1_raid11®f–Ýmd1_raid1(ui–Ý€z„xmd1_raid1^w–Ýmd1_raid1ÒZ{M ˜‚–Ýmd1_raid1kworker/0:1#È,ÈÝ# 1ÈÝ!Ü3Èݺ:ÈÝltt-kconsumerd2Ý>ÈÝltt-kconsumerd2x"´CÈÝ!ãDÈÝ"“IÈÝMÈÝkworker/0:1ltt-kconsumerd2TvÈÝv{ÈÝö@~ÈÝ€ÈÝö€@ŽK=¿jÈÝVƒÈÝHŽK=¿ÈÝ’ÈÝXÌÈÝÏÈÝ -Œ×ÈÝX†0 ltt-kconsumerdÚãÈÝmd1_raid1•ìÈÝ“îÈÝdóÈÝVõÈÝÝ ÿÈÝÝÉÝö?ÉÝQÉݰÄ@ ÿÿÿÿÿÿÿÿ–ÉÝltt-kconsumerd21Ô%C¦M fÉÝltt-kconsumerd2kworker/0:1#Ë ûÝ!ûÝ"eûÝ#ðÝ-Þ#ë-Þ!í-Þ"¯î-Þ!ºï-Þ"-õ-Þ#Ï·`Þ!îÆ`Þ"ªÈ`Þ#Hœ“Þ#§ “Þ!•£“Þ"!¥“Þ!#¦“Þ"¯ª“Þ#–qÆÞ!ªÆÞ"½ÆÞ#åWùÞ#ä[ùÞ!`^ùÞ"`ùÞ! aùÞ" fùÞ#x,,ß!8,ß"Ã9,ß#í_ß#N_ß!w_ß"*_ß!#_ß"d_ßiª_ßmd1_raid1xa¯_ßkworker/0:1md1_raid13”µ_߀2‚x€x…0 -é·_߀2‚xmd1_raid1.¾_߀2‚xmd1_raid10sÁ_ßmd1_raid13>Ã_߀2‚x€x…0 -QÅ_߀2‚xmd1_raid1. É_߀2‚xmd1_raid1'ÇÍ_߀2‚xmd1_raid11XÓ_ßmd1_raid1(†Ø_߀2‚xmd1_raid1' æ_߀2‚xmd1_raid11ûé_ßmd1_raid1(ãì_߀2‚xmd1_raid1qø_ßmd1_raid1 OÒ‹ M U`ßmd1_raid1kworker/0:1=&`ßmd1_raid1x+`ßkworker/0:1md1_raid13~0`߀„x€H‡0 -Ç2`߀„xmd1_raid1.×7`߀„xmd1_raid10ã:`ßmd1_raid13Z<`߀„x€H‡0 -y>`߀„xmd1_raid1.6B`߀„xmd1_raid1'VF`߀„xmd1_raid11K`ßmd1_raid1(fN`߀„xmd1_raid1'^Y`߀„xmd1_raid11ñ\`ßmd1_raid1(ò^`߀„xmd1_raid1]i`ßmd1_raid1§CyÏ M Rq`ßmd1_raid1kworker/0:1ñVeßahci#Ÿ`eß jbeßdeßuhci_hcd:usb3 —heßêießeth1 ‘neß!Rqeß&te߀2‚x*"ëƒeß#ñ‘ß!Š÷‘ß"Çù‘ß#ZÂÄß!ŒÍÄß"KÏÄß#¦÷ß#°«÷ß!±­÷ß"y¯÷ß!{°÷ß"»µ÷ß#Ž‚*à!èˆ*à"•Š*à# Y]à#Œa]à!xf]à".h]à!!i]à"Ëm]à#5à!zBà"ÒDàH‘àmd1_raid1xÙ!‘àkworker/0:1md1_raid13i+‘à€x€`„0 -Ù-‘à€xmd1_raid1.-4‘à€xmd1_raid10Ã7‘àmd1_raid13ó:‘à€x€`„0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽo=‘àÈ7zu\áÈ7¸€-o=‘à€xmd1_raid1.’D‘à€xmd1_raid1'äI‘à€xmd1_raid11®O‘àmd1_raid1(ÍT‘à€xmd1_raid1' b‘à€xmd1_raid11kg‘àmd1_raid1()j‘à€xmd1_raid1w‘àmd1_raid1{]ô,!M ö‡‘àmd1_raid1kworker/0:1C³‘àmd1_raid1x8¸‘àkworker/0:1md1_raid1õÁ‘àmd1_raid1ym>!M ¤Í‘àmd1_raid1kworker/0:1^’àmd1_raid1x·b’àkworker/0:1md1_raid13åj’à€êx€0ƒ0 -m’à€êxmd1_raid1.kr’à€êxmd1_raid10Ôu’àmd1_raid13nx’à€êx€0ƒ0 -Šz’à€êxmd1_raid1.ù}’à€êxmd1_raid1'©‚’à€êxmd1_raid11D‡’àmd1_raid1(ÔŠ’à€êxmd1_raid1'Ÿš’à€êxmd1_raid11¤ž’àmd1_raid1(V¡’à€êxmd1_raid1­’àmd1_raid1íQZ!M *µ’àmd1_raid1kworker/0:1q “àmd1_raid1x0“àkworker/0:1md1_raid13y“à€ƒx€`†0 -Ë“à€ƒxmd1_raid1.ù“à€ƒxmd1_raid10#“àmd1_raid13Î%“à€ƒx€`†0 -ç'“à€ƒxmd1_raid1.#+“à€ƒxmd1_raid1'å/“à€ƒxmd1_raid114“àmd1_raid1(,7“à€ƒxmd1_raid1'ÏB“à€ƒxmd1_raid11,F“àmd1_raid1(H“à€ƒxmd1_raid1CS“àmd1_raid1KK¥Û!M ¨Z“àmd1_raid1kworker/0:1´“àmd1_raid1xj•“àkworker/0:1md1_raid13M“à€"x€h„0 -“Ÿ“à€"xmd1_raid1.p¤“à€"xmd1_raid10 §“àmd1_raid13¿©“à€"x€h„0 -Ø«“à€"xmd1_raid1. ¯“à€"xmd1_raid1'X³“à€"xmd1_raid11~·“àmd1_raid1(º“à€"xmd1_raid1'ÑÄ“à€"xmd1_raid11:È“àmd1_raid1(Ê“à€"xmd1_raid1uÔ“àmd1_raid1ùEž!"M  Ü“àmd1_raid1kworker/0:1å3 àahci#>> à ÷? àŽA àuhci_hcd:usb3 >F à—G àeth1 JL à!íN à&R à€êx*"Cb à#5Ãà#ÀÃà!Œ#Ãà"¥%Ãà!È&Ãà"Ê-Ãà†°Ãàmd1_raid1xеÃàkworker/0:1md1_raid13ûÃà€:‚x€€…0 -¾Ãà€:‚xmd1_raid1.jÃÃà€:‚xmd1_raid10pÆÃàmd1_raid13kÈÃà€:‚x€€…0 -‡ÊÃà€:‚xmd1_raid1.;ÎÃà€:‚xmd1_raid1'ÒÃà€:‚xmd1_raid11×Ãàmd1_raid1(’ÚÃà€:‚xmd1_raid1'"çÃà€:‚xmd1_raid11ŽêÃàmd1_raid1(|ìÃà€:‚xmd1_raid1ùÃàmd1_raid1kI k"M ­Äàmd1_raid1kworker/0:1#ðõà!=þõà"töà#PÕ(á#yÙ(á!zÛ(á"Ý(á!ðÝ(á"ýâ(á#Z¨[á!s·[á"¹[á-e\ámd1_raid1xOj\ákworker/0:1md1_raid13lq\á€ú„x€@ˆ0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽt\áÈ7M­ìæÈ7p€-t\á€ú„xmd1_raid1.p|\á€ú„xmd1_raid10¦\ámd1_raid13¦‚\á€ú„x€@ˆ0 -„\á€ú„xmd1_raid1.©ˆ\á€ú„xmd1_raid1'ì\á€ú„xmd1_raid11˜“\ámd1_raid1(º˜\á€ú„xmd1_raid1'Þ§\á€ú„xmd1_raid116­\ámd1_raid1(B°\á€ú„xmd1_raid1¼\ámd1_raid1æXïÃ"M Æ\ámd1_raid1kworker/0:1Ê]ámd1_raid1xƒ]ákworker/0:1md1_raid13¸]á€"ƒx€h†0 -]á€"ƒxmd1_raid1.#]á€"ƒxmd1_raid10&]ámd1_raid13D)]á€"ƒx€h†0 -]+]á€"ƒxmd1_raid1.º.]á€"ƒxmd1_raid1'C3]á€"ƒxmd1_raid11‡7]ámd1_raid1(Ò:]á€"ƒxmd1_raid1'KF]á€"ƒxmd1_raid11´I]ámd1_raid1(”K]á€"ƒxmd1_raid1éV]ámd1_raid1I #M  ^]ámd1_raid1kworker/0:1vfáahci#Çfá }fáè‚fáuhci_hcd:usb3 ‰‡fá܈fáeth1 žfá!Dfá&”fá€"ƒx*\¥fákworker/2:1Qx",®fá^²fákworker/0:1kworker/2:1Q=¸fákworker/2:1QÈí;ïL Ÿ¿fákworker/2:1Qkworker/0:1#Þ‡Žá#–‘Žá!„”Žá"<—Žá!5˜Žá"ÓœŽá#ïiÁá!ÙpÁá"ÕtÁá#Í>ôá#þJôá!DMôá"ÐNôá!½Oôá"‘Tôá#ñ#'â!¥*'â"L,'â#¼ÿYâ#‡Zâ!pZâ"öZâ!æZâ" Zâ#?ÕŒâ!§àŒâ"âŒâ#¯²¿â!Y¾¿â"KÀ¿â# òâ#¦˜òâ!ažòâ"ÛŸòâ!Ë òâ")¦òâ#lv%ã!Åz%ã"x|%ã#­HXã!®WXã"µYXã#E(‹ã#ö2‹ã!º5‹ã":7‹ã!'8‹ã"ž<‹ã#O¾ã!a¾ã"í¾ã#2ßðã!ìðã"#îðã#sÄ#ä#5É#ä!´Ë#ä"4Í#ä!!Î#ä">Ò#ä#ý˜Vä!–¦Vä"¨Vä#wv‰ä!m‰ä"¬„‰ä#^R¼ä#;]¼ä!H_¼ä"Ñ`¼ä!¾a¼ä"öe¼ä#»6ïä!…<ïä">ïä#3 "å#_"å!J"å"Ð"å!½"å"à"å#éTå!ØøTå"vúTå#ÎŇå!FÒ‡å"AÔ‡å#z¬ºå#g°ºå!‰²ºå"N´ºå!Sµºå"…¹ºå#víå!Å‹íå"Šíå#€e æ#Oi æ!l æ"“m æ!€n æ"”r æ#BBSæ!ŽGSæ"8ISæ#†æ#½ †æ!~#†æ"4%†æ!!&†æ"5*†æ#Îò¸æ!òþ¸æ"ÿ¹æ,š¹æmd1_raid1xŸ¹ækworker/0:1md1_raid13榹æ€z…x€Àˆ0 -¤©¹æ€z…xmd1_raid1.a°¹æ€z…xmd1_raid10—³¹æmd1_raid13^¶¹æ€z…x€Àˆ0 -¸¹æ€z…xmd1_raid1.¼¹æ€z…xmd1_raid1'ºÀ¹æ€z…xmd1_raid11ǹæmd1_raid1(Ó˹æ€z…xmd1_raid1'dÚ¹æ€z…xmd1_raid11“Þ¹æmd1_raid1(¥á¹æ€z…xmd1_raid1Ûí¹æmd1_raid1€U†b#M ñø¹æmd1_raid1kworker/0:1#”Úëæ#EÞëæ!¥áëæ"äëæ!åëæ"Çéëæ‡ìæmd1_raid1xÆ‹ìækworker/0:1md1_raid13„‘ìæ€B‚x€ˆ…0 -Ç“ìæ€B‚xmd1_raid1.Ñ˜ìæ€B‚xmd1_raid10Å›ìæmd1_raid13iìæ€B‚x€ˆ…0 -gŸìæ€B‚xmd1_raid1. £ìæ€B‚xmd1_raid1'D§ìæ€B‚xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HެìæÈ7#î"éÈ7°~€1¬ìæmd1_raid1(‚±ìæ€B‚xmd1_raid1'·¾ìæ€B‚xmd1_raid11bÂìæmd1_raid1(<Äìæ€B‚xmd1_raid1Ñìæmd1_raid1¦J,­#M ÷Øìæmd1_raid1kworker/0:1#ê³ç!˜ºçľçltt-kconsumerd2íÂçltt-kconsumerd2x"CÇç–Ëçkworker/0:1ltt-kconsumerd2 àçrãçöWæçèçö€@ŽK=¿~éç|ëçHŽK=¿†óçZõçu%ç9(çÐ-À0çp†0 ltt-kconsumerdï:çmd1_raid1çBçåDçÀnIç6KçÝÀVçÝXçö9Zç]ç°Ä@ ÿÿÿÿÿÿÿÿZiçltt-kconsumerd2U§zê¦M vçltt-kconsumerd2kworker/0:1#ˆ”Qç#<˜Qç!Q›Qç" Qç!¢žQç"¢¤Qç#o„ç!Ft„ç"öu„ç#þB·ç#ÚN·ç!>Q·ç"èR·ç!íS·ç"¦X·ç#Àêç!ê+êç".êç#è#Ž è!h è"ë è!Øè"Iè#´ÚOè!ÈçOè"iéOè#¥Á‚è#}Å‚è!uÇ‚è" É‚è!Ê‚è"öÍ‚è#*“µè!“ µè"@¢µè#Ôoèè#Ó|èè!èè"Àèè!ªèè"â…èè#ZUé!Zé"ó[éQéuhci_hcd:usb4 òUé?Wéeth0#?]é /^é!`é-„ésshdf(”‰ésshdf(x"Ü•éDšékworker/0:1sshdf(N½éÂé𢴀ÿp£´€ÿgÅéeÇép£´€ÿ$ÉéÌÏéàc´€ÿ@„Øé0äóé@ù¨ª2 ù¨ª2  éõ é𢴀ÿp£´€ÿÌ é  ép£´€ÿ é¥ é Eªª2© ésshdf(ŽÁÿL  ékworker/2:1Qxý ésshdf(xŽ" éÚ$ é Tࢴ€ÿ@£´€ÿŠ) é6/ é@ù¨ª2 ù¨ª2[9 ésshdf(/"ð"ÿL = ésshdf(kworker/2:1Q$R ékworker/2:1Q°*éïL Ä] ékworker/2:1Qkworker/0:1ŸX"ésshdf(x{^"ékworker/0:1sshdf(½p"écs"é𢴀ÿp£´€ÿXu"éw"ép£´€ÿmx"é{"éàb´€ÿ@ñ„"é)ž"é@ù¨ª2 ù¨ª2‘¥"éì§"é𢴀ÿp£´€ÿç©"éÄ«"ép£´€ÿ­"éS°"鋨ª2P{Ò"éPî×"é@ù¨ª2 ù¨ª2tâ"ésshdf(4Œ$¯ÿL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÐì"éÈ73 àíÈ7Ø€Ðì"ésshdf(kworker/0:1#Ý1Né#r6Né!ä9Né"½KNé!¼LNé"RNé#ré! é"Öé#Œã³é#Xð³é!qò³é"ðô³é!õõ³é"û³é#þÀæé!RÎæé"áÏæéƒ:íéahci#`Eíé %GíéŸHíéuhci_hcd:usb3 CMíé“Níéeth1 =Síé!qUíé&…Yí逅x*"rlíé#{žê#È©ê!Ŭê"q¯ê!^°ê"/µê#1Lê!‰†Lê"6ˆLê#T`ê#Ñdê!>gê"iê!jê"émê#V3²ê!ö>²ê"@²ê# åê#‰åê!üåê"| åê!o!åê"¶%åê#Ìíë!núë"!üë# ÊJë#ÃÔJë!*×Jë""ÙJë!ÚJë")ÞJë#ñ¨}ë!}·}ë"U»}ë:t~ëmd1_raid1xÈy~ëkworker/0:1md1_raid13—€~ë€Z‚x€ …0 -4ƒ~ë€Z‚xmd1_raid1.¸‰~ë€Z‚xmd1_raid10f~ëmd1_raid13O~ë€Z‚x€ …0 -S‘~ë€Z‚xmd1_raid1.j•~ë€Z‚xmd1_raid1'ç™~ë€Z‚xmd1_raid11Ÿ~ëmd1_raid1(#£~ë€Z‚xmd1_raid1'š°~ë€Z‚xmd1_raid11<´~ëmd1_raid1((¶~ë€Z‚xmd1_raid1lÀ~ëmd1_raid1sMmŒ'M É~ëmd1_raid1kworker/0:1Óí‚ëahci#»ö‚ë Øý‚ë=ÿ‚ëuhci_hcd:usb3 Ƀëûƒëeth1 ™ ƒë!* ƒë&̓ë€Z‚x*fƒëkworker/2:1Qx&½'ƒë€Z‚x*",=ƒë¯Aƒëkworker/0:1kworker/2:1Q¢Hƒëkworker/2:1Q+AðL šJƒëkworker/2:2 xQƒëkworker/2:1Qg¨ðL 4Sƒëkworker/2:1Qkworker/2:2 Wƒëkworker/2:2 *¤ÕïL k^ƒëkworker/2:2 kworker/0:1#o°ë# ”°ë!¾˜°ë"ìš°ë!è›°ë"¹ °ë#°`ãë!’lãë"·qãë#†Dì#®Iì!ï"{@ï#y Dï#½Dï!¯Dï"5Dï!vDï"“ Dï#Mçvï!iõvï" ÷vï#+Å©ï#Ωï!ôÏ©ï"€Ñ©ï!mÒ©ï"îÕ©ï#¡Üï!W¯Üï"…±Üï}„Ýïmd1_raid1xu‰Ýïkworker/0:1md1_raid138“Ýï€2x€x„0 -¢•Ýï€2xmd1_raid1.á›Ýï€2xmd1_raid10 ŸÝïmd1_raid13¢Ýï€2x€x„0 -6¤Ýï€2xmd1_raid1.©Ýï€2xmd1_raid1'2®Ýï€2xmd1_raid11D´Ýïmd1_raid1(B¹Ýï€2xmd1_raid1'«ÈÝï€2xmd1_raid11‚ÍÝïmd1_raid1(¸ÐÝï€2xmd1_raid1¤ÞÝïmd1_raid1L\/*M ¤êÝïmd1_raid1kworker/0:1#7ˆð#‹ð!ð"Ö‘ð!Þ’ð"=—ðV)ðmd1_raid1xc.ðkworker/0:1md1_raid13º7ð€†x€H‰0 -ñ9ð€†xmd1_raid1.À@ð€†xmd1_raid10öCðmd1_raid13íFð€†x€H‰0 - Ið€†xmd1_raid1.­Mð€†xmd1_raid1'üRð€†xmd1_raid11—Wðmd1_raid1(ýZð€†xmd1_raid1'ïhð€†xmd1_raid11ñlðmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽOoðÈ7Ny<ôÈ7P€(Ooð€†xmd1_raid1õ}ðmd1_raid1ÁVðZ*M ã†ðmd1_raid1kworker/0:1Ãðahci#†Ìð BÎðÑÏðuhci_hcd:usb3 cÔð­Õðeth1 lÚð!Ýð&åßð€†x*¤üðkworker/2:2 x"àð9 ðkworker/0:1kworker/2:2 lðkworker/2:2 ¯VÚðL ‰ðkworker/2:2 kworker/0:1#gBð!&nBðvuBðltt-kconsumerd2bzBðltt-kconsumerd2x"BðN‚Bðkworker/0:1ltt-kconsumerd2½¬Bð¾±BðöR´Bð¶Bðö€@ŽK=¿y·Bð\¹BðHŽK=¿×ÅBð·ÇBðsCðmCð-û Cðˆ†0 ltt-kconsumerd¤Cðmd1_raid1S"CðT$Cðð@)Cð+CðÝðø4CðÝ)7Cðöo9Cð=Cð°Ä@ ÿÿÿÿÿÿÿÿqICðltt-kconsumerd2Ð;š¨M  VCðltt-kconsumerd2kworker/0:1#žCuð#+Guð!mJuð" Muð!Nuð"ÍSuðTÛuðmd1_raid1xXàuðkworker/0:1md1_raid13ˆæuð€j‚x€°…0 -éuð€j‚xmd1_raid1.1ïuð€j‚xmd1_raid10»òuðmd1_raid13¤ôuð€j‚x€°…0 -Àöuð€j‚xmd1_raid1.³úuð€j‚xmd1_raid1'Kÿuð€j‚xmd1_raid11vðmd1_raid1(vð€j‚xmd1_raid1'üvð€j‚xmd1_raid11†vðmd1_raid1(Tvð€j‚xmd1_raid1&vðmd1_raid1LyÁ+M Æ.vðmd1_raid1kworker/0:1#à¨ð!$¨ð"R'¨ð#TñÚð#þÚð!&Ûð"¬Ûð!œÛð"! Ûð#'Î ñ!ŽÚ ñ"nÜ ñ#Ó¬@ñ#X¶@ñ!G¸@ñ"Ó¹@ñ!ɺ@ñ"p¿@ñlgAñmd1_raid1x£lAñkworker/0:1md1_raid13tAñ€ …x€Pˆ0 -EvAñ€ …xmd1_raid1.`|Añ€ …xmd1_raid10]Añmd1_raid13o‚Añ€ …x€Pˆ0 -v„Añ€ …xmd1_raid1.‰Añ€ …xmd1_raid1'¦Añ€ …xmd1_raid11”“Añmd1_raid1(‰˜Añ€ …xmd1_raid1'ª§Añ€ …xmd1_raid110¬Añmd1_raid1(¯Añ€ …xmd1_raid1‰¼Añmd1_raid1mVæ,M ÔÅAñmd1_raid1kworker/0:1#T”sñ!ë™sñ"Üœsñ#|e¦ñ#Iq¦ñ!Ús¦ñ"Šu¦ñ!Œv¦ñ"Æ{¦ñ#JÙñ!ÙOÙñ"‰QÙñ#B ò#ú) ò!‹, ò". ò!ø. ò"œ3 ò#Cû>ò!Á?ò" ?ò#~Ùqò#æäqò!çæqò"gèqò!éqò"ƒíqò#̼¤ò!ÄÁ¤ò"›Ã¤ò#š×ò#BŸ×ò!O¡×ò"Ï¢×ò!ò£×ò"Z¨×ò#Wn ó!n~ ó"'€ ó#ÏL=ó#ZX=ó!mZ=ó"2\=ó!4]=ó"a=ó#ü/pó!•6pó"<8pó#ü£ó#«£ó!'£ó"ì£ó!î£ó"V£ó#«áÕó!]îÕó"ïïÕó#¦¿ô#¸Éô!IÌô"ÌÍô!¹Îô"*Óô#U£;ô!y©;ô"Y«;ôpr<ômd1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽæw<ôÈ74Ï÷È7¸€æw<ôkworker/0:1md1_raid13ƒ<ô€„x€X‡0 -ê…<ô€„xmd1_raid1./Œ<ô€„xmd1_raid10Œ<ômd1_raid13³’<ô€„x€X‡0 - •<ô€„xmd1_raid1.|™<ô€„xmd1_raid1'^¢<ô€„xmd1_raid11.¨<ômd1_raid1(­<ô€„xmd1_raid1'¼<ô€„xmd1_raid11ŽÀ<ômd1_raid1(‚Ã<ô€„xmd1_raid1òÑ<ômd1_raid1bƒz,M kß<ômd1_raid1kworker/0:1t=ômd1_raid1x=ôkworker/0:1md1_raid13å=ô€Jƒx€†0 -."=ô€Jƒxmd1_raid1.é'=ô€Jƒxmd1_raid10”+=ômd1_raid13C.=ô€Jƒx€†0 -\0=ô€Jƒxmd1_raid1.×3=ô€Jƒxmd1_raid1'¢8=ô€Jƒxmd1_raid11ï<=ômd1_raid1(7@=ô€Jƒxmd1_raid1'/K=ô€Jƒxmd1_raid11¹N=ômd1_raid1(Q=ô€Jƒxmd1_raid13\=ômd1_raid1óKvÆ,M »d=ômd1_raid1kworker/0:1^·Fôahci#ŸÁFô jÃFôöÄFôuhci_hcd:usb3 ÉFôðÊFôeth1 ¥ÏFô!KÒFô&äÕFô€Jƒx*ŒñFôkworker/2:2 x"ÔúFô*ÿFôkworker/0:1kworker/2:2 ‡Gôkworker/2:2 â”ñL b Gôkworker/2:2 kworker/0:1#K‚nô#Á‡nô!¦Šnô"»nô!±Žnô"Í“nô#GU¡ô!Wc¡ô"¹g¡ôZ¢ômd1_raid1xæ¢ôkworker/0:1md1_raid13¢ô€r‚x€¸…0 -€!¢ô€r‚xmd1_raid1.Æ&¢ô€r‚xmd1_raid10Õ)¢ômd1_raid13Ù+¢ô€r‚x€¸…0 -Ý-¢ô€r‚xmd1_raid1.g1¢ô€r‚xmd1_raid1'„5¢ô€r‚xmd1_raid11 ;¢ômd1_raid1(q?¢ô€r‚xmd1_raid1'#K¢ô€r‚xmd1_raid11O¢ômd1_raid1(§Q¢ô€r‚xmd1_raid1¨\¢ômd1_raid1;I±-M Ðg¢ômd1_raid1kworker/0:1“¢ômd1_raid1x€˜¢ôkworker/0:1md1_raid13ž¢ô€Š„x€Ð‡0 -“ ¢ô€Š„xmd1_raid1.g¥¢ô€Š„xmd1_raid10U¨¢ômd1_raid13ª¢ô€Š„x€Ð‡0 -*¬¢ô€Š„xmd1_raid1.ð¯¢ô€Š„xmd1_raid1'ã³¢ô€Š„xmd1_raid11!¸¢ômd1_raid1(B»¢ô€Š„xmd1_raid1'¹Å¢ô€Š„xmd1_raid11É¢ômd1_raid1(ÛÊ¢ô€Š„xmd1_raid1‰Ô¢ômd1_raid1dAQ-M ÄÛ¢ômd1_raid1kworker/0:1#™;Ôô#ä>Ôô!éBÔô"EÔô!%FÔô"KÔô#ßõ!Øõ"|õ#üó9õ#ñø9õ! û9õ"®ü9õ!°ý9õ"E:õ#hÈlõ!¯Ölõ"hØlõ#¨­Ÿõ##±Ÿõ!'³Ÿõ"ª´Ÿõ!—µŸõ"•ºŸõ# ‚Òõ!éŽÒõ"™Òõ#îgö#Glö!¢nö"[pö!]qö"avö#³D8ö!“I8ö"IK8ö#r kö#è%kö!þ'kö"Æ)kö!È*kö"0kö#rõö!vžö"žö#!ÒÐö#áÜÐö!eàÐö"HâÐö!JãÐö""çÐö#)¯÷!g½÷"¿÷#ë‹6÷#Æ•6÷!™6÷"¦š6÷!œ›6÷"•Ÿ6÷#0pi÷!nwi÷"yi÷#rNœ÷#ëSœ÷!ÔUœ÷"`Wœ÷!PXœ÷"Ê\œ÷#`"Ï÷!µ0Ï÷ÁüÁõ©‹à‡îØF²ÿbÊ™HŽø2Ï÷È7rÏÌùÈ7Ð~€"ø2Ï÷#ø#ž ø!Ìø@øltt-kconsumerd2Møltt-kconsumerd2x"Bø!wø"µ#øQ'økworker/0:1ltt-kconsumerd29<øÛ?øöVCø'Eøö€@ŽK=¿Fø½HøHŽK=¿?SøUø[ˆøïŠø -,“ø˜†0 ltt-kconsumerdømd1_raid1û¥øS¨øH­ø4¯øÝ½¹øÝ²»øöþ½øCÁø°Ä@ ÿÿÿÿÿÿÿÿoÎøltt-kconsumerd2¶µñO©M ·×øltt-kconsumerd2kworker/0:1#Äæ4ø!Žì4ø"ï4ø$t5ømd1_raid1x y5økworker/0:1md1_raid13o5ø€z‚x€À…0 -T‚5ø€z‚xmd1_raid1.؈5ø€z‚xmd1_raid10_Œ5ømd1_raid13„Ž5ø€z‚x€À…0 -£5ø€z‚xmd1_raid1.Ÿ”5ø€z‚xmd1_raid1'=™5ø€z‚xmd1_raid11>ž5ømd1_raid1(|¢5ø€z‚xmd1_raid1'+±5ø€z‚xmd1_raid11ú´5ømd1_raid1(·5ø€z‚xmd1_raid1ŸÁ5ømd1_raid1NNÄ©.M ‚É5ømd1_raid1kworker/0:1…×9øahci#Ká9ø =ã9øÌä9øuhci_hcd:usb3 Cé9øê9øeth1 jï9ø!.ò9ø&Oõ9ø€z‚x*ù :økworker/2:2 x"Y:øp:økworker/0:1kworker/2:2 µ:økworker/2:2 ÜÍIòL ':økworker/2:2 kworker/0:1#dÂgø#ÏÆgø!êÉgø"ýËgø!ùÌgø"~Ògø#•šø!ª¡šø"j¥šø#+{Íø#QÍø!mƒÍø",…Íø!†Íø"–ŠÍø#–Pù!–\ù"%^ù³ùmd1_raid1x“ùkworker/0:1md1_raid13@ù€Š…x€Ðˆ0 -Ñù€Š…xmd1_raid1.—$ù€Š…xmd1_raid10ñ'ùmd1_raid13¦*ù€Š…x€Ðˆ0 --ù€Š…xmd1_raid1.1ù€Š…xmd1_raid1'6ù€Š…xmd1_raid11F<ùmd1_raid1(}Aù€Š…xmd1_raid1'fNù€Š…xmd1_raid11¹Rùmd1_raid1(žUù€Š…xmd1_raid1œ`ùmd1_raid1ÄSˆý.M èkùmd1_raid1kworker/0:1#m33ù# 73ù!\:3ù"Ì<3ù!>3ù"SC3ù#e fù!Qfù"fù#±å˜ù!sñ˜ù"\ó˜ù#öËËù#ÑËù!ˆÓËùx×Ëùkworker/2:2 x"ÛËù!¯ÜËù"áËùæËùkworker/0:1kworker/2:2 VóËùkworker/2:2 h5fòL åýËùkworker/2:2 kworker/0:1/šÌùmd1_raid1xŸÌùkworker/0:1md1_raid13è§Ìù€:x€€„0 -:ªÌù€:xmd1_raid1.|°Ìù€:xmd1_raid10ñ³Ìùmd1_raid13f·Ìù€:x€€„0 -‚¹Ìù€:xmd1_raid1.ê½Ìù€:xmd1_raid1'ÃÌù€:xmd1_raid11ôÈÌùmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÎÌùÈ7ƒËúÈ7€(ÎÌù€:xmd1_raid1'ºÞÌù€:xmd1_raid11dãÌùmd1_raid1(‘æÌù€:xmd1_raid1õÌùmd1_raid1÷\Z/M öüÌùmd1_raid1kworker/0:1#W©þù!;¯þù ·þùltt-kconsumerd2p¼þùltt-kconsumerd2x"žÁþù1Åþùkworker/0:1ltt-kconsumerd2­îþùÀóþùö{öþùIøþùö€@ŽK=¿«ùþù‘ûþùHŽK=¿„ÿù[ ÿùHDÿùñFÿù0-|Oÿù †0 ltt-kconsumerd"[ÿùmd1_raid1ÈcÿùÞeÿù ©jÿùnlÿùÝ kuÿùÝTwÿùövyÿù©|ÿù°Ä@ ÿÿÿÿÿÿÿÿ¯ˆÿùltt-kconsumerd2#ͪM Þ’ÿùltt-kconsumerd2kworker/0:1#ކ1ú#Š1ú!ùŒ1ú"'1ú!,1ú"•1úÝ2úmd1_raid1xä2úkworker/0:1md1_raid13­2ú€‚‚x€È…0 -D 2ú€‚‚xmd1_raid1.D&2ú€‚‚xmd1_raid10§)2úmd1_raid13+2ú€‚‚x€È…0 -ˆ-2ú€‚‚xmd1_raid1.l12ú€‚‚xmd1_raid1'é52ú€‚‚xmd1_raid11:2úmd1_raid1(z>2ú€‚‚xmd1_raid1'xL2ú€‚‚xmd1_raid11êO2úmd1_raid1(÷Q2ú€‚‚xmd1_raid1Þ[2úmd1_raid1*KÃ0M Óc2úmd1_raid1kworker/0:1]³6úahci#h½6ú ¿6úhÀ6úuhci_hcd:usb3 ÓÄ6úÆ6úeth1 ÐÊ6ú!‚Í6ú&‘Ð6ú€‚‚x*ç6úkworker/2:2 x"ð6úXô6úkworker/0:1kworker/2:2 dú6úkworker/2:2 |óL {7úkworker/2:2 kworker/0:1#¾cdú!Òjdú"¾ldú#@>—ú#ÜC—ú!¹E—ú"÷I—ú!çJ—ú"ñO—úÌ"˜úmd1_raid1xÐ'˜úkworker/0:1md1_raid131˜ú€"„x€h‡0 -s3˜ú€"„xmd1_raid1.Í9˜ú€"„xmd1_raid10=˜úmd1_raid13`@˜ú€"„x€h‡0 -ÍB˜ú€"„xmd1_raid1.*F˜ú€"„xmd1_raid1':K˜ú€"„xmd1_raid11UQ˜úmd1_raid1(bV˜ú€"„xmd1_raid1'4c˜ú€"„xmd1_raid11âf˜úmd1_raid1(ñi˜ú€"„xmd1_raid1¶t˜úmd1_raid1 T1M –˜úmd1_raid1kworker/0:1#…Êú!˜#Êú"5&ÊúÐÅÊúmd1_raid1xÈÊÊúkworker/0:1md1_raid13ÔÊú€ †x€P‰0 -\ÖÊú€ †xmd1_raid1.LÝÊú€ †xmd1_raid10ŽàÊúmd1_raid13ŽãÊú€ †x€P‰0 -ÚåÊú€ †xmd1_raid1.êÊú€ †xmd1_raid1'ûîÊú€ †xmd1_raid11–óÊúmd1_raid1(A÷Êú€ †xmd1_raid1'ÅËú€ †xmd1_raid11² Ëúmd1_raid1(­ Ëú€ †xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽËúÈ7ƒ|,ýÈ7x€Ëúmd1_raid1þUm1M Í%Ëúmd1_raid1kworker/0:1#šöüú#ýüú!ÏýúN ýúltt-kconsumerd2¸ýúltt-kconsumerd2x"zýú!¸ýú"Å"ýú&ýúkworker/0:1ltt-kconsumerd2Qýú.VýúöéXýú·Zýúö€@ŽK=¿\ýú^ýúHŽK=¿ÝjýúÌlýúŽ£ýú4¦ýú@-q®ýú¨†0 ltt-kconsumerd̹ýúmd1_raid1<ÂýúXÄýú08Éýú$ËýúÝ0`ÔýúÝUÖýúö˜ØýúàÛýú°Ä@ ÿÿÿÿÿÿÿÿ èýúltt-kconsumerd2šÚ®÷ªM ûðýúltt-kconsumerd2kworker/0:1#}×/û!˜Ý/û"à/ûYo0ûmd1_raid1xz!>>z"Ö>z!À>z"ò>z#GÑpz#HÓpz !ùÝpz"‹ßpz!àpz "ãpz ázahci êñz$ôzuhci_hcd:usb3 ûøzûzeth1 Ežz#ª±£z#º£z #Ò½£z!WÀ£z"g£z!Tãz"ÅÍ£z!£Î£z "žÓ£z #@Öz#ß–Öz !íÖz"—ŸÖz!~ Öz "B£Öz #Ei {#Ûr { #ƒv {!~x {"yz {!r{ {"† {!H‡ { "ÉŠ { oÌ{md1_raid1xØÒ{swappermd1_raid13Õø{€ºð0+€ôè)-ý{€ºð0+md1_raid1.Ð {€ºð0+md1_raid1'È{€ºð0+md1_raid1(Ô{€ÿÿÿÿÿÿÿÿmd1_raid134{€ºð0+€ôè)-Ê6{€ºð0+md1_raid1. ;{€ºð0+md1_raid1'Y>{€ºð0+md1_raid1(÷B{€ÿÿÿÿÿÿÿÿmd1_raid1ÚM{md1_raid1‚ƒîé9.^W{md1_raid1swapper#›ý{!rÿ{&g{€ºð0+*ö{kworker/0:2_(x(+{€ÿÿÿÿÿÿÿÿswapper"*{À.{swapperkworker/0:2_(›5{kworker/0:2_(\"ý+7.¦<{kworker/0:2_(swapper#‚Š"{!ç‹"{&m“"{€ºð0+*S£"{kworker/0:2_(x(¦­"{€ÿÿÿÿÿÿÿÿswapper".¼"{EÀ"{swapperkworker/0:2_(²Å"{kworker/0:2_([#XO7.nÍ"{kworker/0:2_(swapper#¨N<{#cQ<{ !@V<{"ªX<{!©Y<{ "o]<{ #¤!o{#¶*o{ #.o{!à0o{"u2o{!S3o{"Ë?o{!¦@o{ "XCo{ #mÿ¡{! ¢{"é¢{#åÔ{#ÔæÔ{ #ïéÔ{!ÏëÔ{"ÙíÔ{!ÉîÔ{"”ùÔ{!oúÔ{ "ßüÔ{ #¹|#sÁ| !tÆ|"-È|!É| "fË| Lo|ahci ó|m|uhci_hcd:usb3 í…|=‡|eth1 Œ| 0|ahci ö!0|[#0|uhci_hcd:usb3 ó'0|1)0|eth1 á-0|#­:|#’£:|!q¦:|"„¨:|!e©:|"ß³:|¹´H|ahci 5ÃH|ÖÄH|uhci_hcd:usb3 ÑÉH|ËH|eth1 ãÏH|cë^|ahci âù^|û^|uhci_hcd:usb3 mÿ^|™_|eth1 @_|#vsm|#Ê|m| !ƒm|"~ƒm|!h„m| "4ˆm| #BO |#VW | #{\ |!¸^ |"_` |!@a |"l |! m | "Ýo | #l+Ó|#€5Ó| !¨:Ó|"C<Ó|!*=Ó| "s?Ó| #}#¶} #7}!z}"}!ê}" #}!<$} "Ö&} #_ç8}#×î8} !„ó8}"õ8}!-ö8} "ù8} #ËÁk}#uÊk} #ÄÏk}!ÑÑk}"fÓk}!˜Ôk}"ÓÞk}!±ßk} "âk} #<¡ž}#çž} !k®ž}"°ž}!±ž} "B³ž} ¨±¤}ahci „À¤}¤}uhci_hcd:usb3 lƤ}›Ç¤}eth1 H̤}#J}Ñ}#°‰Ñ}!ŒÑ}"ÄÑ}!¢ŽÑ}"†˜Ñ}#b~!h~"úi~# 57~#@7~!oB7~"OD7~!›!•K›"®M›#qÎ#±%Î!c(Î"7*Î!?+Î"¨4Î#/€!ã €" €#ÔÛ3€#¢à3€!]ã3€"(å3€!æ3€"³ð3€#L³f€!…¿f€"Áf€#H™€#n™™€!´›™€"O™€!?ž™€"q¨™€#tÌ€!/{Ì€"Ç|Ì€#ŸOÿ€#ÐTÿ€!Wÿ€ÁüÁõ©‹à‡îØF²ÿbÊ™HŽYÿ€È7^5T‹È7€€"Yÿ€!0^ÿ€"gÿ€#š/2!î52=2ltt-kconsumerd2ÌB2ltt-kconsumerd2x"ÖG2ÞK2swapperltt-kconsumerd2y2Â2!ömƒ2‰…2!ö€@ŽK=¿K‡2ˆ‰2!HŽK=¿;—2r™2"ë2 î2"-¢ø20 ltt-kconsumerd;3á3!öZ3†3°Ä@ ÿÿÿÿÿÿÿÿK+3ltt-kconsumerd20ê€!î.283ltt-kconsumerd2swapper#. e#Þe! e"e!Ñe"9#e© jahci —%j'juhci_hcd:usb3 ¯+jù,jeth1 £1j#ë—!rñ—"©ó—#¼Ê#ÈÊ!sÊÊ"ÌÊ!ÍÊ"ØÊ#™ý!‚¥ý"2§ý# z0‚#¼†0‚!Y‰0‚"3‹0‚!5Œ0‚"Ε0‚#³Rc‚!J^c‚"ú_c‚#…:–‚#!A–‚!²C–‚"5E–‚!%F–‚"`P–‚#ÜÉ‚!ÐÉ‚"‰É‚#þèû‚#„ôû‚!^öû‚" øû‚! ùû‚"Äü‚#>È.ƒ!%Ö.ƒ"Æ×.ƒ#ó¢aƒ!X­aƒ"¯aƒ#8Š”ƒ#<”ƒ!‹‘”ƒ"K­”ƒ!k®”ƒ" ·”ƒ#@]ǃ! jǃFpǃkworker/u:3pxWwǃkworker/0:2_(x"V{ǃ£ǃswapperkworker/u:3p›‡Çƒkworker/u:3p7.}ŠÇƒkworker/u:3pkworker/0:2_(ٔǃkworker/0:2_(h À\7.þŸÇƒkworker/0:2_(swapper##;úƒ#‘Eúƒ!mHúƒ"JJúƒ!CKúƒ" Xúƒ#Ÿ-„!$$-„"¹%-„#ó_„#?ü_„!:þ_„"óÿ_„!Ý`„"G `„#áÏ’„!ÇÛ’„"æÝ’„¸â„ahci ]ò„­ó„uhci_hcd:usb3 'ø„wù„eth1 þ„#ë¬Å„#T¹Å„!L»Å„"q½Å„!a¾Å„"ÊÅ„#0‹ø„! —ø„"(™ø„#f+…#hq+…!Es+…"Èt+…!µu+…"Ç+…#/C^…!5O^…"ÐP^…#(‘…#N,‘…!ß.‘…"‰0‘…!v1‘…"M<‘…#øþÃ…!= Ä…"Ø Ä…#vÙö…#æö…!éö…",ëö…!ìö…"q÷ö…#’¶)†!Á)†"7Ã)†1ä.†ahci "ó.†ô.†uhci_hcd:usb3 ù.†«ú.†eth1 gÿ.†#•\†#× \†!Œ£\†"ü¥\†!þ¦\†";²\†#É{†!÷€†"ª‚†#ñL†#lV†!ýX†"ƒZ†!s[†"=Yˆ#ì@Yˆ!bCYˆ"'EYˆ!)FYˆ"øOYˆ#%Œˆ!ÄŒˆ"›Œˆ#*í¾ˆ#ø¾ˆ!cú¾ˆ×þ¾ˆkworker/u:3px"¿ˆ!„¿ˆ"¹ ¿ˆÖ¿ˆswapperkworker/u:3p忈kworker/u:3py ú77.Z$¿ˆkworker/u:3pswapper#NËñˆ!.Öñˆ"Øñˆ#ѧ$‰#˰$‰!v´$‰"P¶$‰!R·$‰"û¿$‰#ìŒW‰!t’W‰"$”W‰#`Љ#ïjЉ!DmЉ"ñnЉ!óoЉ"¡yЉ#>½‰!ÝH½‰"J½‰#Âð‰#„(ð‰!÷*ð‰"},ð‰!Ä-ð‰"6ð‰#·ÿ"Š!¤#Š"Q#Š# ÕUŠ#ôáUŠ!ããUŠ"«åUŠ!­æUŠ"ðUŠ#“±ˆŠ!%¿ˆŠ",ÁˆŠ#ó»Š#›»Š!Cž»Š", »Š!¡»Š"ö«»Š#ajîŠ!iwîŠ"CyîŠ#H!‹#R!‹!T!‹"&V!‹!W!‹"q_!‹#ó#T‹!63T‹ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÍ>T‹È7;ª¥—È7ð€Í>T‹ltt-kconsumerd2ÃET‹ltt-kconsumerd2x"jJT‹ÓMT‹swapperltt-kconsumerd2wT‹ª|T‹!ö¡T‹T‹!ö€@ŽK=¿7ƒT‹J…T‹!HŽK=¿’T‹ð“T‹"•ÏT‹,ÒT‹"-ÝT‹0 ltt-kconsumerd–øT‹ÇúT‹"ûÿT‹ØU‹Ý"-U‹ÝFU‹!ö’U‹òU‹°Ä@ ÿÿÿÿÿÿÿÿ—$U‹ltt-kconsumerd2ÈßHï.T1U‹ltt-kconsumerd2swapper# ‡‹#‡‹!—‡‹" ‡‹!‡‹"Î$‡‹#j繋!/﹋"ëð¹‹#•ºì‹#Åì‹!Èì‹"ìÉì‹!ÙÊì‹"Ôì‹#RŸŒ!ᦌ"ˆ¨Œ#M}RŒ# RŒ!ƒRŒ"Z…RŒ!\†RŒ"•RŒ#¥Q…Œ!½]…Œ"y_…Œ#Æ8¸Œ#(=¸Œ!#?¸Œ"£@¸Œ!äA¸Œ"_K¸Œ#¼ ëŒ!ðëŒ"ÁëŒ#‰ç#bô!?ö"¿÷!¬ø"ðæ#ahci ‡,#.#uhci_hcd:usb3 ®2#4#eth1 É8##pÆP!³ÑP"ÆÓP#¡ƒ#®ƒ!=°ƒ"²ƒ!þ²ƒ"罃#¶~¶!¶ˆ¶"üж#Bbé#hé!mjé"/lé!.mé"ßvé#³7Ž!ñEŽ"•GŽ#§OŽ#*$OŽ!&OŽ"Ò'OŽ!¼(OŽ":2OŽ#ñúŽ!‰ÿŽ"0‚Ž#‘Ñ´Ž#ÚÜ´Ž!ÆÞ´Ž"Rà´Ž!?á´Ž"eë´Ž#_´çŽ!ö¹çŽ"—»çŽ#ˆ#'•!s—"ð˜! š"¤#ÃdM!qM"²rM#¬J€#êN€!Q€"›R€!…S€"]€#·³!+³"Y-³#ªýå#Dæ!‡ æ" æ!ñ æ"èæ#ð×!qä"æ#ô´K!’ÂK"¢ÄK#ì”~#>¡~!$£~"°¤~!¥~"|®~#w±!¡|±"K~±#vKä#ÂWä!/Zä"¯[ä!ç\ä"¶fä#8(‘!l7‘"s9‘#ùJ‘!zJ‘" J‘— O‘ahci O‘\O‘uhci_hcd:usb3 å"O‘$O‘eth1 »(O‘#è|‘#Pì|‘!?î|‘""ð|‘! ñ|‘"Gû|‘#lÀ¯‘!Ï̯‘"ϯ‘#{›â‘#ø¦â‘!¤©â‘"$«â‘!¬â‘"o´â‘#nx’!Ù…’"€‡’#GUH’!QaH’"cH’#À<{’#w@{’!«B{’"Ì]{’!¼^{’"Øf{’#º®’!²®’"V ®’#}îà’#Äøà’![ûà’">ýà’!.þà’"8 á’#rÈ“!šÓ“"ÈÕ“#J®F“#m²F“!_´F“"¶F“!·F“"ÁF“#B‚y“!by“"‘y“#»^¬“#m¬“!§—ltt-kconsumerd2Ÿƒç„ð.ïJ§—ltt-kconsumerd2swapperÑ£°—ahci ³°—õ´°—uhci_hcd:usb3 x¹°—ݺ°—eth1 r¿°—#„„Ø—#%‰Ø—!.ŒØ—"ÝŽØ—!ëØ—"›Ø—#Z ˜!Èf ˜"h ˜#ý5>˜#?>˜!ªA>˜"$C>˜!D>˜"ïM>˜#%q˜!S!q˜"ñ"q˜#ò£˜#vü£˜!éþ£˜"l¤˜!Y¤˜" ¤˜#½ÏÖ˜!ÜÖ˜"*ÞÖ˜#õµ ™#y¹ ™!¼» ™"B½ ™!2¾ ™ëÔ ™ltt-kconsumerd2x"\Ù ™ˆÝ ™swapperltt-kconsumerd2´ó ™óö ™öÊ ™’ ™ö€@ŽK=¿Õ ™ ™HŽK=¿í ™Ç ™H ™«J ™ -ÐR ™P‚0 ltt-kconsumerdÄd ™md1_raid1 m ™}o ™ˆs ™Yu ™Ý‡ƒ ™Ý… ™öˆ ™ÑŠ ™ö}– ™B˜ ™ö€@ŽK=¿š ™ó› ™HŽK=¿è£ ™ ¦ ™Õ ™˜× ™ð-Øß ™‚0 ltt-kconsumerd“î ™ ð ™àäô ™¯ö ™Ýà~ ™Ý ™ö! ™Í ™°Ä@ ÿÿÿÿÿÿÿÿ> ™ltt-kconsumerd20GÌñ.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽj& ™È7Mf›È7€€j& ™ltt-kconsumerd2swapper#œ™!ž™&¤™€ x*"üÀ™#¶Í™!NÏ™&EÒ™€ x*"Áì™#þŸ™!x¡™&$¤™€º~x*³™kworker/0:2_(x"Ÿ»™@À™swapperkworker/0:2_(ZÇ™kworker/0:2_(Æ:.7Ï™kworker/0:2_(swapper#‹Õ™! ×™&dÛ™€º~x*œî™kworker/0:2_(x"x÷™³û™swapperkworker/0:2_(z™kworker/0:2_(† Ù:.C™kworker/0:2_(swapper#È<™!—<™œ<™ltt-kconsumerd2x"… <™ ¤<™swapperltt-kconsumerd2Û¶<™ÿ¹<™!öo¼<™C¾<™!ö€@ŽK=¿ó¿<™Â<™!HŽK=¿•Ì<™lÎ<™"ø<™²ú<™"0-=™0 ltt-kconsumerd =™=™" ¬=™Î=™Ý" £$=™Ýï&=™!ö8)=™ü+=™°Ä@ ÿÿÿÿÿÿÿÿ‰8=™ltt-kconsumerd2íœiò.òC=™ltt-kconsumerd2swapper#œnA™!gpA™&tuA™€Ò}x*µ…A™kworker/0:2_(xŽA™ahci#FšA™ 2œA™©A™uhci_hcd:usb3 ;¢A™Ö£A™eth1 ž¨A™"±A™!@²A™&âµA™€Ò}x*"ùËA™mÐA™swapperkworker/0:2_(FÙA™kworker/0:2_(ÎÑ›!.ÏÑ›"NÙÑ›#ö™œ!¥œ"…§œ#¢v7œ!ƒ„7œ"†7œ#â]jœ#´ajœ!Hdjœ"õejœ!âfjœ"²ojœ#r8œ!™>œ"4@œÛãœmd1_raid1x¯èœswappermd1_raid13½ñœ€ ~x€P0 --ôœ€ ~xmd1_raid1.*úœ€ ~xmd1_raid10ÿýœmd1_raid13Þžœ€ ~x€P0 -~žœ€ ~xmd1_raid1.Yžœ€ ~xmd1_raid1'u žœ€ ~xmd1_raid11ožœmd1_raid1(žœ€ ~xmd1_raid1'ð$žœ€ ~xmd1_raid11m)žœmd1_raid1(ø+žœ€ ~xmd1_raid1“9žœmd1_raid1ÏW.$P.ôDžœmd1_raid1swapper#t~¢œ! €¢œ&؃¢œ€ ~x*µ”¢œkworker/0:2_(x"^¢œÏ¡¢œswapperkworker/0:2_(#Z§¢œ!Ѩ¢œ&¼«¢œ€ ~x*"ÈÆ¢œŒÌ¢œkworker/0:2_(…8=<.΢œkworker/0:1.&xÕ¢œkworker/0:2_(¦ã<.É×¢œkworker/0:2_(kworker/0:1.&ËÛ¢œkworker/0:1.&Ø+–;. â¢œkworker/0:1.&swapper#М#½М!ŠМ"М!ŒМ"¹(М#Tê!ÿ÷"fü#ÊÇ5#àÐ5!>Ó5"úÔ5!üÕ5"˜ß5#Ñ«h!ª±h"T³h#‚€›!!Ž›"ž›# gÎ#llÎ!ÁnÎ"}pÎ!qÎ"ýzÎ#9:ž!žEž"™Gž#4ž#"4ž!q%4ž"ñ&4ž!Þ'4ž"Œ14ž#æófž!Ãþfž"ggž#ÀЙž#üÚ™žÁüÁõ©‹à‡îØF²ÿbÊ™HŽÏÝ™žÈ7…k3ŸÈ7Ø€!ÏÝ™ž¾ç™žltt-kconsumerd2—홞ltt-kconsumerd2x"ªò™ž!âó™ž"iý™ž)šžswapperltt-kconsumerd2Ù,šž2šž!ö¸5šžà7šž!ö€@ŽK=¿B9šž+;šž!HŽK=¿©Gšž†Išž"Û‡šžÆŠšž"P-Š“šž(0 ltt-kconsumerd¸žšžmd1_raid1H¨šžUªšž"@­¯šžñšžÝ"@Ö¼šžÝ澚ž!ö#ÁšžÚžöqКž<Òšžö€@ŽK=¿pÔšž‰ÖšžHŽK=¿ÁÝšž’ßšž Λž_›ž -›ž0 ltt-kconsumerdu.›ž‹0›ž z5›ž„7›žÝ ŽE›žÝ‰G›žö,J›žwM›ž°Ä@ ÿÿÿÿÿÿÿÿ¦Z›žltt-kconsumerd2BnF×ó.od›žltt-kconsumerd2swapperÄu žahci#›€ ž c‚ žþƒ žuhci_hcd:usb3 ~ˆ ž1Š žeth1 Ꭰž!’ ž&j– ž€â}x*"ߨ ž#Z¬ ž!”® ž&å± ž€â}x*"Uàž#/¥ž!y¥ž&#¥ž€J~x*å4¥žkworker/0:1.&x"+=¥žØA¥žswapperkworker/0:1.&;H¥žkworker/0:1.&U›Ð<.ÌO¥žkworker/0:1.&swapper#°Ìž!¼̞"w¿ÌžMÍžmd1_raid1xÛQÍžswappermd1_raid13ªXÍž€š}x€à€0 ->[Íž€š}xmd1_raid1.³aÍž€š}xmd1_raid10seÍžmd1_raid13˜gÍž€š}x€à€0 -óiÍž€š}xmd1_raid1.ÚmÍž€š}xmd1_raid1'‡rÍž€š}xmd1_raid11xÍžmd1_raid1(›|Íž€š}xmd1_raid1' ‹Íž€š}xmd1_raid11IÍžmd1_raid1( ‘Íž€š}xmd1_raid1œÍžmd1_raid1ìOã‡R.m¤Ížmd1_raid1swapper#í¾Ñž!‹ÀÑž&9ÄÑž€š}x*yÒÑžkworker/0:1.&x"FÛÑž–ßÑžswapperkworker/0:1.&*åÑžkworker/0:1.&Œ'ä<.YìÑžkworker/0:1.&swapper#JòÑž!²óÑž&ÜöÑž€š}x*ð Òžkworker/0:1.&x"¬ÒžÉÒžswapperkworker/0:1.&EÒžkworker/0:1.&ý$ö<.J"Òžkworker/0:1.&swapper#ö“ÿž#˜ÿž!Í›ÿž"àÿž!9Ÿÿž"±¨ÿž#oj2Ÿ!2u2Ÿ"Bz2ŸƒF3Ÿmd1_raid1xÃK3Ÿswappermd1_raid13çT3Ÿ€Â~x€‚0 -xW3Ÿ€Â~xmd1_raid1.B]3Ÿ€Â~xmd1_raid10ê`3Ÿmd1_raid13c3Ÿ€Â~x€‚0 -»e3Ÿ€Â~xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ“i3ŸÈ7¢8ý È7H~€.“i3Ÿ€Â~xmd1_raid1'r3Ÿ€Â~xmd1_raid11¦w3Ÿmd1_raid1(h|3Ÿ€Â~xmd1_raid1'/‹3Ÿ€Â~xmd1_raid11C3Ÿmd1_raid1(õ‘3Ÿ€Â~xmd1_raid1Ÿ3Ÿmd1_raid1íZÐâR.?«3Ÿmd1_raid1swapper#BË7Ÿ!ïÌ7Ÿ&”Ð7Ÿ€Â~x*óà7Ÿkworker/0:1.&x"ué7ŸÔí7Ÿswapperkworker/0:1.&Œó7Ÿkworker/0:1.&³ =.šú7Ÿkworker/0:1.&swapper#Ö8Ÿ!b8Ÿ&¡ 8Ÿ€Â~x*e%8Ÿkworker/0:1.&x"N-8Ÿ˜18Ÿswapperkworker/0:1.&D78Ÿkworker/0:1.&“F=.£>8Ÿkworker/0:1.&swapper# MeŸ#FQeŸ!TeŸ/\eŸltt-kconsumerd2ØaeŸltt-kconsumerd2x"îfeŸ!heŸ"âreŸKveŸswapperltt-kconsumerd2B eŸj¥eŸ!ö[¨eŸzªeŸ!ö€@ŽK=¿ý«eŸé­eŸ!HŽK=¿‚ºeŸa¼eŸ"àñeŸÅôeŸ"`-_ýeŸ00 ltt-kconsumerdfŸmd1_raid1QfŸXfŸ"PDfŸ-fŸÝ"P–#fŸÝ‹%fŸ!ö¹'fŸ+fŸ°Ä@ ÿÿÿÿÿÿÿÿ%7fŸltt-kconsumerd2žÖä­ô.^@fŸltt-kconsumerd2swapperébjŸahci#xmjŸ ^ojŸÉpjŸuhci_hcd:usb3 ujŸÌvjŸeth1 ”{jŸ!U~jŸ&ôjŸ€ê}x*¨‘jŸkworker/0:1.&x#1™jŸ"K jŸ!e¡jŸ&¦jŸ€ê}x*"%¼jŸÀjŸswapperkworker/0:1.&±ÆjŸkworker/0:1.&6çÈ=.ÇÈjŸkworker/0:2_(xQÏjŸkworker/0:1.&¾¥Ñ=.¸ÑjŸkworker/0:1.&kworker/0:2_(ŠÕjŸkworker/0:2_(< ™=.+ÝjŸkworker/0:2_(swapper#§*˜Ÿ!92˜Ÿ"¦4˜Ÿ#uËŸ#V ËŸ! ËŸ"+ËŸ!öËŸ"¼ËŸ#šÚýŸ!²äýŸ"VæýŸ#ܸ0 #ÅÄ0 !Ç0 "ôÈ0 !öÉ0 "òÓ0 #tœc !¢c "â£c #5i !¸i &û i €x*(i kworker/0:2_(x"ë0i 85i swapperkworker/0:2_(A;i kworker/0:2_(©É­=.ýBi kworker/0:2_(swapper#|– #x– !f‚– " „– !™…– "[– #©VÉ !…\É "÷_É #¬*ü #85ü !F9ü ";ü !û;ü "Fü  Þü md1_raid1xnãü swappermd1_raid131êü €¢}x€è€0 -Ôìü €¢}xmd1_raid1.lóü €¢}xmd1_raid102÷ü md1_raid13Tùü €¢}x€è€0 -²ûü €¢}xmd1_raid1.“ÿü €¢}xmd1_raid1'[ý €¢}xmd1_raid11ˆ ý md1_raid1(Sý €¢}xmd1_raid1'ý €¢}xmd1_raid112!ý md1_raid1(ö#ý €¢}xmd1_raid1I.ý md1_raid1%PA²T.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽX7ý È7óË¢È7X€X7ý md1_raid1swapper#B:¡!û;¡&v?¡€¢}x* N¡kworker/0:2_(x"òV¡B[¡swapperkworker/0:2_(ñ`¡kworker/0:2_(&ïÀ=.Õg¡kworker/0:2_(swapper#»o¡!5q¡&\t¡€¢}x*xˆ¡kworker/0:2_(x"[¡™”¡swapperkworker/0:2_(œš¡kworker/0:2_(ɸÓ=.S¡¡kworker/0:2_(swapper#Î/¡!/¡×/¡ltt-kconsumerd2»/¡ltt-kconsumerd2x"œ#/¡¼'/¡swapperltt-kconsumerd2•?/¡RC/¡!öàE/¡ºG/¡!ö€@ŽK=¿I/¡öJ/¡!HŽK=¿R/¡tT/¡"~/¡±€/¡"p-‰/¡80 ltt-kconsumerdº’/¡md1_raid1¾š/¡Μ/¡"`„¡/¡g£/¡Ý"`ý¬/¡Ýé®/¡!ö±/¡ÿ³/¡°Ä@ ÿÿÿÿÿÿÿÿÉ¿/¡ltt-kconsumerd2° ”Nõ.!Ë/¡ltt-kconsumerd2swapper#44¡!ð54¡&¥;4¡€ò}x*K4¡kworker/0:2_(x"ÂT4¡# Z4¡!Ä[4¡&ä_4¡€ò}x*"qu4¡©y4¡swapperkworker/0:2_(Í4¡kworker/0:2_(‹5i>.Î4¡kworker/0:1.&xˆ4¡kworker/0:2_(‹ªq>.;Š4¡kworker/0:2_(kworker/0:1.& Ž4¡kworker/0:1.&ý‘9>.*•4¡kworker/0:1.&swapper#jïa¡#óa¡!öa¡"šb¡!¥b¡"`b¡#”¡!oΔ¡"1Ó”¡JÒ™¡ahci#!Ý™¡ ÝÞ™¡<à™¡uhci_hcd:usb3 ¼ä™¡晡eth1 §ê™¡!Þ왡&w𙡀Jx*–š¡kworker/0:1.&x#Aš¡"Ñš¡!ôš¡&ך¡€Jx*"0š¡î3š¡swapperkworker/0:1.&:š¡kworker/0:1.&{9 s>.ì;š¡kworker/0:2_(xòAš¡kworker/0:1.&"{>.#Dš¡kworker/0:1.&kworker/0:2_(§Gš¡kworker/0:2_(Êtw>.¸Nš¡kworker/0:2_(swapper#¤§Ç¡#Ϭǡ!Y°Ç¡"±²Ç¡!ª³Ç¡"—½Ç¡#×{ú¡!B‡ú¡"ž‹ú¡#}`-¢#Ze-¢!4g-¢"½h-¢!­i-¢"ýs-¢#¼4`¢!]B`¢"òC`¢#A“¢!;“¢"î“¢#§Õ™¢!`×™¢&FÜ™¢€ª}x*"]#𠚢!š¢&Pš¢€ª}x*"e,š¢#ø%ž¢!'ž¢&+ž¢€Ê~x*S9ž¢kworker/0:2_(x"Až¢DEž¢swapperkworker/0:2_(zKž¢kworker/0:2_(5©Š>.åRž¢kworker/0:2_(swapper#‘Xž¢!êYž¢&š^ž¢€Ê~x*Ûtž¢kworker/0:2_(x"E}ž¢qž¢swapperkworker/0:2_(熞¢kworker/0:2_(¥N>.zž¢kworker/0:2_(swapper#cñÅ¢#wüÅ¢!ÿÅ¢"{Æ¢!wÆ¢"Z Æ¢ âÊ¢ahci#VíÊ¢ ïÊ¢†ðÊ¢uhci_hcd:usb3 úôÊ¢JöÊ¢eth1 îúÊ¢!ýÊ¢&XË¢€Ò~x*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽjË¢È79Ò–£È7Ø€jË¢kworker/0:2_(x"]Ë¢˜"Ë¢swapperkworker/0:2_(#\(Ë¢! )Ë¢&¹.Ë¢€Ò~x*"JË¢\OË¢kworker/0:2_((>vÛ>.?QË¢kworker/0:1.&xcWË¢kworker/0:2_(4ªã>.÷YË¢kworker/0:2_(kworker/0:1.&±]Ë¢kworker/0:1.&u—>.’dË¢kworker/0:1.&swapper#Öø¢!aÛø¢Ãâø¢ltt-kconsumerd2|çø¢ltt-kconsumerd2x"ìø¢qïø¢swapperltt-kconsumerd2aù¢­ù¢!ö_"ù¢<$ù¢!ö€@ŽK=¿‰%ù¢o'ù¢!HŽK=¿Y4ù¢N6ù¢"‘qù¢:tù¢"€-ì|ù¢@ƒ0 ltt-kconsumerd"ù¢,‘ù¢"pµ•ù¢•—ù¢Ý"p7¡ù¢Ý,£ù¢!öf¥ù¢“¨ù¢°Ä@ ÿÿÿÿÿÿÿÿ`´ù¢ltt-kconsumerd2ªÍ>ö.Àù¢ltt-kconsumerd2swapper# 4þ¢!î5þ¢&n:þ¢€úx*Oþ¢kworker/0:1.&x"øXþ¢Ÿ]þ¢swapperkworker/0:1.&xcþ¢kworker/0:1.&!_?.×jþ¢kworker/0:1.&swapper#þ²+£#Ķ+£!”¹+£"1¼+£!6½+£"Ç+£yF,£md1_raid1xüJ,£swappermd1_raid13>Q,£€²}x€ø€0 -½S,£€²}xmd1_raid1.YZ,£€²}xmd1_raid10ò],£md1_raid13ð_,£€²}x€ø€0 -!b,£€²}xmd1_raid1.f,£€²}xmd1_raid1'µj,£€²}xmd1_raid11ßo,£md1_raid1(Ïs,£€²}xmd1_raid1'1,£€²}xmd1_raid11Ù„,£md1_raid1(݆,£€²}xmd1_raid1•’,£md1_raid1ªL?bX.êš,£md1_raid1swapper#o¢0£!¤0£&”§0£€²}x*d¶0£kworker/0:1.&x"‹¿0£Ä0£swapperkworker/0:1.&ÛÉ0£kworker/0:1.&@Ÿ*?.ãÐ0£kworker/0:1.&swapper#SÖ0£!Ü×0£&ëÚ0£€²}x*Ãí0£kworker/0:1.&x"—õ0£Øù0£swapperkworker/0:1.& ÿ0£kworker/0:1.&å„1¬Ý9@1¬ö¯B1¬UE1¬°Ä@ ÿÿÿÿÿÿÿÿ•V1¬ltt-kconsumerd2e`xåø.ú`1¬ltt-kconsumerd2swapper#|%7¬!Y'7¬&Ü+7¬€â~x*"‡D7¬# ¾;¬!z¿;¬&¬Ã;¬€€x*"OÑ;¬#Üø;¬!&ú;¬&Sý;¬€€x*"É <¬#Ž?¬!?¬&ü ?¬€Š€x*‰?¬kworker/0:2_(x"Ã?¬#?¬swapperkworker/0:2_(»)?¬kworker/0:2_(ÑIÞA.A1?¬kworker/0:2_(swapper#™‚¬!p@‚¬"’E‚¬!…F‚¬"FR‚¬#ºµ¬!=µ¬"µ¬#÷ç¬#·ûç¬!åýç¬"•ÿç¬!—è¬"J è¬`í¬ahci#d*í¬ _,í¬ñ-í¬uhci_hcd:usb3 †2í¬÷3í¬eth1 õ8í¬! ;í¬&­>í¬€Rx*=Qí¬kworker/0:2_(x#9Xí¬"_í¬!L`í¬&]dí¬€Rx*"‘~í¬«‚í¬swapperkworker/0:2_(‰í¬kworker/0:2_(9Ÿ*B.T‹í¬kworker/0:1.&xŸ‘í¬kworker/0:2_(¯N3B.ß“í¬kworker/0:2_(kworker/0:1.&«—í¬kworker/0:1.& „ÐA..Ÿí¬kworker/0:1.&swapper#Ô­!®Ù­"$Ü­#I¦M­#â³M­!¶M­"6ºM­!#»M­"CÅM­#­!â‘€­"ד€­#&a³­#k³­!^n³­" p³­!"q³­"dz³­#dEæ­!7Kæ­"óLæ­#ª®#&®ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ„(®È7æïO¯È7x€!„(®à/®ltt-kconsumerd2À4®ltt-kconsumerd2x"9®!9:®"¾B®_F®swapperltt-kconsumerd24e®j®!ö«l®vn®!ö€@ŽK=¿Òo®»q®!HŽK=¿›|®~®"‡Ã®lÆ®"À-*Ï®hƒ0 ltt-kconsumerdªß®Àá®"°"æ® è®Ý"°„ð®Ý|ò®!ö‰ô®¿÷®°Ä@ ÿÿÿÿÿÿÿÿ ®ltt-kconsumerd2Jеù.% ®ltt-kconsumerd2swapper#i‡®!‰®&&Ž®€"€x*y¤®kworker/0:1.&x"¨®®[³®swapperkworker/0:1.&F¹®kworker/0:1.&Øš°B.œÀ®kworker/0:1.&swapper#€þK®!¹L®"L®¶”L®md1_raid1xl™L®swappermd1_raid13áŸL®€’€x€Øƒ0 -r¢L®€’€xmd1_raid1.¥¨L®€’€xmd1_raid10J¬L®md1_raid13T®L®€’€x€Øƒ0 -U°L®€’€xmd1_raid1.ô³L®€’€xmd1_raid1'b¸L®€’€xmd1_raid11ð½L®md1_raid1(ÂÁL®€’€xmd1_raid1'ÀÏL®€’€xmd1_raid11eÓL®md1_raid1(0ÕL®€’€xmd1_raid1­ßL®md1_raid1ÛK•£`.çL®md1_raid1swapper#1Q®!Q®&ƒQ®€’€x*{*Q®kworker/0:1.&x"3Q®_7Q®swapperkworker/0:1.&öö}¯Ýø}¯!ö:ú}¯yý}¯°Ä@ ÿÿÿÿÿÿÿÿ‘ ~¯ltt-kconsumerd2‚ËDú.~¯ltt-kconsumerd2swapper A‚¯ahci#æK‚¯ ¨M‚¯(O‚¯uhci_hcd:usb3 ®S‚¯U‚¯eth1 ÉY‚¯!\‚¯&V`‚¯€*€x*^p‚¯kworker/0:2_(x"ôy‚¯,~‚¯swapperkworker/0:2_(J„‚¯kworker/0:2_(D{C.ˆ‹‚¯kworker/0:2_(swapper#‘‚¯!‡’‚¯&:—‚¯€*€x*Šª‚¯kworker/0:2_(x"¯ö¶‚¯swapperkworker/0:2_('¼‚¯kworker/0:2_(T˜C.炯kworker/0:2_(swapper#É °¯#ž°¯!•°¯"ü°¯!°¯"…°¯#gÞâ¯!íâ¯"oòâ¯#ò¹°#áİ!ÆÇ°"yɰ!~ʰ"VÔ°#ã–H°!Y¦H°"OÂH°#T}{°#¹{°!V„{°"ý…{°!í†{°"){°#)X®°!É]®°"d_®°#†/á°#%<á°!.?á°"ê@á°!ìAá°">Já°#E±!ʱ"†±#®èF±#zòF±!zõF±"ýöF±!ê÷F±"G±#-cL±!¼dL±& iL±€ê~x*t…L±kworker/0:2_(x"ŽL±ˆ’L±swapperkworker/0:2_(U˜L±kworker/0:2_(Iá¡C.“ŸL±kworker/0:2_(swapper#_Çy±! Óy±"~Õy±’z±md1_raid1x—z±swappermd1_raid13¦z±€¢€x€èƒ0 - z±€¢€xmd1_raid1.Q¦z±€¢€xmd1_raid10Ï©z±md1_raid13Á«z±€¢€x€èƒ0 -Ô­z±€¢€xmd1_raid1.¦±z±€¢€xmd1_raid1'2¶z±€¢€xmd1_raid116»z±md1_raid1(e¿z±€¢€xmd1_raid1':Ìz±€¢€xmd1_raid11ôÏz±md1_raid1(¿Ñz±€¢€xmd1_raid1Ýz±md1_raid1NK­¶b. äz±md1_raid1swapper#…þ~±!)±&°±€¢€x*±kworker/0:2_(x"W±§±swapperkworker/0:2_(&$±kworker/0:2_(bCµC.û*±kworker/0:2_(swapper#_0±!ë1±&5±€¢€x*óG±kworker/0:2_(x"µO±ÞS±swapperkworker/0:2_(!Y±kworker/0:2_( OÇC.Ÿ_±kworker/0:2_(swapper#œ£¬±#W­¬±!c°¬±"U²¬±!N³¬±"2½¬±# €ß±!·‹ß±"Xß±#JZ²!i²"ˆj²#;:E²#bFE²!¥HE²"%JE²!KE²"UE²#ëx²! !x²"õ"x²ÁüÁõ©‹à‡îØF²ÿbÊ™HŽLòª²È7Ì ´È7È€#Lòª²#!ÿª²!v«²À«²ltt-kconsumerd2â «²ltt-kconsumerd2x"½«²!Ñ«²"F«²ú«²swapperltt-kconsumerd2B5«²89«²!öÛ;«²¾=«²!ö€@ŽK=¿?«²÷@«²!HŽK=¿šI«²ŒK«²"?w«²z«²"à-»‚«²xƒ0 ltt-kconsumerd'Œ«²md1_raid1"”«²–«²"Ð¸š«²¤œ«²Ý"Ц«²Ý¨«²!öEª«²-­«²°Ä@ ÿÿÿÿÿÿÿÿ“¹«²ltt-kconsumerd2°á1û.x«²ltt-kconsumerd2swapper#J0°²!2°²&E8°²€2€x*ÄI°²kworker/0:2_(x"¢S°²IX°²swapperkworker/0:2_(#¿]°²!_°²&µd°²€2€x*"¸y°²4°²kworker/0:2_(K6,MD.5°²kworker/0:1.&xM‡°²kworker/0:2_(UUD.;а²kworker/0:2_(kworker/0:1.&Lް²kworker/0:1.&óÔD.ñ”°²kworker/0:1.&swapper#ð×ݲ!&Þݲ"oàݲÝâ²ahci#4èâ² äéâ²jëâ²uhci_hcd:usb3 Õïâ²ñâ²eth1 Àõâ²!ß÷â²&Nûâ²€~x* ã²kworker/0:1.&x#aã²"4ã²!Kã²&!ã²€~x*"ú<ã²í@ã²swapperkworker/0:1.&ÉFã²kworker/0:1.&Œ:`XD.¾Hã²kworker/0:2_(x»Nã²kworker/0:1.&1‘`D.àPã²kworker/0:1.&kworker/0:2_(sTã²kworker/0:2_(ÁB[D.`[ã²kworker/0:2_(swapper#ë³!.·³"๳#Ûß³!ˆá³&áå³€Z~x*w³kworker/0:2_(x"ƒ ³Ó³swapperkworker/0:2_(³kworker/0:2_(CoD.“³kworker/0:2_(swapper#ÿC³#F•C³!^˜C³"ÝšC³!Ù›C³"‹§C³SD³md1_raid1x¦WD³swappermd1_raid13^D³€ª€x€ðƒ0 -y`D³€ª€xmd1_raid1.ÍfD³€ª€xmd1_raid10BjD³md1_raid13lD³€ª€x€ðƒ0 -YnD³€ª€xmd1_raid1.[rD³€ª€xmd1_raid1'ÞvD³€ª€xmd1_raid11]|D³md1_raid1(M€D³€ª€xmd1_raid1'xŽD³€ª€xmd1_raid11’D³md1_raid1(<”D³€ª€xmd1_raid1 žD³md1_raid1K®d.Z¦D³md1_raid1swapper#¾ÎH³!_ÐH³&ÑÓH³€ª€x*ÆáH³kworker/0:2_(x"êH³ÅîH³swapperkworker/0:2_(#\ôH³!ÊõH³&”øH³€ª€x*"‰ I³áI³kworker/0:2_(Ä/ŸD.ÊI³kworker/0:1.&xÇI³kworker/0:2_(%,§D.ˆI³kworker/0:2_(kworker/0:1.&BI³kworker/0:1.&{ gD.M&I³kworker/0:1.&swapper#pv³!&wv³"Nyv³#A©³# L©³!}N©³"`S©³!ST©³"`©³#èܳ!ç)ܳ"©+ܳ#›´ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ… ´È7×Ó–¶È7x€#… ´!Ø´´ltt-kconsumerd21´ltt-kconsumerd2x"Ö´!ù´"Œ)´‚-´swapperltt-kconsumerd2E´èH´!ö»K´’M´!ö€@ŽK=¿O´æP´!HŽK=¿êX´ÄZ´"z†´2‰´"ð-ç‘´€ƒ0 ltt-kconsumerdM›´md1_raid1E£´=¥´"àÒ©´¾«´Ý"à—´´ÝŒ¶´!öø´½»´°Ä@ ÿÿÿÿÿÿÿÿùÇ´ltt-kconsumerd2v­Wßû.Àдltt-kconsumerd2swapper#<4´!6´&<´€:€x*M´kworker/0:1.&x#•Y´"Ì[´!þ\´&Þa´€:€x*"Žx´}´swapperkworker/0:1.&Dƒ´kworker/0:1.&ü6SûD.™…´kworker/0:2_(xº‹´kworker/0:1.&©üE.Ž´kworker/0:1.&kworker/0:2_(á‘´kworker/0:2_(rÊD.¤˜´kworker/0:2_(swapper#ÏÙA´!3èA´"šêA´#V´t´#Ú¾t´!€Át´"9Æt´!>Çt´"9Òt´#Dœ§´!ý §´"¹¢§´# wÚ´#{Ú´!ý}Ú´"}Ú´!j€Ú´"§‹Ú´#‰S µ!ZX µ" Z µ#¤(@µ#L3@µ!È5@µ"]7@µ!M8@µ"6C@µ#Ñ sµ!³sµ"]sµ#Œâ¥µ#쥵!~ð¥µ"ò¥µ!ñò¥µ"ÿ¥µ#¾Øµ!‹Êص"2ÌØµ#£ ¶#A§ ¶!$© ¶"˪ ¶!»« ¶"¸ ¶#´w>¶!xƒ>¶"…>¶#@\q¶#cq¶!eq¶"Ÿfq¶!gq¶"rq¶<“¶uhci_hcd:usb4 î@“¶MB“¶eth0#öG“¶ ïH“¶!)K“¶½e“¶sshdf(+j“¶sshdf(x"Åu“¶z“¶swappersshdf(K‰“¶_“¶𢴀ÿp£´€ÿÞ“¶å‘“¶p£´€ÿ­““¶ɘ“¶àc´€ÿ@ “¶0”¸“¶@ù¨ª2 ù¨ª2zÆ“¶áÈ“¶𢴀ÿp£´€ÿ²Ê“¶‰Ì“¶p£´€ÿ÷Í“¶ŽÐ“¶ Eªª2ËØ“¶sshdf(²¶Ý`2K²¶Ý„M²¶öS²¶™X²¶°Ä@ ÿÿÿÿÿÿÿÿp²¶¯r²¶öƒz²¶i|²¶ö€@ŽK=¿×}²¶ç²¶HŽK=¿Íв¶ÎŒ²¶ªË²¶kβ¶à-öÖ²¶øƒ0 ltt-kconsumerdèç²¶ïé²¶ÐÕî²¶²ð²¶ÝÐiú²¶Ý=ü²¶ö¶þ²¶V³¶°Ä@ ÿÿÿÿÿÿÿÿ|³¶ltt-kconsumerd2Êþ!Þü.³¶ltt-kconsumerd2swapper#­¶¶!i¶¶&ˆ ¶¶€ú€x*"ܶ¶#–c¶¶! e¶¶&²h¶¶€ú€x*"O}¶¶ûœº¶ahci#C©º¶ öªº¶X¬º¶uhci_hcd:usb3 ÿ°º¶O²º¶eth1 綺¶!?¹º¶&R»º¶€²€x* ɺ¶kworker/0:2_(x"KѺ¶#(Öº¶!~׺¶&{Úº¶€²€x*"€íº¶»ñº¶swapperkworker/0:2_(Ä÷º¶kworker/0:2_(£/ÄòE.Îùº¶kworker/0:1.&x$»¶kworker/0:2_(o 3üE.‚»¶kworker/0:2_(kworker/0:1.&9»¶kworker/0:1.&9ZÉE.ã»¶kworker/0:1.&swapper#Õ×¶#’×¶!¶×¶"w!×¶!j"×¶"¿-×¶#=ë ·!#ù ·"þ ·#"Ò<·#Ô×<·!çÙ<·"vÛ<·!cÜ<·"æ<·# ¦o·!̱o·"ß³o·# ƒ¢·#Q¢·!:‘¢·"±’¢·!›“¢·"ý¢·#ÎaÕ·!;»&ÖB;»€J€x*>S;»kworker/0:1.&x#…Z;»"ºa;»!éb;»&Ng;»€J€x*"0|;»z€;»swapperkworker/0:1.&†;»kworker/0:1.&V4(ÙF.Šˆ;»kworker/0:2_(xÆŽ;»kworker/0:1.&IqáF.‘;»kworker/0:1.&kworker/0:2_(¥”;»kworker/0:2_(â´ªF.(œ;»kworker/0:2_(swapper#Tèh»!>õh»"Ÿ÷h»#/n»!™0n»&b4n»€"x*½Nn»kworker/0:2_(x"‡Wn»Ô[n»swapperkworker/0:2_(›an»kworker/0:2_(‘E¿F.vhn»kworker/0:2_(swapper#ÆÌ›»#¹Ð›»!¶Ó›»"Ö›»!ûÖ›»"»à›»#ð§Î»!¯¬Î»"{°Î»#Ò{¼#J…¼!Ї¼"j‰¼!oм"q”¼#qâ¼!!ä¼&Íé¼€b~x*Žû¼kworker/0:2_(x"¬¼#^ ¼!í ¼&ò¼€b~x*"b-¼41¼swapperkworker/0:2_(a7¼kworker/0:2_(½<üF.V9¼kworker/0:1.&xY?¼kworker/0:2_(G.öA¼kworker/0:2_(kworker/0:1.&­E¼kworker/0:1.&cÔçF.pL¼kworker/0:1.&swapper#ôZ4¼!6g4¼"ñi4¼Ï05¼md1_raid1x…55¼swappermd1_raid13<5¼€Â€x€„0 -¸>5¼€Â€xmd1_raid1.BE5¼€Â€xmd1_raid10I5¼md1_raid13*K5¼€Â€x€„0 -1M5¼€Â€xmd1_raid1.Q5¼€Â€xmd1_raid1'›U5¼€Â€xmd1_raid11ðZ5¼md1_raid1(ò^5¼€Â€xmd1_raid1' o5¼€Â€xmd1_raid11ºr5¼md1_raid1(yt5¼€Â€xmd1_raid1f5¼md1_raid1cQÏûj.‰5¼md1_raid1swapper#9¼!’9¼&••9¼€Â€x*½£9¼kworker/0:1.&x" ¬9¼z°9¼swapperkworker/0:1.&ÁüÁõ©‹à‡îØF²ÿbÊ™HŽe¶9¼È7Ò9ÀÈ7€e¶9¼kworker/0:1.&&úúF.ο9¼kworker/0:1.&swapper#£Ø9¼!>Ú9¼&zÝ9¼€Â€x*”ð9¼kworker/0:1.&x"hø9¼ ü9¼swapperkworker/0:1.&‘:¼kworker/0:1.&½· G.Š :¼kworker/0:1.&swapper#¡>g¼#£Bg¼!ÍEg¼³Jg¼ltt-kconsumerd2ÁNg¼ltt-kconsumerd2x"“Rg¼!ªSg¼"”]g¼ag¼swapperltt-kconsumerd2%zg¼~g¼!ö÷€g¼Ô‚g¼!ö€@ŽK=¿9„g¼(†g¼!HŽK=¿°Žg¼‡g¼"%¿g¼éÁg¼" -¶Êg¼˜ƒ0 ltt-kconsumerd Õg¼md1_raid1sÝg¼zßg¼" äg¼øåg¼Ý"7ïg¼Ý/ñg¼!öZóg¼]ög¼°Ä@ ÿÿÿÿÿÿÿÿSh¼ltt-kconsumerd2Dµuþ.7 h¼ltt-kconsumerd2swapperl¼ahci#U'l¼ 8)l¼ *l¼uhci_hcd:usb3 /l¼¸0l¼eth1 q5l¼!)8l¼& uü¾#Ñxü¾!Àzü¾"R|ü¾!?}ü¾"ˇü¾#™P/¿!V/¿"Ãq/¿#ÿ%b¿#3b¿!û5b¿f:b¿kworker/u:3px­Ab¿kworker/0:1.&x"REb¿!iFb¿"ÈPb¿¯Tb¿swapperkworker/u:3p]b¿kworker/u:3p;QvG.G_b¿kworker/u:3pkworker/0:1.&?jb¿kworker/0:1.&M ^«G.?pb¿kworker/0:1.&swapper## •¿!Q•¿"[•¿#ÄéÇ¿# íÇ¿!‚ïÇ¿"VñÇ¿!jòÇ¿"ðüÇ¿#ž¼ú¿!¤Éú¿"ZËú¿#Š™-À#u¦-À!©-À"”«-À!¥¬-À"q¶-À#Àmd1_raid1x2â>Àswappermd1_raid13Èè>À€Z€x€ ƒ0 ->ë>À€Z€xmd1_raid1.7ò>À€Z€xmd1_raid10 ö>Àmd1_raid13=ø>À€Z€x€ ƒ0 -Yú>À€Z€xmd1_raid1.øý>À€Z€xmd1_raid1'c?À€Z€xmd1_raid11X?Àmd1_raid1(T ?À€Z€xmd1_raid1'/?À€Z€xmd1_raid11¿?Àmd1_raid1(‡?À€Z€xmd1_raid1*?Àmd1_raid1ÉNHæm.‰3?Àmd1_raid1swapper}c?Àmd1_raid1xh?Àswappermd1_raid13ëm?À€Ò€x€„0 -4p?À€Ò€xmd1_raid1.Du?À€Ò€xmd1_raid10Yx?Àmd1_raid13Ðy?À€Ò€x€„0 -é{?À€Ò€xmd1_raid1.,€?À€Ò€xmd1_raid1'4„?À€Ò€xmd1_raid11lˆ?Àmd1_raid1(º‹?À€Ò€xmd1_raid1'ž•?À€Ò€xmd1_raid11™?Àmd1_raid1(íš?À€Ò€xmd1_raid1Ó¥?Àmd1_raid1öB>)n.¹­?Àmd1_raid1swapper#ÎàDÀ!xâDÀ&öåDÀ€Ê€x*"½ôDÀ# EÀ!h EÀ&áEÀ€Ê€x*üEÀltt-kconsumerd2ÎEÀltt-kconsumerd2x"G.EÀ…2EÀswapperltt-kconsumerd2Ô=EÀ­@EÀÝÛKEÀÝôMEÀö»PEÀµSEÀ°Ä@ ÿÿÿÿÿÿÿÿMgEÀltt-kconsumerd2vGŒ¼þ.ÀoEÀltt-kconsumerd2swapper#÷1IÀ!›3IÀ&7IÀ€Êx*"ÂEIÀ#á[IÀ!]IÀ&ƒ_IÀ€Êx*"bqIÀ#“ÑLÀ!"ÓLÀ&­ÕLÀ€Z€x*"®àLÀ­íLÀahci#oøLÀ +úLÀ«ûLÀuhci_hcd:usb3 IMÀ“MÀeth1 OMÀ!¸MÀ&k MÀ€Z€x*"QMÀ# PÀ!MPÀ&iPÀ€Ò€x*·PÀkworker/0:1.&x"×PÀ<PÀswapperkworker/0:1.&l"PÀkworker/0:1.&~ܽG.°)PÀkworker/0:1.&swapper#<€`À!r†`À"<‰`À#4S“À#^“À!Æ`“À"Ýd“À!Íe“À"q“À#§0ÆÀ! ?ÆÀ"¡@ÆÀ#ËùÀ#ÖùÀ!ÑùÀ"]ùÀ!JùÀ"¿*ùÀ#®é+Á!Sö+Á"ø+Á#eÇ^Á!´Ó^Á"=Õ^Á#.­‘Á#²‘Á! ´‘Á"‰µ‘Á!y¶‘Á"ø¾‘Á#€ÄÁ!ÄÁ"¡ÄÁ#¡f÷Á#åj÷Á!òl÷Á"un÷Á!bo÷Á"íw÷Á#C*Â!G*Â"%I*Â#r]Â#_#]Â!´%]Â"v']Â!x(]Â" 1]Â#ÇüÂ!bÂ"úÂ#.ÚÂÂ#zßÂÂ!ØáÂÂ"‚ãÂÂ!‡äÂÂ"ÓìÂÂ#­õÂ!ǸõÂ"wºõÂ#»‰(Ã#à”(Ã!Ý—(Ã"Š™(Ã!Œš(Ã"q£(Ã#šf[Ã!1u[Ã"Þv[Õ\Ãmd1_raid1x$\Ãswappermd1_raid13û+\Àbx€¨‚0 -e.\Àbxmd1_raid1.¬5\Àbxmd1_raid109\Ãmd1_raid13Ž;\Àbx€¨‚0 -Â=\Àbxmd1_raid1.šA\Àbxmd1_raid1'bF\Àbxmd1_raid11 M\Ãmd1_raid1(PR\Àbxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÒ`\ÃÈ7‡•ZÄÈ7€€'Ò`\Àbxmd1_raid11€g\Ãmd1_raid1(#j\Àbxmd1_raid15v\Ãmd1_raid1XFn.•‚\Ãmd1_raid1swapper#×¹`Ã!x»`Ã#%À`Ã&4Ã`Àbx*kÔ`Ãkworker/0:1.&x"ÿÜ`Ã!OÞ`Ã&â`Àbx*"ùú`ÃCÿ`Ãswapperkworker/0:1.&jaÃkworker/0:1.&à1¼ïG.PaÃkworker/0:2_(x³ aÃkworker/0:1.&O øG.ØaÃkworker/0:1.&kworker/0:2_(zaÃkworker/0:2_(îz§G.¦aÃkworker/0:2_(swapper#·EŽÃ#¡PŽÃ!qSŽÃHXŽÃltt-kconsumerd2D\ŽÃltt-kconsumerd2x"Ä`ŽÃ!ðaŽÃ"ŒkŽÃoŽÃswapperltt-kconsumerd2zŽŽÃè’ŽÃ!öµ•ŽÃ˜—ŽÃ!ö€@ŽK=¿ý˜ŽÃ㚎Ã!HŽK=¿º¥ŽÃš§ŽÃ"%ÝŽÃÝߎÃ"@-òèŽÃ¨ƒ0 ltt-kconsumerd–óŽÃmd1_raid1KüŽÃIþŽÃ"0ÀþÃÝ"0ÉÃݾÃ!öéà ðÄ@ ÿÿÿÿÿÿÿÿ‹"Ãltt-kconsumerd2ÏÆ[ƒÿ.L+Ãltt-kconsumerd2swapper#^f“Ã!)h“Ã&kn“Àb€x*s~“Ãkworker/0:2_(x"Õˆ“ÃX“Ãswapperkworker/0:2_(L““Ãkworker/0:2_(Þ9~H.{š“Ãkworker/0:2_(swapper#Û¥“Ã!C§“Ã&¿¬“Àb€x*£¿“Ãkworker/0:2_(x"dÈ“ÃÌ“Ãswapperkworker/0:2_(Ò“Ãkworker/0:2_(ü5‘H.ÀØ“Ãkworker/0:2_(swapper#+ÁÃ!1ÁÃ"É3ÁÃ#pþóÃ#EôÃ!ô ôÃ"4ôÃ!'ôÃ",ôÃ#`PùÃ!×QùÃ&ƒWùÀj~x*sjùÃkworker/0:2_(x"dsùÃÕwùÃswapperkworker/0:2_(#Ì}ùÃ!ùÃ&„ƒùÀj~x*"žùÃd£ùÃkworker/0:2_(b:—ËH.Y¥ùÃkworker/0:1.&xh«ùÃkworker/0:2_("¹ÓH.®ùÃkworker/0:2_(kworker/0:1.&ì±ùÃkworker/0:1.&{ÖnH.œ¹ùÃkworker/0:1.&swapper#;ç&Ä!Cî&Ä"¿ð&Äðò+Äahci#Hþ+Ä ïÿ+Äi,Äuhci_hcd:usb3 ì,Ä!,Äeth1 ï ,Ä! ,Ä&>,Ä€Òx*¬!,Äkworker/0:1.&x"7*,Äx.,Äswapperkworker/0:1.& 4,Äkworker/0:1.&e;‚H.à;,Äkworker/0:1.&swapper#J,Ä!L,Ä&•P,Ä€Òx*Xi,Äkworker/0:1.&x"=r,Ä„v,Äswapperkworker/0:1.&Ù{,Äkworker/0:1.&J…•H.´‚,Äkworker/0:1.&swapper#6¾YÄ#/ÂYÄ!_ÅYÄ"çÇYÄ!éÈYÄ"&ÔYÄyZÄmd1_raid1x·}ZÄswappermd1_raid13„ZÄ€Ú€x€ „0 -†ZÄ€Ú€xmd1_raid1.ðŒZÄ€Ú€xmd1_raid10_ZÄmd1_raid13Ã’ZÄ€Ú€x€ „0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽt–ZÄÈ7qˆÇÈ7X€-t–ZÄ€Ú€xmd1_raid1.›ZÄ€Ú€xmd1_raid1'¡ŸZÄ€Ú€xmd1_raid11„¤ZÄmd1_raid1(q¨ZÄ€Ú€xmd1_raid1'ø·ZÄ€Ú€xmd1_raid11Ü»ZÄmd1_raid1(ŽZÄ€Ú€xmd1_raid1•ÉZÄmd1_raid1Q—p.2ÒZÄmd1_raid1swapper•[Ämd1_raid1xW [Äswappermd1_raid13”[Ä€j€x€°ƒ0 -Î[Ä€j€xmd1_raid1.G[Ä€j€xmd1_raid10V[Ämd1_raid136[Ä€j€x€°ƒ0 -7[Ä€j€xmd1_raid1.Ì"[Ä€j€xmd1_raid1'"'[Ä€j€xmd1_raid11E+[Ämd1_raid1(‡.[Ä€j€xmd1_raid1' 9[Ä€j€xmd1_raid11…<[Ämd1_raid1(Y>[Ä€j€xmd1_raid1çI[Ämd1_raid1*E=Üp.£Q[Ämd1_raid1swapper#š{`Ä!P}`Ä&€`Ä€Ú€x*"G”`Ä#×™dÄ!'›dÄ&ŸdÄ€j€x*é«dÄkworker/0:1.&x"·³dÄò·dÄswapperkworker/0:1.&¼½dÄkworker/0:1.&¥*¨H.ÄÄdÄkworker/0:1.&swapper#•ÏdÄ!ÑdÄ&ÔdÄ€j€x*mådÄkworker/0:1.&x")ídÄgñdÄswapperkworker/0:1.&¶ödÄkworker/0:1.&ú$ºH.jýdÄkworker/0:1.&swapper#7 ŒÄ!Ú¥ŒÄZªŒÄkworker/u:3px"e®ŒÄñ²ŒÄswapperkworker/u:3pT¿ŒÄkworker/u:3p f~H.YÉŒÄkworker/u:3pswapper#.z¿Ä#R}¿Ä!Ö€¿Ä"¹…¿Ä!»†¿Ä"ÿÄ#lWòÄ!”\òÄ"e^òÄ#d+%Å#-5%Å!¬7%Å"/9%Å!":%Å"ˆC%Å_ç%Åmd1_raid1x<ì%Åswappermd1_raid13‰ó%Å€*x€p‚0 -Ûõ%Å€*xmd1_raid1.xû%Å€*xmd1_raid10Ãþ%Åmd1_raid13l&Å€*x€p‚0 -Ž&Å€*xmd1_raid1.H&Å€*xmd1_raid1'µ &Å€*xmd1_raid11:&Åmd1_raid1(ÿ&Å€*xmd1_raid1'`%&Å€*xmd1_raid11)&Åmd1_raid1(z,&Å€*xmd1_raid1£9&Åmd1_raid1KTˆ0q.:B&Åmd1_raid1swapper#˜o*Å!Bq*Å&Àt*Å€*x*„*Åkworker/0:1.&x"ÌŒ*Å‘*Åswapperkworker/0:1.&#ø–*Å!Z˜*Å&i›*Å€*x*" ²*ÅD·*Åkworker/0:1.&ó3îH.B¹*Åkworker/0:2_(xÿ*Åkworker/0:1.&š±öH.NÂ*Åkworker/0:1.&kworker/0:2_(;Æ*Åkworker/0:2_(œUÚH.×Ì*Åkworker/0:2_(swapper#YXÅ!êXÅ"XÅ#ÜãŠÅ!VïŠÅ"*ôŠÅ#Ó˽Å#ÞϽÅ!ÖѽÅ"‰Ó½Å!|Ô½Å"EÞ½Å#~ðÅ! «ðÅ"½¬ðÅ#Tz#Æ!t„#Æ"®†#Æ#tYVÆ#ÛeVÆ!HhVÆ"æiVÆ!èjVÆ"{tVÆ#V5‰Æ!@‰Æ"ÔA‰Æ#M¼Æ#â¼Æ! ¼Æ"¢!¼Æ!¡"¼Æ".¼Æ#ëøîÆ!1þîÆ"ØÿîÆ#4Ó!Ç#–×!Ç!‚Ù!Ç"Û!Ç!Ü!Ç"1å!Ç#ý°TÇ!L¶TÇ"í·TÇ#„‡Ç! ‡Ç"(“‡Çg_ˆÇmd1_raid1xGdˆÇswappermd1_raid13älˆÇ€ x€P„0 ÁüÁõ©‹à‡îØF²ÿbÊ™HŽŸoˆÇÈ75÷·ÉÈ7ð~€-ŸoˆÇ€ xmd1_raid1.£wˆÇ€ xmd1_raid10{ˆÇmd1_raid13Ü}ˆÇ€ x€P„0 -àˆÇ€ xmd1_raid1.߃ˆÇ€ xmd1_raid1'¹ˆˆÇ€ xmd1_raid11/ŽˆÇmd1_raid1(©’ˆÇ€ xmd1_raid1'5¦ˆÇ€ xmd1_raid11‘ªˆÇmd1_raid1('®ˆÇ€ xmd1_raid1ø»ˆÇmd1_raid1ã^kq.¼ÇˆÇmd1_raid1swapper ‰Çmd1_raid1x,‰Çswappermd1_raid13ʉǀr€x€¸ƒ0 -‰Ç€r€xmd1_raid1. ‰Ç€r€xmd1_raid10”$‰Çmd1_raid13d'‰Ç€r€x€¸ƒ0 -w)‰Ç€r€xmd1_raid1..-‰Ç€r€xmd1_raid1'Æ1‰Ç€r€xmd1_raid11þ5‰Çmd1_raid1(X9‰Ç€r€xmd1_raid1'†D‰Ç€r€xmd1_raid11æG‰Çmd1_raid1(ÀI‰Ç€r€xmd1_raid1ìV‰Çmd1_raid14MŸÜq.Ø^‰Çmd1_raid1swapperqŽÇahci#€#ŽÇ 6%ŽÇ¡&ŽÇuhci_hcd:usb3 +ŽÇP,ŽÇeth1 ú0ŽÇ!¦3ŽÇ&‚6ŽÇ€ x*"…HŽÇ##_ŽÇ!j`ŽÇ&³bŽÇ€ x*"0|ŽÇ#˜£’Ç!Ö¤’Ç&‚§’Ç€r€x*€¾’Çkworker/0:2_(x"9ƒǧʒÇswapperkworker/0:2_(ÔÐ’Çkworker/0:2_(A–íH.2Ø’Çkworker/0:2_(swapper#kºÇ#»oºÇ!yrºÇ"auºÇ!`vºÇ"¤€ºÇ#'?íÇ!RJíÇ"÷MíÇ#5* È#ì- È!Ò/ È"p1 È!Z2 È"ñ= È#„÷RÈ!ŒSÈ"!SÈ#:Ô…È#Îà…È!Ìâ…È"Oä…È!9å…È"·î…È#‹¹¸È!⿸È"’Á¸È#÷ëÈ#ú™ëÈ!OœëÈ" žëÈ!"ŸëÈ"S§ëÈèJìÈmd1_raid1xPìÈswappermd1_raid13‚YìÈ€*~x€p0 -ï[ìÈ€*~xmd1_raid1.EcìÈ€*~xmd1_raid10ºfìÈmd1_raid13jìÈ€*~x€p0 --lìÈ€*~xmd1_raid1.{oìÈ€*~xmd1_raid1'‹tìÈ€*~xmd1_raid11jzìÈmd1_raid1(JìÈ€*~xmd1_raid1'¦ŒìÈ€*~xmd1_raid11JìÈmd1_raid1()“ìÈ€*~xmd1_raid1‰ŸìÈmd1_raid1²VQ3r..©ìÈmd1_raid1swapper#¥ÓðÈ!7ÕðÈ&ÇØðÈ€*~x*pêðÈkworker/0:2_(x"+óðÈf÷ðÈswapperkworker/0:2_(#ÜüðÈ!#þðÈ&JñÈ€*~x*"3ñÈ ñÈkworker/0:2_(ð6†$I.›"ñÈkworker/0:1.&xò(ñÈkworker/0:2_(… -I.È+ñÈkworker/0:2_(kworker/0:1.&Ä/ñÈkworker/0:1.&ÒƒýH.~6ñÈkworker/0:1.&swapper#lÉ!ñyÉ"U|É# HQÉ#«SQÉ!QVQÉ"ËZQÉ!Í[QÉ"ÀeQÉ#$„É!b2„É"u4„É#Û ·É#• ·É!S·É"·É!·É"ˆ·É5Ê·Émd1_raid1xñηÉswappermd1_raid13HÕ·É€â€x€(„0 -µ×·É€â€xmd1_raid1.sÝ·É€â€xmd1_raid10¬à·Émd1_raid13Jâ·É€â€x€(„0 -fä·É€â€xmd1_raid1.Õç·É€â€xmd1_raid1'õë·É€â€xmd1_raid11 ñ·Émd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ ö·ÉÈ7+ƒ~ÍÈ7è€( ö·É€â€xmd1_raid1'o¸É€â€xmd1_raid11¡ ¸Émd1_raid1(¸ɀâ€xmd1_raid1!¸Émd1_raid1•Ræ…r.¯$¸Émd1_raid1swapper#ÐM¼É!_O¼É&øR¼É€â€x*a¼Ékworker/0:1.&x"Ûi¼ÉOn¼Éswapperkworker/0:1.&.t¼Ékworker/0:1.&† I.H{¼Ékworker/0:1.&swapper#U¿É!’V¿É&éY¿É€â€x*Òm¿Ékworker/0:1.&x"‘u¿Éz¿Éswapperkworker/0:1.&¿¿Ékworker/0:1.&¥®#I.‹†¿Ékworker/0:1.&swapper#àéÉ!ÿíéÉ÷òéÉltt-kconsumerd2çöéÉltt-kconsumerd2x"õúéÉLþéÉswapperltt-kconsumerd2¦êÉÀêÉ!öGêÉ êÉ!ö€@ŽK=¿¶!êÉê#êÉ!HŽK=¿,êÉæ-êÉ"ËiêɉlêÉ"p-¶uêÉ@…0 ltt-kconsumerd€êÉmd1_raid1 ˆêɪŠêÉ"`WêÉX‘êÉÝ"`­œêÉÝ™žêÉ!öÇ êÉÙ£êɰÄ@ ÿÿÿÿÿÿÿÿB°êÉltt-kconsumerd2ºm=/ñ»êÉltt-kconsumerd2swapperÚïÉahci# ïÉ Ö ïÉnïÉuhci_hcd:usb3 ôïÉwïÉeth1 0ïÉ!ñïÉ&„ ïÉ€úx*­0ïÉkworker/0:1.&x":ïÉ ?ïÉswapperkworker/0:1.&wEïÉkworker/0:1.&Àn9I.'MïÉkworker/0:1.&swapper#ÜRïÉ!GTïÉ&ŠYïÉ€úx*ÔlïÉkworker/0:1.&x"AuïÉUyïÉswapperkworker/0:1.&¹~ïÉkworker/0:1.&Æ4LI.s…ïÉkworker/0:1.&swapper#VÆÊ#4ÊÊ!LÍÊ"›ÏÊ!¦ÐÊ"ºÚÊ#Û™OÊ!Ò¥OÊ"èªOÊ#’t‚Ê#Vƒ‚Ê!-…‚Ê"³†‚Ê!£‡‚Ê"ì’‚Ê#³RµÊ!Ó]µÊ"³_µÊ#h.èÊ#E7èÊ!Ó9èÊ"I;èÊ!9<èÊ"IGèÊ#* Ë!ÒË"‚Ë#ÌèMË#¢õMË!øMË"†ùMË!vúMË"ðNË#Í€Ë!„Ó€Ë"Õ€Ë#Ï¡³Ë!Ú®³Ë"Õ°³Ë#æË#à‰æË!”ŒæË"ŽæË! æË"ð™æË#a[Ì!riÌ"²kÌ#8LÌ#ØBLÌ!ûELÌ"rGLÌ!•HLÌ"ÓRLÌ#ìÌ!O!Ì"G#Ì#Åô±Ì#n²Ì!I²Ì"í²Ì!Ú²Ì"²Ì#ºÎäÌ!æÙäÌ"ÛÛäÌ#QµÍ#5¹Í!$»Í"˜¼Í!ˆ½Í"™ÇÍ#CˆJÍ!_”JÍ"–JÍ#‚f}Í#©p}Í!Is}Í"Ëu}Í!Ív}Í"‚}ÍT-~Ímd1_raid1x.2~Íswappermd1_raid13Ü8~Í€ê€x€0„0 -d;~Í€ê€xmd1_raid1.ÓA~Í€ê€xmd1_raid10]E~Ímd1_raid13IG~Í€ê€x€0„0 -ŒI~Í€ê€xmd1_raid1.=M~Í€ê€xmd1_raid1'ØQ~Í€ê€xmd1_raid11W~Ímd1_raid1(S[~Í€ê€xmd1_raid1'šh~Í€ê€xmd1_raid11Zl~Ímd1_raid1(1n~Í€ê€xmd1_raid1ny~Ímd1_raid17M37t.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÿ~ÍÈ7,)yÐÈ7€ÿ~Ímd1_raid1swapper#š”‚Í! –‚Í&¤™‚Í€ê€x*ð§‚Íkworker/0:1.&x"o°‚Í×´‚Íswapperkworker/0:1.&Œº‚Íkworker/0:1.&hœ_I.‘Á‚Íkworker/0:1.&swapper#+Ç‚Í!™È‚Í&ÿ˂̀ê€x*Eß‚Íkworker/0:1.&x".ç‚Íië‚Íswapperkworker/0:1.&¾ð‚Íkworker/0:1.&9ÕqI.]÷‚Íkworker/0:1.&swapper#rM°Í!'U°ÍËY°Íltt-kconsumerd2÷]°Íltt-kconsumerd2x"Þa°ÍÈe°Íswapperltt-kconsumerd2ì}°Íš°Í!öX„°Í/†°Í!ö€@ŽK=¿…‡°Ít‰°Í!HŽK=¿‘°Íg“°Í"yưÍ(ɰÍ"€-%Ò°ÍH…0 ltt-kconsumerdåÛ°Ímd1_raid1ä°Íóå°Í"pXê°Í ì°ÍÝ"pÀô°Íݵö°Í!öÑø°ÍÝû°Í°Ä@ ÿÿÿÿÿÿÿÿ¿±Íltt-kconsumerd2¯ªè/›±Íltt-kconsumerd2swapper#éBµÍ!EµÍ&JµÍ€‚x*PYµÍkworker/0:1.&x"©cµÍÿgµÍswapperkworker/0:1.&ümµÍkworker/0:1.&x”âI.=uµÍkworker/0:1.&swapper#ГµÍ!G•µÍ&ô™µÍ€‚x*ó¬µÍkworker/0:1.&x"¢µµÍ×¹µÍswapperkworker/0:1.&)¿µÍkworker/0:1.&üõI.ìŵÍkworker/0:1.&swapper#x'ãÍ#…,ãÍ!£/ãÍ"æ1ãÍ!ú2ãÍ"">ãÍ#ªÎ!S Î"C(Î#ùàHÎ#­äHÎ!æHÎ"èHÎ!éHÎ"XôHÎ#=¶{Î!vÂ{Î"JÄ{Î#á›®Î#SŸ®Î!<¡®Î"¹¢®Î!¨£®Î"Ú­®Î#únáÎ!¤}áÎ"6áÎ#³LÏ#XÏ!ŽZÏ"\Ï! ]Ï"|eÏ#S…Ï! ‡Ï&t‹Ï€jx*ÿœÏkworker/0:1.&x"}¦Ï«Ïswapperkworker/0:1.&ç±Ïahci# ¾Ï пÏ\ÁÏuhci_hcd:usb3 úÅÏ­ÇÏeth1 `ÌÏ!ÜÎÏ&ÒÏ€jx*"€ëÏñÏkworker/0:1.&óTƒJJ.óÏkworker/0:2_(x*ùÏkworker/0:1.&mðRJ.üÏkworker/0:1.&kworker/0:2_(ÕÿÏkworker/0:2_(¨ÄÓI.RÏkworker/0:2_(swapper#.+GÏ!|7GÏ"×9GÏ#…zÏ#²zÏ!ËzÏ"¥zÏ!¤zÏ"1$zÏ#…ê¬Ï!²ð¬Ï"qò¬Ï#ãÆßÏ#¨ËßÏ!iÎßÏ" ÐßÏ!ÑßÏ"’ÛßÏ#G§Ð!Q¬Ð"à­Ð#ŸÐ!Ð#·Ð&XЀÚx*N/Ðkworker/0:2_(x"'8Ð!S9Ð&>ЀÚx*"YÐÈ]Ðswapperkworker/0:2_(¿cÐkworker/0:2_([5 J.¥eÐkworker/0:1.&x¢kÐkworker/0:2_( ,J.nÐkworker/0:2_(kworker/0:1.&rqÐkworker/0:1.&ñáXJ.ˆyÐkworker/0:1.&swapper##‚EÐ#}…EÐ!ˆEÐ"¢ŠEÐ!ª‹EÐ"u–EÐ#cVxÐ!`xÐ"ìdxÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽô'yÐÈ7‹DÐÈ7X~€ô'yÐmd1_raid1x¥.yÐswappermd1_raid13>5yЀò€x€8„0 -®7yЀò€xmd1_raid1.>yЀò€xmd1_raid10˜AyÐmd1_raid13™CyЀò€x€8„0 -EyЀò€xmd1_raid1.6IyЀò€xmd1_raid1'˜MyЀò€xmd1_raid112SyÐmd1_raid1(0XyЀò€xmd1_raid1'UfyЀò€xmd1_raid11`jyÐmd1_raid1( myЀò€xmd1_raid1yyÐmd1_raid1GR.v.R„yÐmd1_raid1swapper<±yÐmd1_raid1x¶yÐswappermd1_raid13z»yЀx€X„0 -«½yЀxmd1_raid1.ÐÂyЀxmd1_raid10âÅyÐmd1_raid13zÇyЀx€X„0 -“ÉyЀxmd1_raid1.þÍyЀxmd1_raid1'îÑyЀxmd1_raid11kÖyÐmd1_raid1(ªÙyЀxmd1_raid1'ßæyЀxmd1_raid11ŠêyÐmd1_raid1(yìyЀxmd1_raid1møyÐmd1_raid1ÙGòuv.VzÐmd1_raid1swapper«;zÐmd1_raid1xI@zÐswappermd1_raid13¤EzЀ ‚x€P…0 -ØGzЀ ‚xmd1_raid1.ñLzЀ ‚xmd1_raid10¸OzÐmd1_raid13qQzЀ ‚x€P…0 -ŸSzЀ ‚xmd1_raid1.ŒWzЀ ‚xmd1_raid1'Ð[zЀ ‚xmd1_raid11_`zÐmd1_raid1(ŒczЀ ‚xmd1_raid1'ËrzЀ ‚xmd1_raid11%vzÐmd1_raid1(çwzЀ ‚xmd1_raid1m…zÐmd1_raid1UJGÀv.½ŒzÐmd1_raid1swapper¯²zÐmd1_raid1xq·zÐswappermd1_raid13À¼zЀú‚x€@†0 -ý¾zЀú‚xmd1_raid1.¿ÃzЀú‚xmd1_raid10ÈÆzÐmd1_raid13~ÈzЀú‚x€@†0 -—ÊzЀú‚xmd1_raid1.ÓÍzЀú‚xmd1_raid1'½ÑzЀú‚xmd1_raid11ìÕzÐmd1_raid1(ÙzЀú‚xmd1_raid1'—åzЀú‚xmd1_raid11åèzÐmd1_raid1(³êzЀú‚xmd1_raid1özÐmd1_raid1DHw.ÃýzÐmd1_raid1swapper#O„Ð!ÌP„Ð&nT„Ѐò€x*" c„Ð#%v„Ð!ow„Ð&3z„Ѐò€x*…„Ðltt-kconsumerd2“‰„Ðltt-kconsumerd2x"З„Ð2œ„Ðswapperltt-kconsumerd2Y¨„Ð#«„ÐÝ`Rµ„ÐÝY·„Ðöº„ÐƼ„аÄ@ ÿÿÿÿÿÿÿÿ"Í„Ðltt-kconsumerd2žCº+/VÕ„Ðltt-kconsumerd2swapper#…®ˆÐ!2°ˆÐ&ѳˆÐ€x*"õÁˆÐ#àÖˆÐ!0؈Ð&ýڈЀx*"´êˆÐ®â‹Ðahci#î‹Ð ¿ï‹Ðñ‹Ðuhci_hcd:usb3 ¡õ‹ÐÙö‹Ðeth1 Œû‹Ð!Éý‹Ð&Žÿ‹Ð€ ‚x*" ŒÐ#ŒÐ!CŒÐ&nŒÐ€ ‚x*"K*ŒÐ#r!Ð!¿"Ð&ê$Ѐú‚x*\7Ðkworker/0:1.&x"¬>ÐÁüÁõ©‹à‡îØF²ÿbÊ™HŽeCÐÈ7F^×ÔÈ7È€eCÐswapperkworker/0:1.&ÆKÐkworker/0:1.&B#nJ.mSÐkworker/0:1.&swapper#u=«Ð#‰A«Ð!bD«ÐŽH«Ðltt-kconsumerd2x"™L«Ð!¶M«Ð"xX«Ð \«Ðswapperltt-kconsumerd2šo«Ð-s«Ð!ö²u«Ð}w«Ð!ö€@ŽK=¿Üx«ÐËz«Ð!HŽK=¿…«Ðõ†«Ð"K²«Ðµ«Ð" -¯½«ÐX…0 ltt-kconsumerdTÇ«Ðmd1_raid1²Ï«ÐÈÑ«Ð"ŸÖ«Ð‹Ø«ÐÝ"¦á«Ðݪã«Ð!öÀå«Ðâç«ÐöNñ«Ðó«Ðö€@ŽK=¿ô«Ðyö«ÐHŽK=¿Ÿý«Ðsÿ«ÐX/¬Ð2¬Ðp-99¬Ðx‚0 ltt-kconsumerdtH¬ÐáJ¬Ð`O¬ÐÞP¬ÐÝ`U[¬ÐÝ_]¬Ðöð_¬Ðºb¬Ð°Ä@ ÿÿÿÿÿÿÿÿ8o¬Ðltt-kconsumerd2 'ÚR/ x¬Ðltt-kconsumerd2swapper#˜‡±Ð!–‰±Ð&r±Ð€‚x*"4 ±Ð#謱Ð!J®±Ð&L²±Ð€‚x*"ïñÐ#VÚµÐ!ÁÛµÐ& ÞµÐ€2x*?ëµÐkworker/0:1.&x" óµÐ;øµÐswapperkworker/0:1.&#µÿµÐ!¶Ð&ζЀ2x*³¶Ðkworker/0:1.&7)aK.ä¶Ðkworker/0:2_(x"÷¶ÐU#¶Ðkworker/0:1.&óqK.7&¶Ðkworker/0:1.&kworker/0:2_(*¶Ðkworker/0:2_(´Ž>K.X1¶Ðkworker/0:2_(swapper#²ÞÐ!Ð ÞÐ"7#ÞÐ#¼íÑ#NöÑ!áùÑ"lÿÑ!nÑ" Ñ# ÓCÑ! ÙCÑ"ÛCÑ#I°vÑ#õµvÑ!_¸vÑ"0ºvÑ!2»vÑ"2ÄvÑ#¨‚©Ñ!Ë©Ñ"ù©Ñ#ˆlÜÑ# pÜÑ!rÜÑ"«sÜÑ!˜tÜÑ"S}ÜÑ#DÒ!`IÒ"þJÒ#!BÒ#š%BÒ!ì'BÒ"u)BÒ!e*BÒ"ù2BÒ#1uÒ! uÒ"ëuÒ#Û§Ò#0ß§Ò!¦á§Ò"\ã§Ò!^ä§Ò"sí§Ò#u¶ÚÒ!-¼ÚÒ"Ú½ÚÒ#`— Ó#+œ Ó!ž Ó"…Ÿ Ó!r  Ó"ÿ¨ Ó#Ji@Ó!þs@Ó"äu@Ó#kOsÓ#œTsÓ!©VsÓ")XsÓ!YsÓ"[asÓ#l+¦Ó!Ô/¦Ó"l1¦Ó#ËÙÓ#Ô ÙÓ!ÀÙÓ"|ÙÓ!{ÙÓ"ýÙÓ#`Ý Ô!Hê Ô"jì Ô#tÂ>Ô#£Æ>Ô!¶È>Ô"`Ê>Ô!bË>Ô"hÔ>Ô#½˜qÔ!ó¢qÔ"—¤qÔ¢;xÔahci#ÂExÔ GxÔ IxÔuhci_hcd:usb3 ®MxÔOxÔeth1 áSxÔ!*VxÔ&ÆYxÔ€ƒx*"lxÔ# ¤xÔ!Y¥xÔ&y©xÔ€ƒx*"%ÁxÔ#„÷|Ô!ãø|Ô&*ü|Ô€2~x*ê}Ôkworker/0:2_(x"ý}Ôƒ!}Ôswapperkworker/0:2_(ž'}Ôkworker/0:2_(4ÂRK./}Ôkworker/0:2_(swapper#t¤Ô#7¤Ô!1‚¤Ô"Ô!ô…¤Ô"8¤Ô#R×ÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽ]×ÔÈ7Üì ØÈ7€!]×Ôzi×Ôltt-kconsumerd2Œn×Ôltt-kconsumerd2x"s×ÔZv×Ôswapperltt-kconsumerd2ÖŸ×Ô—¥×Ô!ö:¨×Ô ª×Ô!ö€@ŽK=¿d«×ÔG­×Ô!HŽK=¿n¹×ÔE»×Ô"cñ×Ôô×Ô"°-—ü×Ô`…0 ltt-kconsumerddØÔkØÔ" ôØÔÈØÔÝ" . ØÔÝ&"ØÔ!öT$ØÔ`'ØÔ°Ä@ ÿÿÿÿÿÿÿÿ~3ØÔltt-kconsumerd2÷ÅÑ/9?ØÔltt-kconsumerd2swapper#lÜÔ!!nÜÔ#)tÜÔ&hwÜÔ€‚x*$ˆÜÔkworker/0:2_(x"’ÜÔ!L“ÜÔ&k˜ÜÔ€‚x*"¯ÜÔž³ÜÔswapperkworker/0:2_(¤¹ÜÔkworker/0:2_(U2&0L.¨»ÜÔkworker/0:1.&xðÁÜÔkworker/0:2_(…«8L.'ÄÜÔkworker/0:2_(kworker/0:1.&ÆÇÜÔkworker/0:1.&Ó¤L.4ÏÜÔkworker/0:1.&swapper#C8 Õ#Ó; Õ!²> Õ"%A Õ!0B Õ"µM Õ#D =Õ!ˆ=Õ"S=Õ#€íoÕ#|ñoÕ!nóoÕ"3õoÕ!5öoÕ"åpÕ#¥Ì¢Õ!6Ò¢Õ"ïÓ¢Õ#y¢ÕÕ#«ÕÕ!±°ÕÕ"v²ÕÕ!x³ÕÕ"ý»ÕÕ#Î|Ö!¹†Ö"cˆÖ#”É Ö!8Ë Ö&ôÏ Ö€úƒx*ñá Ökworker/0:1.&x"Bë Ö›ï Öswapperkworker/0:1.&jõ Ökworker/0:1.&ÄhL.™ü Ökworker/0:1.&swapper#ÞÖ!4Ö&Î!Ö€úƒx*;Ökworker/0:1.&x"DÖtHÖswapperkworker/0:1.&ÌMÖkworker/0:1.&Œô+L.­TÖkworker/0:1.&swapper#¿b;Ö#Lf;Ö!Ri;Ö"Ôk;Ö!Ðl;Ö"0v;Ö#ã?nÖ!eEnÖ"îInÖ#ã¡Ö#€ ¡Ö!o"¡Ö"û#¡Ö!è$¡Ö".¡Ö#QðÓÖ!ŠýÓÖ"1ÿÓÖ#Í×#tØ×!ÕÚ×"RÜ×!?Ý×"çæ×#Ñ©9×!´9×"´µ9×##Žl×#•‘l×!„“l×"(•l×!-–l×"Ížl×#‚dŸ×!ÀlŸ×"0oŸ×#îBÒ×#´LÒ×!uOÒ×"QÒ×!RÒ×"mZÒ×#QØ!€(Ø"i*ØRìØmd1_raid1xçðØswappermd1_raid13¡÷Ø€ ƒx€P†0 -PúØ€ ƒxmd1_raid1.õØ€ ƒxmd1_raid10ÊØmd1_raid13ûØ€ ƒx€P†0 - Ø€ ƒxmd1_raid1.¡ Ø€ ƒxmd1_raid1'0Ø€ ƒxmd1_raid11–Ømd1_raid1(ÐØ€ ƒxmd1_raid1'Ò,Ø€ ƒxmd1_raid11é0Ømd1_raid1(å3Ø€ ƒxmd1_raid1¶AØmd1_raid1RVN'{.JØmd1_raid1swapper#5‚ Ø!åƒ Ø&f‡ Ø€ ƒx*£• Økworker/0:1.&x¤ Øahci#Z¨ Ø Cª ØØ« Øuhci_hcd:usb3 m° Øð± Øeth1 ¬¶ Ø"¡¾ Ø!»¿ Ø&æÁ Ø€ ƒx*"¶Ö ØÁÚ Øswapperkworker/0:1.&Äà Økworker/0:1.&óKçwL.×â Økworker/0:2_(xé Økworker/0:1.&aH€L.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ¤ë ØÈ7®—ÜÈ7À€¤ë Økworker/0:1.&kworker/0:2_(€ñ Økworker/0:2_(‹6AL.Óø Økworker/0:2_(swapper#K8Ø#§ 8Ø!È 8Ø"Õ8Ø!ã8Ø"Ä"8Ø]è8Ømd1_raid1xˆí8Øswappermd1_raid13îö8Ø€"‚x€h…0 -Xù8Ø€"‚xmd1_raid1.ûþ8Ø€"‚xmd1_raid10ß9Ømd1_raid13ú9Ø€"‚x€h…0 -û9Ø€"‚xmd1_raid1.X 9Ø€"‚xmd1_raid1'J9Ø€"‚xmd1_raid11!9Ømd1_raid1(Ÿ9Ø€"‚xmd1_raid1'$9Ø€"‚xmd1_raid11œ'9Ømd1_raid1(g)9Ø€"‚xmd1_raid1D79Ømd1_raid1Qix{.Ì?9Ømd1_raid1swapperÕi9Ømd1_raid1xîn9Øswappermd1_raid13w9Ø€âx€(ƒ0 -Jy9Ø€âxmd1_raid1.“~9Ø€âxmd1_raid10É9Ømd1_raid13E„9Ø€âx€(ƒ0 -‹†9Ø€âxmd1_raid1.Ö‰9Ø€âxmd1_raid1'ƒŽ9Ø€âxmd1_raid11â’9Ømd1_raid1(–9Ø€âxmd1_raid1'|¡9Ø€âxmd1_raid11è¤9Ømd1_raid1(Œ¦9Ø€âxmd1_raid1ð±9Ømd1_raid1FJ¯Â{.º9Ømd1_raid1swapper#͉>Ø!w‹>Ø#>Ø& “>Ø€"‚x*"ð¢>Ø!ì£>Ø&þ¦>Ø€"‚x*"½º>Ø#AàjØ!"çjØ"£êjØ#ǵØ#ÂØ!tÄØ"îÅØ!䯨"”ÑØ#±‘ÐØ!6›ÐØ"ÈœÐØ#zxÙ#Î{Ù!®}Ù"dÙ!Q€Ù"“‰Ù#4J6Ù!3T6Ù"ÑU6Ù#'iÙ#5iÙ!a7iÙ"Ø8iÙ!Â9iÙ"ìBiÙ#çœÙ!gœÙ"œÙ#WêÎÙ#8îÎÙ!3ðÎÙ"°ñÎÙ! òÎÙ"©ûÎÙ#c¾Ú!3ËÚ"ÝÌÚ#nš4Ú# §4Ú!ç©4Ú"¬«4Ú!®¬4Ú"ÿµ4Ú#;€gÚ!<…gÚ"à†gÚ#áSšÚ#µašÚ!4dšÚ"ºešÚ!ÔfšÚ"òošÚ#í0ÍÚ!˜;ÍÚ"T=ÍÚ#² Û#µÛ!Û"Û!ÿÛ"Â(Û´ÛÛmd1_raid1xáÛswappermd1_raid13ÑèÛ€rx€¸‚0 - ëÛ€rxmd1_raid1.³ñÛ€rxmd1_raid10õÛmd1_raid13:øÛ€rx€¸‚0 -VúÛ€rxmd1_raid1.¦þÛ€rxmd1_raid1'¤Û€rxmd1_raid11ƒ Ûmd1_raid1(ÌÛ€rxmd1_raid1'€Û€rxmd1_raid11! Ûmd1_raid1(#Û€rxmd1_raid1í.Ûmd1_raid1±T`|.A8Ûmd1_raid1swapper#cÛ!é‚Û&O†Û€rx*l–Ûkworker/0:2_(x"ÙžÛA£Ûswapperkworker/0:2_(#[ªÛ!ç«Û&ä®Û€rx*ÅÛkworker/0:2_(7/mpL.&ÇÛkworker/0:1.&x"lÏÛsÔÛkworker/0:2_(«€L.ïÖÛkworker/0:2_(kworker/0:1.&»ÚÛkworker/0:1.&H†L. âÛkworker/0:1.&swapper#&ô2Û!¤ú2Û"Õü2Û#CÏeÛ#ÄÕeÛ!ª×eÛ"ÜeÛ!ðÜeÛ"üåeÛ#­˜Û!D²˜Û"ܳ˜Û#ƒŠËÛ#|ŽËÛ!¶ËÛ"3’ËÛ! “ËÛ"JœËÛ#¨^þÛ!FjþÛ"blþÛ#^D1Ü#êH1Ü!¥K1Ü"M1Ü! N1Ü"!W1Ü#¡dÜ!‡#dÜ"7%dÜ#cû–Ü#Ýÿ–Ü! —Ü"š—Ü!Š—ÜÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‘—ÜÈ7ò=,ßÈ7Ѐ"‘—Ü#ßÚÉÜ!ÄàÉÜòåÉÜltt-kconsumerd2¼ëÉÜltt-kconsumerd2x"rðÉÜPôÉÜswapperltt-kconsumerd2ÖÊÜVÊÜ!öõÊÜÊÜ!ö€@ŽK=¿ŽÊÜq!ÊÜ!HŽK=¿3,ÊÜ.ÊÜ"$hÊÜîjÊÜ"Ð-£sÊÜp…0 ltt-kconsumerd›~ÊÜmd1_raid1%ˆÊÜ2ŠÊÜ"ÀÐŽÊÜæÊÜÝ"À ›ÊÜÝþœÊÜ!öAŸÊ܉¢ÊܰÄ@ ÿÿÿÿÿÿÿÿÅ®ÊÜltt-kconsumerd2¡ÄrÝ/³ºÊÜltt-kconsumerd2swapper#QÿÎÜ!ÏÜ&üÏÜ€*‚x*ÒÏÜkworker/0:1.&x"°!ÏÜQ&ÏÜswapperkworker/0:1.&{,ÏÜkworker/0:1.&´&ØL.:4ÏÜkworker/0:1.&swapper#ÞAÏÜ!yCÏÜ&2HÏÜ€*‚x*Í[ÏÜkworker/0:1.&x"…dÏÜíhÏÜswapperkworker/0:1.&unÏÜkworker/0:1.&µëL.,uÏÜkworker/0:1.&swapper#õ·üÜ#s»üÜ!s¾üÜ"ºÙüÜ!¶ÚüÜ"•ãüÜ#w•/Ý!-š/Ý"þž/Ý#°gbÝ!'sbÝ"ÈtbÝ#G•Ý#|R•Ý!XU•Ý"›W•Ý!X•Ý"zc•Ý#¤œšÝ!„žšÝ&Ô¢šÝ€z„x*µšÝkworker/0:1.&x":¾šÝšÝswapperkworker/0:1.&¨ÈšÝkworker/0:1.&â—M.æÏšÝkworker/0:1.&swapperBàšÝahci#*ìšÝ %îšÝÀïšÝuhci_hcd:usb3 aôšÝÀõšÝeth1 ÐúšÝ!1ýšÝ&›Ý€z„x*›Ýkworker/0:1.&x"ä"›Ý '›Ýswapperkworker/0:1.&Ñ,›Ýkworker/0:1.&}M.-4›Ýkworker/0:1.&swapper#q"ÈÝ!«1ÈÝ"Z4ÈÝJìÈÝmd1_raid1x!ñÈÝswappermd1_raid13½÷ÈÝ€ƒx€X†0 -“úÈÝ€ƒxmd1_raid1.¨ÉÝ€ƒxmd1_raid10GÉÝmd1_raid136ÉÝ€ƒx€X†0 -vÉÝ€ƒxmd1_raid1.‡ ÉÝ€ƒxmd1_raid1'XÉÝ€ƒxmd1_raid11hÉÝmd1_raid1(dÉÝ€ƒxmd1_raid1' )ÉÝ€ƒxmd1_raid11H-ÉÝmd1_raid1(I/ÉÝ€ƒxmd1_raid1·9ÉÝmd1_raid1N×}.íAÉÝmd1_raid1swapper#[rÍÝ!ósÍÝ#ŽxÍÝ&{ÍÝ€ƒx*³‰ÍÝkworker/0:1.&x"e’ÍÝ!»“ÍÝ&Í–ÍÝ€ƒx*"4«ÍÝœ¯ÍÝswapperkworker/0:1.&µÍÝkworker/0:1.&j,~@M.£·ÍÝkworker/0:2_(x¾ÍÝkworker/0:1.&‘IM.ÀÍÝkworker/0:1.&kworker/0:2_(ÄÍÝkworker/0:2_(-ŸÈL.ËÍÝkworker/0:2_(swapper#³ûÝ#ý ûÝ!*ûÝ"XûÝ!cûÝ"ßûÝ#üÝ-Þ!ë-Þ"Ïï-Þ#¹`Þ!¢Ä`Þ"‹Æ`Þ#†“Þ#%¡“Þ!j¤“Þ"#¦“Þ!%§“Þ"²“Þ#„qÆÞ! ƒÆÞ"Þ„ÆÞ#ýWùÞ#]ùÞ!t_ùÞ"EaùÞ!2bùÞ"–mùÞ#G-,ß!°:,ßÁüÁõ©‹à‡îØF²ÿbÊ™HŽ·<,ßÈ7¶.§àÈ7Ð~€"·<,ß#ÿ_ß#5_ß!§_ßÜ_ßltt-kconsumerd2ä_ßltt-kconsumerd2x"’!_ß!¯"_ß"Ÿ,_ßP0_ßswapperltt-kconsumerd2ØG_ß­K_ß!öbN_ß6P_ß!ö€@ŽK=¿žQ_ß{S_ß!HŽK=¿Ð[_ß¿]_ß"´Œ_ßl_ß"à- ˜_ßx…0 ltt-kconsumerdo¡_ßmd1_raid1v©_߉«_ß"Ðc°_ßL²_ßÝ"Р»_ßݘ½_ß!ö·¿_ßÄÁ_ßöyÍ_ß;Ï_ßö€@ŽK=¿ÐÐ_ßïÒ_ßHŽK=¿EÚ_ß4Ü_ß B `ßÇ`ß -)`ßH‡0 ltt-kconsumerd¨$`ßµ&`ß €ó*`ßµ,`ßÝ €;7`ßÝ'9`ßöÁ;`ß»>`ß°Ä@ ÿÿÿÿÿÿÿÿÕK`ßltt-kconsumerd2. /äT`ßltt-kconsumerd2swapper#Ô¬eß!¨®eß&C³e߀2‚x*" Êeß#»iß!Ú¼iß#=Ãiß&°Åi߀„x*HÓißkworker/0:2_(x"9Üiß!eÝiß&†ài߀„x*"äñiß^öißswapperkworker/0:2_(Oüißkworker/0:2_(*$N.Jþißkworker/0:1.&xjßkworker/0:2_(Os#N.Õjßkworker/0:2_(kworker/0:1.&} jßkworker/0:1.&ú ÷M. jßkworker/0:1.&swapper#6î‘ß!Çö‘ß"ù‘ß#ÅÃÄß#ŸÏÄß!™ÒÄß"£×Äß!±ØÄß"†âÄß#†ž÷ß!äª÷ß"¸¬÷ß#I‚*à#M‡*à!T‰*à"ÔŠ*à!Ä‹*à" —*à##[]à!Ðe]à"bg]à#P5à#Aà!ûBà"~Dà!nEà"Nà à›àahci#cê›à "ì›à¢í›àuhci_hcd:usb3 :ò›à¢ó›àeth1 [ø›à!ú›à&§ý›à€x*"«œà#Iœà!{Jœà&\Nœà€x*6_œàltt-kconsumerd2Qeœàltt-kconsumerd2x"…vœàízœàswapperltt-kconsumerd2c‹œàŽœàݰ¬™œàݰ›œàöŠ œàú¥œà°Ä@ ÿÿÿÿÿÿÿÿÚÈœàltt-kconsumerd2¨c·o/ Óœàltt-kconsumerd2swapper#‡Ÿ à!¡ à&£¤ à€êx*"» à#ç‹£à!.£à&‘£à€ƒx*"%Ÿ£à#mí£à!Õî£à&Wñ£à€ƒx*"¤à#õצà!EÙ¦à&fܦà€"x*‰é¦àkworker/0:1.&x"Nñ¦à§õ¦àswapperkworker/0:1.&’û¦àkworker/0:1.&Û’gN.¬§àkworker/0:1.&swapper#d§à!Õ §à&# §à€"x*” §àkworker/0:1.&x"Â(§àÁüÁõ©‹à‡îØF²ÿbÊ™HŽo-§àÈ7©¾æÈ7X~€o-§àswapperkworker/0:1.& 5§àkworker/0:1.&<Î|N.»;§àkworker/0:1.&swapper#‰Ãà!P#Ãà¯'Ãàltt-kconsumerd2x"-Ãà1Ãàswapperltt-kconsumerd2}DÃàæGÃà!ö¤JÃàlLÃà!ö€@ŽK=¿ÎMÃà±OÃà!HŽK=¿ó[Ãàß]Ãà"²“ÃàC–Ãà"ð-›žÃà€…0 ltt-kconsumerdó¯Ãà²Ãà"à¶Ãàñ·ÃàÝ"à™ÁÃàÝÃÃà!ö¼ÅÃàtÈÃà°Ä@ ÿÿÿÿÿÿÿÿGÔÃàltt-kconsumerd2I­/#àÃàltt-kconsumerd2swapper¹Èàahci#á Èà xÈà Èàuhci_hcd:usb3 ·ÈàÈàeth1 Ì"Èà!f%Èà&J)Èà€:‚x*ø8Èàkworker/0:1.&x&|EÈà€:‚x*""ZÈàÞ^Èàswapperkworker/0:1.&2eÈàkworker/0:1.&-/O.KgÈàkworker/0:2_(xmÈàkworker/0:1.&……7O.ÄoÈàkworker/0:1.&kworker/0:2_(sÈàkworker/0:2_(ññO.}zÈàkworker/0:2_(swapper#ˆøõà#üüõà!íÿõà"3öà!8öà"L öà#Í(á!+Ù(á"ÕÝ(á#{²[á#ζ[á!·¸[á"sº[á!c»[á"kÅ[á#w8bá!ú9bá&y?bá€ú„x*"ðObá#ªqá!?«qá&r®qá€ú„x*"[Åqá#&ÿuá!svá&ævá€"ƒx*©vákworker/0:2_(x"¿váú!váswapperkworker/0:2_(Í'vákworker/0:2_(§˜O.ÿ.vákworker/0:2_(swapper#„‡Žá!!”Žá"p–Žá#újÁá#éoÁá!ÃqÁá"5uÁá!1vÁá"šÁá#3Fôá!—Nôá"/Pôá#Ç#'â#)'â!+'â"¦,'â!–-'â"8'â#ùþYâ!òZâ"¥Zâ#NÕŒâ#îÞŒâ!¦áŒâ"&ãŒâ!äŒâ"ÁíŒâ#´¿â!’Á¿â"-ÿâ#p‘òâ#pžòâ!Å òâ"E¢òâ!5£òâ"‰¬òâ#Âk%ã!Gz%ã"å{%ã#]JXã#9TXã!/XXã"åYXã!çZXã"ýbXã#{%‹ã!d1‹ã"3‹ã#=¾ã#̾ã!¯¾ã"2¾ã!"¾ã"Ô¾ã#àðã!%ìðã"îðã#Ä#ä#qÉ#ä!¢Ë#ä"+Í#ä!Î#ä"¨×#ä#ǘVä!Ï£Vä"j¥Vä#Bx‰ä#‰ƒ‰ä!ê…‰ä"¬‡‰ä!®ˆ‰ä"ö‘‰ä#mR¼ä!X^¼ä"2`¼ä#w8ïä#Ú;ïä!Æ=ïä"@?ïä!*@ïä"…Hïä#n "å!Y"å">"å#„õTå#ùTå!'ûTå"³üTå!£ýTå" Uå#åȇå!Õ‡å";ׇå#í«ºå#+°ºå!}²ºå"6´ºå!8µºå"Y¾ºå#díå!ñŒíå"íå# e æ# i æ!ék æ"–m æ!˜n æ"{ æ#BSæ!GSæ"2ISæ#û†æ# !†æ!r#†æ"ò$†æ!â%†æ"“/†æ#Åò¸æ!ˆÿ¸æ"¹æ#÷A¾æ!­C¾æ#[J¾æ&éL¾æ€z…x* ^¾ækworker/0:2_(x"®f¾æ!h¾æ&Am¾æ€z…x*"ˆ¾æjŒ¾æswapperkworker/0:2_(d’¾ækworker/0:2_(d5üPO.Y”¾ækworker/0:1.&x,š¾ækworker/0:2_(ÝÙXO.™œ¾ækworker/0:2_(kworker/0:1.& ¾ækworker/0:1.&‹=O.ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÊ§¾æÈ7ÔGOéÈ7x€ʧ¾ækworker/0:1.&swapper#ý×ëæ#Pßëæ!#âëæ˜èëæltt-kconsumerd2™íëæltt-kconsumerd2x"ïñëæ!óëæ"hýëæÑìæswapperltt-kconsumerd2Ÿìæ°#ìæ!ö/&ìæ(ìæ!ö€@ŽK=¿q)ìæZ+ìæ!HŽK=¿Å5ìæ¢7ìæ"Tjìæëlìæ"-@uìæˆ…0 ltt-kconsumerdS†ìæfˆìæ"ðeŒìæ9ŽìæÝ"ðÌ—ìæÝë™ìæ!öœìæ Ÿìæ°Ä@ ÿÿÿÿÿÿÿÿéªìæltt-kconsumerd2D¾DÛ/ųìæltt-kconsumerd2swapper# Üðæ!Þðæ&gãðæ€B‚x*óðækworker/0:1.&x"DýðæÁñæswapperkworker/0:1.&šñækworker/0:1.&`¤ÕO.æñækworker/0:1.&swapper#»$ñæ!)&ñæ&Ã+ñæ€B‚x*˜>ñækworker/0:1.&x"Gñæ.Kñæswapperkworker/0:1.&¡Pñækworker/0:1.&5ÙèO.ˆWñækworker/0:1.&swapper# µç!’ºç"ç¼çéCçmd1_raid1xTHçswappermd1_raid13·Nç€*ƒx€p†0 -BQç€*ƒxmd1_raid1.„Wç€*ƒxmd1_raid10#[çmd1_raid13ú\ç€*ƒx€p†0 -_ç€*ƒxmd1_raid1.Óbç€*ƒxmd1_raid1'Pgç€*ƒxmd1_raid11]lçmd1_raid1()pç€*ƒxmd1_raid1'Úç€*ƒxmd1_raid11£ƒçmd1_raid1(\…ç€*ƒxmd1_raid1I’çmd1_raid1OÚ”„.bšçmd1_raid1swapper+#çahci#ަ#ç 5¨#粩#çuhci_hcd:usb3 ,®#çs¯#çeth1 G´#ç!·#ç&·¹#ç€*ƒx*ŽÇ#çkworker/0:1.&x#<Ñ#ç"~Ô#ç!žÕ#ç&MØ#ç€*ƒx*"]ì#çð#çswapperkworker/0:1.&zö#çkworker/0:1.&Ó/¬P.rø#çkworker/0:2_(xŠþ#çkworker/0:1.&@ì P.µ$çkworker/0:1.&kworker/0:2_(Z$çkworker/0:2_(ÐÆO.; $çkworker/0:2_(swapper#½‹Qç#¿–Qç! šQç"8œQç!IQç"‚©Qç#!o„ç!mt„ç")y„ç#øK·ç#6P·ç!(R·ç"çS·ç!æT·ç"«_·ç#Ìêç!á+êç".êç#Qè# è!P è"Ç è!·è"Nè#vÙOè!ÙåOè"ìçOè#T·‚è#Á‚è!¡Å‚è"!Ç‚è!È‚è"SÑ‚è#3“µè! µè"(¢µè#\xèè#;~èè!6€èè"õèè!ô‚èè"èè#pTé!"Zé"ÿ[é#²)Né#¶4Né!#7Né"î8Né!ð9Né" DNé¯Oémd1_raid1xÅOéswappermd1_raid13õ Oé€2ƒx€x†0 -q#Oé€2ƒxmd1_raid1.­)Oé€2ƒxmd1_raid104-Oémd1_raid13ò/Oé€2ƒx€x†0 -2Oé€2ƒxmd1_raid1.Ë5Oé€2ƒxmd1_raid1'Ø:Oé€2ƒxmd1_raid11Ã@Oémd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ3FOéÈ7jçéÈ7€(3FOé€2ƒxmd1_raid1'ÿUOé€2ƒxmd1_raid11ÑYOémd1_raid1(Å\Oé€2ƒxmd1_raid1~gOémd1_raid1WÝë„.“pOémd1_raid1swapper~‘Oémd1_raid1xd–Oéswappermd1_raid13ìžOé€òx€8ƒ0 -/¡Oé€òxmd1_raid1.–¦Oé€òxmd1_raid10ä©Oémd1_raid13œ¬Oé€òx€8ƒ0 -!¯Oé€òxmd1_raid1.½²Oé€òxmd1_raid1'|·Oé€òxmd1_raid11¼Oémd1_raid1(S¿Oé€òxmd1_raid1'ÐOé€òxmd1_raid11/ÔOémd1_raid1(!ÖOé€òxmd1_raid1ÔàOémd1_raid1öQÓ=….{èOémd1_raid1swapperÞ6Pémd1_raid1xˆ;Péswappermd1_raid13CPé€J‚x€…0 -ØEPé€J‚xmd1_raid1.ÚKPé€J‚xmd1_raid10|OPémd1_raid13RPé€J‚x€…0 -VTPé€J‚xmd1_raid1.pXPé€J‚xmd1_raid1']Pé€J‚xmd1_raid11"aPémd1_raid1(UdPé€J‚xmd1_raid1'ÊpPé€J‚xmd1_raid11&P.ý¾òékworker/0:2_(swapper#Ωê#I­ê!°ê"‰²ê!…³ê"ô¼ê#aLê!‹‡Lê"/ŒLê#6`ê#eê!\gê"Ühê!Æiê"stê#†3²ê!?²ê"Á@²ê#åê#Àåê!š åê"S"åê!U#åê"Ñ+åê#›÷ë!µûë"YýëÍÆëmd1_raid1x§Ëëswappermd1_raid13ÅÔë€*x€p„0 -×ë€*xmd1_raid1.ÒÜë€*xmd1_raid10_àëmd1_raid13äâë€*x€p„0 -0åë€*xmd1_raid1.ièë€*xmd1_raid1'‚íë€*xmd1_raid11¡òëmd1_raid1(E÷ë€*xmd1_raid1'Ôë€*xmd1_raid11 ëmd1_raid1(¦ ë€*xmd1_raid1©ëmd1_raid1þU؆.O&ëmd1_raid1swapper#Kvë!àwë&ý{ë€*x*ó‹ëkworker/0:2_(x"É”ë.™ëswapperkworker/0:2_(#þžë!B ë&*£ë€*x*"&¼ërÁëkworker/0:2_(66t\P.OÃëkworker/0:1.&xsÉëkworker/0:2_(dP.þËëkworker/0:2_(kworker/0:1.&»Ïëkworker/0:1.&`-jP.·Öëkworker/0:1.&swapper#aÓJë#¸ÖJë!¦ÙJë"%ÜJë!TÝJë"#çJëøˆKëmd1_raid1x;ŽKëswappermd1_raid132—Kë€ „x€P‡0 -“™Kë€ „xmd1_raid1.!ŸKë€ „xmd1_raid10Ÿ¢Këmd1_raid130¥Kë€ „x€P‡0 -v§Kë€ „xmd1_raid1.!«Kë€ „xmd1_raid1'ø¯Kë€ „xmd1_raid11o´Këmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽY¸KëÈ7oæíÈ7Ø€(Y¸Kë€ „xmd1_raid1'wÊKë€ „xmd1_raid11:ÎKëmd1_raid1(ÐKë€ „xmd1_raid1BÞKëmd1_raid1EWÄ/‡.ÉçKëmd1_raid1swapperáOëahci#ÿéOë »ëOë>íOëuhci_hcd:usb3 ÷ñOëAóOëeth1 ý÷Oë!—úOë&¯ýOë€ „x*W Pëkworker/0:1.&x#fPë"7Pë!fPë&ñPë€ „x*"J8Pë|­í#ºàí!Ïàí"^àíEÕàímd1_raid1xÚàíswappermd1_raid13 ààí€:ƒx€€†0 -.ãàí€:ƒxmd1_raid1.fêàí€:ƒxmd1_raid10 îàímd1_raid13'ðàí€:ƒx€€†0 -Còàí€:ƒxmd1_raid1.oöàí€:ƒxmd1_raid1'7ûàí€:ƒxmd1_raid11@áímd1_raid1(;áí€:ƒxmd1_raid1'Páí€:ƒxmd1_raid11páímd1_raid1(Xáí€:ƒxmd1_raid1Î'áímd1_raid1ySE‰. 0áímd1_raid1swapperÁüÁõ©‹à‡îØF²ÿbÊ™HŽ7æíÈ7ćGðÈ7Ѐ#7æí!! æí&´æí€:ƒx*#$æíkworker/0:2_(x"¨,æí61æíswapperkworker/0:2_(7æíkworker/0:2_([LÕP.Î>æíkworker/0:2_(swapper#[àî#•ëî!¼îîuóîltt-kconsumerd2åøîltt-kconsumerd2x"óüî!(þî"fîØ îswapperltt-kconsumerd2…!î<%î!ö(îû)î!ö€@ŽK=¿u+îp-î!HŽK=¿5îå6î"3dî¸fî"@-‹o0 ltt-kconsumerd·yîmd1_raid1¦îïƒî"0ºˆî¬ŠîÝ"0Q”îÝp–î!ö›˜îÔ›î°Ä@ ÿÿÿÿÿÿÿÿ+¨îltt-kconsumerd2è°,d/Œ°îltt-kconsumerd2swapper#`óî!õî#'üî&xÿî€b‚x*hîkworker/0:2_(x" î!Aî&! î€b‚x*"Þ7îŽ<îswapperkworker/0:2_(ÁBîkworker/0:2_( 4L}Q.ÈDîkworker/0:1.&xòJîkworker/0:2_(d°…Q.SMîkworker/0:2_(kworker/0:1.&Qîkworker/0:1.& 8OQ.ÙWîkworker/0:1.&swapper#±ÅEî!8ÌEî"ºÎEî#˜xî#¡xî!̤xî"£©xî!¢ªxî"aµxî#Ct«î!«î"ׂ«î#ÝQÞî#j[Þî!‘^Þî"`Þî!þ`Þî"´kÞî#â-ï!ª;ï"?=ï#N Dï#NDï!¯Dï"hDï!jDï"]&Dï#Jçvï!‘ñvï">óvï#JÄ©ï#ûË©ï!1Ï©ï"´Ð©ï!¡Ñ©ï"óÜ©ï# ¡Üï!°Üï"ß±Üï#q6âï!?8âï&¼<âï€2x*BPâïkworker/0:1.&xvXâïahci#Ldâï ,fâï—gâïuhci_hcd:usb3 lâï^mâïeth1 ùqâï"ñyâï!{âï&_~âï€2x*"í›âïïŸâïswapperkworker/0:1.& ¦âïkworker/0:1.&ÀWø¦Q.#¨âïkworker/0:2_(x8®âïkworker/0:1.&[S¯Q.Ÿ°âïkworker/0:1.&kworker/0:2_(b´âïkworker/0:2_(Bò‹Q.Ä»âïkworker/0:2_(swapper#Áð#zŠð!›ð"#ð!.‘ð"H›ð#=|ð!½}ð&”‚ð€†x*†“ðkworker/0:2_(x"#œð1 ðswapperkworker/0:2_(¦ðkworker/0:2_(’„ŸQ.­ðkworker/0:2_(swapper#t\Bð!dlBð"ŽoBð}"Cðmd1_raid1xÜ&Cðswappermd1_raid13Q-Cð€Bƒx€ˆ†0 -â/Cð€Bƒxmd1_raid1.6Cð€Bƒxmd1_raid10Ã9Cðmd1_raid13©;Cð€Bƒx€ˆ†0 -Â=Cð€Bƒxmd1_raid1.šACð€Bƒxmd1_raid1';FCð€Bƒxmd1_raid113KCðmd1_raid1(,OCð€Bƒxmd1_raid1'…\Cð€Bƒxmd1_raid11W`Cðmd1_raid1(7bCð€Bƒxmd1_raid1$lCðmd1_raid1vJY?‹.RtCðmd1_raid1swapper#ZGð!GðÁüÁõ©‹à‡îØF²ÿbÊ™HŽ˜†GðÈ7³ŒnôÈ7è€#˜†Gð&½‹Gð€Bƒx*‚™Gðkworker/0:2_(x"³¡Gð!â¢Gð&ñ¥Gð€Bƒx*"H»GðÅ¿Gðswapperkworker/0:2_(¤ÅGðkworker/0:2_(å,iÌQ.üÇGðkworker/0:1.&x ÎGðkworker/0:2_(‚ëÔQ.3ÐGðkworker/0:2_(kworker/0:1.&íÓGðkworker/0:1.&úMµQ.’ÚGðkworker/0:1.&swapper#o9uð#uEuð!–HuðâMuðltt-kconsumerd2_Ruðltt-kconsumerd2x":Vuð!WWuð"auð˜duðswapperltt-kconsumerd2ò|uðî€uð!öµƒuðŒ…uð!ö€@ŽK=¿ë†uðÚˆuð!HŽK=¿)‘uð“uð"Û½uðÀuð"P-Éuð°…0 ltt-kconsumerdNÒuðmd1_raid1|ÚuðhÜuð"@áuðþâuðÝ"@ìuðÝSîuð!ö]ðuð~óuð°Ä@ ÿÿÿÿÿÿÿÿ·ÿuðltt-kconsumerd2*®V /Hvðltt-kconsumerd2swapper#wzð!óxzð&Yzð€j‚x*dzðkworker/0:1.&x"W™zðòzðswapperkworker/0:1.&ã£zðkworker/0:1.&rÈ R.Īzðkworker/0:1.&swapper#WÞzð!Åßzð&Wäzð€j‚x*´özðkworker/0:1.&x"`ÿzð§{ðswapperkworker/0:1.&2 {ðkworker/0:1.&âR.¹{ðkworker/0:1.&swapper#§¨ð![$¨ð"¶&¨ð#EñÚð#!ýÚð!»ÿÚð"›Ûð!‘Ûð"…Ûð#Î ñ!¡Ù ñ"ÒÛ ñ#Ý«@ñ#éµ@ñ!>¸@ñ"º@ñ!»@ñ"Å@ñ#ÖFñ!JFñ&¥Fñ€ …x*Ò(Fñkworker/0:1.&x">2Fñ#¨7Fñ!L9Fñ&t>Fñ€ …x*"ÁWFñÛ[Fñswapperkworker/0:1.&bFñkworker/0:1.&8:ZR.WdFñkworker/0:2_(x6jFñkworker/0:1.&RlbR.‘lFñkworker/0:1.&kworker/0:2_(6pFñkworker/0:2_(úPýQ.5wFñkworker/0:2_(swapper#Ž“sñ!ô™sñ"Xœsñ#ªd¦ñ#Šo¦ñ!or¦ñ"øv¦ñ!ýw¦ñ"ü¦ñ#™JÙñ!oPÙñ"RÙñ#ù' ò#¿+ ò!Ì- ò"I/ ò!90 ò"Ú: ò#û>ò!Ó?ò"z ?ò#¸Øqò#jâqò!våqò"2çqò!1èqò"Bòqò#-¼¤ò!£Á¤ò"Aäò#q‘×ò#"ž×ò!_ ×ò"ß¡×ò!Ì¢×ò"}¬×ò#úy ó!ô ó"Ô ó#K=ó#.W=ó!ƒY=ó"[=ó!ó[=ó"g=ó#õ'pó!A3pó"Ù4pó#’£ó#:£ó!&£ó"Ó£ó!Õ£ó"©!£ó#±áÕó!<îÕó"õïÕó#ÈÅô#Ëô!«Íô"4Ïô!'Ðô"#Úô#¤¢;ô!¨;ô"lª;ôÿhBôahci#xtBô 4|BôÏ}Bôuhci_hcd:usb3 d‚BôƃBôeth1 ¯ˆBô! ‹Bô&[ŽBô€„x*&6¤Bô€„x*"®¼Bô#…Fô!ä‚Fô&˜†Fô€Jƒx*a“Fôkworker/0:2_(x"öšFôIŸFôswapperkworker/0:2_(v¥Fôkworker/0:2_( [R.A­Fôkworker/0:2_(swapper#zznô#øƒnô!Ȇnô"ŠnôÁüÁõ©‹à‡îØF²ÿbÊ™HŽ{‹nôÈ7kiøÈ7È€!{‹nô"T—nô#8U¡ô!¢`¡ôàj¡ôltt-kconsumerd2Åp¡ôltt-kconsumerd2x"Nu¡ôóx¡ôswapperltt-kconsumerd22£¡ôr¨¡ô!öo«¡ô@­¡ô!ö€@ŽK=¿¥®¡ôš°¡ô!HŽK=¿!½¡ô¿¡ô"rö¡ôù¡ô"`-¢ô¸…0 ltt-kconsumerd¢ôþ¢ô"P±¢ô¢ôÝ"PH&¢ôÝa(¢ô!öz*¢ôÛ,¢ôö‰9¢ôW;¢ôö€@ŽK=¿[=¢ôw?¢ôHŽK=¿G¢ôI¢ôûx¢ô}{¢ô -÷‚¢ôЇ0 ltt-kconsumerdQ’¢ô^”¢ô†˜¢ôQš¢ôÝÇ¥¢ôÝ­§¢ôöDª¢ôe­¢ô°Ä@ ÿÿÿÿÿÿÿÿyº¢ôltt-kconsumerd2VK¬] /ñâôltt-kconsumerd2swapper#º§ô!J¼§ô&Á§ô€r‚x*"ÖÒ§ô#ܨô!G¨ô&õ¨ô€r‚x*"8(¨ô#[¬ô!ɬô&Ьô€Š„x*/'¬ôkworker/0:2_(x"x/¬ôï3¬ôswapperkworker/0:2_(:¬ôkworker/0:2_(³_VS.™A¬ôkworker/0:2_(swapper#9e¬ô!’f¬ô&‚j¬ô€Š„x*;{¬ôkworker/0:2_(x"A„¬ôuˆ¬ôswapperkworker/0:2_(¾¬ôkworker/0:2_(M¬iS.u”¬ôkworker/0:2_(swapper#1:Ôô#'>Ôô!ÿAÔô"{DÔô!ƒEÔô"¤NÔô#õ!Øõ"£ õ#-í9õ#­÷9õ!,ú9õ"Áû9õ!±ü9õ"¿:õ#hÈlõ!£Ölõ"GØlõ#¿«Ÿõ#°Ÿõ!²Ÿõ"´Ÿõ!þ´Ÿõ"Õ¿Ÿõ#)‚Òõ!¨Òõ"(Òõ#·hö#˜lö!±nö"+pö!qö"zö#Â;8ö!=H8ö"öI8ö#¤kö#†$kö!á&kö"…(kö!r)kö"x5kö#„õö!„žö"žö#3ÒÐö#ÕÜÐö!<ßÐö"¼àÐö!¬áÐö"ÞëÐö#¯÷!úº÷"ݼ÷#O—6÷#Íš6÷!¹œ6÷"<ž6÷!)Ÿ6÷"—©6÷#åri÷!Ywi÷"yi÷#oEœ÷#·Qœ÷!îSœ÷"nUœ÷!^Vœ÷"å_œ÷#W"Ï÷!ó.Ï÷"£0Ï÷#Fø## ø!Ûø"²ø!·ø"Àø$§ømd1_raid1x¼«øswappermd1_raid13²ø€Rƒx€˜†0 -.µø€Rƒxmd1_raid1.*¼ø€Rƒxmd1_raid10½¿ømd1_raid13Áø€Rƒx€˜†0 -žÃø€Rƒxmd1_raid1.UÇø€Rƒxmd1_raid1'ðËø€Rƒxmd1_raid11çÑømd1_raid1(W×ø€Rƒxmd1_raid1'Ìæø€Rƒxmd1_raid11æêømd1_raid1(˜íø€Rƒxmd1_raid1èúømd1_raid1«T1i.dømd1_raid1swapper#aSø! Uø&£Xø€Rƒx*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ0høÈ7µÿùÈ7Ѐ0høkworker/0:2_(x€røahci#}ø ø®€øuhci_hcd:usb3 L…øÆøeth1 y‹ø"ð’ø!”ø&n–ø€Rƒx*"ͬøưøswapperkworker/0:2_(Õ¶økworker/0:2_(³O_¹S.ë¸økworker/0:1.&x?¿økworker/0:2_(üÁS.©Áøkworker/0:2_(kworker/0:1.&uÅøkworker/0:1.&HôHS.;Ìøkworker/0:1.&swapper#ã4ø!±ê4øgï4øltt-kconsumerd2ó4øltt-kconsumerd2x"’÷4øü4øswapperltt-kconsumerd2²5ør5ø!ö5øõ5ø!ö€@ŽK=¿f5øR5ø!HŽK=¿&'5ø )5ø"`V5ø Y5ø"p-ya5øÀ…0 ltt-kconsumerdKk5ømd1_raid1Us5øpu5ø"`\z5ør|5øÝ"`Z…5øÝg‡5ø!ö‰5øªŒ5ø°Ä@ ÿÿÿÿÿÿÿÿ¶˜5øltt-kconsumerd2ù¥¥ /ª¤5øltt-kconsumerd2swapper#ÓÂ9ø!‰Ä9ø&™É9ø€z‚x*tÙ9økworker/0:1.&x"Ùã9øqè9øswapperkworker/0:1.&nî9økworker/0:1.&ÕzþS.põ9økworker/0:1.&swapper#CÂgø#¢Ægø!êÉgø"ÌÌgø!×Ígø"µ×gø#敚ø!ø"⥚ø#MsÍø#½~Íø!Á€Íø"t‚Íø!yƒÍø"òŽÍø#—Xù!H_ù"aù#ö}ù!vù&>„ù€Š…x*>–ùkworker/0:1.&x"€ŸùÙ£ùswapperkworker/0:1.&Ü©ùkworker/0:1.&}T.±ùkworker/0:1.&swapper#ù!ˆù& ù€Š…x*~#ùkworker/0:1.&x"S-ù¾1ùswapperkworker/0:1.&O7ùkworker/0:1.&—(T.å=ùkworker/0:1.&swapper#U33ù#Õ63ù!ù93ù"Z<3ù!P=3ù"EH3ù#n fù!fù"nfù#Üç˜ù#Åó˜ù!ö˜ù"»÷˜ù!¥ø˜ù"Ñ™ù#æÂËù![ÍËù"ÏËù#„-Ñù!./Ñù&¥3Ñù€:x*yDÑùkworker/0:1.&x"%MÑùQQÑùswapperkworker/0:1.&#–WÑù! YÑù&x]Ñù€:x*"=wÑùw|Ñùkworker/0:1.&~9’aT.`~Ñùkworker/0:2_(x¢„Ñùkworker/0:1.&FØiT.W‡Ñùkworker/0:1.&kworker/0:2_(V‹Ñùkworker/0:2_(·\ïS.¬’Ñùkworker/0:2_(swapper#ï§þù#S¬þù!\¯þù"ç±þù!õ²þù"¼þùÂcÿùmd1_raid1x–hÿùswappermd1_raid13°oÿù€Zƒx€ †0 -nrÿù€Zƒxmd1_raid1.hxÿù€Zƒxmd1_raid10|ÿùmd1_raid13ÿ}ÿù€Zƒx€ †0 -€ÿù€Zƒxmd1_raid1.Òƒÿù€Zƒxmd1_raid1'gˆÿù€Zƒxmd1_raid11Mÿùmd1_raid1(‘ÿù€Zƒxmd1_raid1'I ÿù€Zƒxmd1_raid11¤ÿùmd1_raid1(û¥ÿù€Zƒxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽä³ÿùÈ7EãýúÈ7h€ä³ÿùmd1_raid1CPv^‘.¿ÿùmd1_raid1swapper#Ì·ú!^¹ú&å¼ú€Zƒx*ËÊúkworker/0:2_(x"AÓú Øúswapperkworker/0:2_(Þúkworker/0:2_(lT.óäúkworker/0:2_(swapper;úahci# ú ú!úuhci_hcd:usb3 ¶úúeth1 ïú!hú&½ú€Zƒx*Ë0úkworker/0:2_(x"38úk<úswapperkworker/0:2_()Búkworker/0:2_(~T."Iúkworker/0:2_(swapper#M~1ú!{‰1ú+Ž1últt-kconsumerd2]’1últt-kconsumerd2x"–1úßš1úswapperltt-kconsumerd2î²1ú¨¶1ú!ö`¹1ú=»1ú!ö€@ŽK=¿À¼1ú¯¾1ú!HŽK=¿òÆ1úÉ1ú"æó1ú}ö1ú"€-ÿ1úÈ…0 ltt-kconsumerdª2úmd1_raid1Ã2ú2ú"pò2ú±2úÝ"pí"2úÝý$2ú!öL'2úL*2ú°Ä@ ÿÿÿÿÿÿÿÿ¯62últt-kconsumerd2¥º¨ /ŽB2últt-kconsumerd2swapper#qœ6ú!`ž6ú&Ü£6ú€‚‚x*®³6úkworker/0:2_(x"Ô½6úZÂ6úswapperkworker/0:2_(È6úkworker/0:2_(½w£T.­Ï6úkworker/0:2_(swapper#cdú#Ìgdú!Ôkdú"tndú!odú"œydú#è>—ú!óD—ú"þH—ú#Oµœú!öœú& ½œú€"„x*AÏœúkworker/0:2_(x";ØœúvÜœúswapperkworker/0:2_(#¾âœú!)äœú&éœú€"„x*"lú‹ úkworker/0:2_( ;ßT.Ñ úkworker/0:1.&xúkworker/0:2_(¬ÃçT.Ýúkworker/0:2_(kworker/0:1.&ëúkworker/0:1.&ÒŒ”T.˜ úkworker/0:1.&swapper#0Êú#; Êú!##Êú"‹?Êú!ù@Êú"ÞIÊú#Ú8Ïú!~:Ïú&â?Ïú€ †x*ØOÏúkworker/0:1.&x"kYÏú¯]Ïúswapperkworker/0:1.&ÄcÏúkworker/0:1.& ˜©T.,kÏúkworker/0:1.&swapper#)µÏú!޶Ïú&û»Ïú€ †x*ÉÕÏúkworker/0:1.&x"zßÏú²ãÏúswapperkworker/0:1.&CéÏúkworker/0:1.&1ɽT.-ðÏúkworker/0:1.&swapper#Zúüú!fýúýúkworker/u:3px‚ ýúkworker/0:1.&x"/ýúvýúswapperkworker/u:3pöýúkworker/u:3p'áŸT.ýúkworker/u:3pkworker/0:1.&U)ýúkworker/0:1.& XËT.“0ýúkworker/0:1.&swapperÍÁýúmd1_raid1xhÆýúswappermd1_raid13éÌýú€bƒx€¨†0 -hÏýú€bƒxmd1_raid1.³Õýú€bƒxmd1_raid10OÙýúmd1_raid13wÛýú€bƒx€¨†0 -ÆÝýú€bƒxmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽòáýúÈ7¡w-ýÈ7Ð~€.òáýú€bƒxmd1_raid1'éýú€bƒxmd1_raid11øíýúmd1_raid1(òýú€bƒxmd1_raid1'þú€bƒxmd1_raid11®þúmd1_raid1(þú€bƒxmd1_raid1œþúmd1_raid1>RúJ“.Áþúmd1_raid1swapper#\û!A^û&ìaû€bƒx*óoûkworker/0:1.&x"Nxû¶|ûswapperkworker/0:1.&P‚ûkworker/0:1.&DœÞT.L‰ûkworker/0:1.&swapperÍÁûahci#ðËû ÁÍûAÏûuhci_hcd:usb3 ÙÓû›Õûeth1 Úû!âÜû&Lßû€bƒx*òûkworker/0:1.&x"@úû„þûswapperkworker/0:1.&ûkworker/0:1.&WóðT.A ûkworker/0:1.&swapper#Õ/û#Ù/û!9Ü/ûãà/ûltt-kconsumerd2²ä/ûltt-kconsumerd2x"Àè/û!àé/û"ó/û¢÷/ûswapperltt-kconsumerd2®0û•0û!öP0ûœ0û!ö€@ŽK=¿(0û20û!HŽK=¿t$0ûN&0û"ÂQ0û\T0û"-¨\0ûÐ…0 ltt-kconsumerdef0ûmd1_raid1Kn0ûp0û"€,u0ûúv0ûÝ"€i€0ûÝ[‚0û!ö€„0ûz‡0û°Ä@ ÿÿÿÿÿÿÿÿÅ“0ûltt-kconsumerd2¶¯pX /Sœ0ûltt-kconsumerd2swapper#‚ç4û!‰é4û&Ûî4û€Š‚x*,þ4ûkworker/0:1.&x"ì5û3 5ûswapperkworker/0:1.& 5ûkworker/0:1.&Ä4RU.Y5ûkworker/0:1.&swapper#±´bû! »bû"¾bû#*•û#ß“•û!7–•û"Eš•û!A›•û"奕û#}mÈû!ƒsÈû"fuÈû#Jûû#4Nûû!Pûû"‹Qûû!xRûû"-[ûû#þ‰ü!–‹ü&ûü€…x*b¡ükworker/0:1.&x"ªªü ¯üswapperkworker/0:1.&µükworker/0:1.&ÓgU.2¼ükworker/0:1.&swapper#®çü!7éü&Œîü€…x*iükworker/0:1.&x"¢üéüswapperkworker/0:1.&Pükworker/0:1.&ÂÉzU."ükworker/0:1.&swapper#µ&.ü!ˆ,.ü"×..ü#Daü#‘aü!àaü"{ aü!q aü"‹aü#Æ×“ü!Pâ“ü"èã“ü#²»Æü#´¿Æü!©ÁÆü"vÃÆü!xÄÆü"®ÍÆü#ùü! œùü"¨ùü#v,ý#G|,ý!°~,ý"r€,ý!e,ý"x’,ýÃ.-ýmd1_raid1xÙ3-ýswappermd1_raid13æ;-ý€jƒx€°†0 -b>-ý€jƒxmd1_raid1.VD-ý€jƒxmd1_raid10ìG-ýmd1_raid13bJ-ý€jƒx€°†0 -cL-ý€jƒxmd1_raid1.ùO-ý€jƒxmd1_raid1'âT-ý€jƒxmd1_raid11£Z-ýmd1_raid1(¼_-ý€jƒxmd1_raid1'tn-ý€jƒxmd1_raid11¸r-ýmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽTv-ýÈ7x¼BýÈ70n€(Tv-ý€jƒxmd1_raid1ˆ-ýmd1_raid1xZè—U.U“-ýmd1_raid1swapperôÅ-ýmd1_raid1xÔÊ-ýswappermd1_raid13úÑ-ý€†x€X‰0 -:Ô-ý€†xmd1_raid1.eÙ-ý€†xmd1_raid10Ü-ýmd1_raid13·Þ-ý€†x€X‰0 -Ðà-ý€†xmd1_raid1.Hä-ý€†xmd1_raid1'ûè-ý€†xmd1_raid11Hí-ýmd1_raid1(ñ-ý€†xmd1_raid1'}.ý€†xmd1_raid11.ýmd1_raid1(‰.ý€†xmd1_raid1À.ýmd1_raid1N÷åU.â.ýmd1_raid1swapper®_.ýmd1_raid1x¯d.ýswappermd1_raid13Øk.ý€’‚x€Ø…0 -n.ý€’‚xmd1_raid1.çt.ý€’‚xmd1_raid10Vx.ýmd1_raid13´z.ý€’‚x€Ø…0 -Ó|.ý€’‚xmd1_raid1.À€.ý€’‚xmd1_raid1'R….ý€’‚xmd1_raid11Љ.ýmd1_raid1(ÆŒ.ý€’‚xmd1_raid1'x˜.ý€’‚xmd1_raid11Õ›.ýmd1_raid1(¾.ý€’‚xmd1_raid1š©.ýmd1_raid1½K´1V.…².ýmd1_raid1swapper%ñ.ýmd1_raid1xÕõ.ýswappermd1_raid13÷ü.ý€Bx€ˆ„0 -Iÿ.ý€Bxmd1_raid1.Ö/ý€Bxmd1_raid10â/ýmd1_raid13" /ý€Bx€ˆ„0 -A /ý€Bxmd1_raid1.=/ý€Bxmd1_raid1'¢/ý€Bxmd1_raid11Ë/ýmd1_raid1(ì/ý€Bxmd1_raid1']*/ý€Bxmd1_raid11¨-/ýmd1_raid1(|//ý€Bxmd1_raid1,:/ýmd1_raid10Kä|V.QB/ýmd1_raid1swapperMŽ/ýmd1_raid1x6“/ýswappermd1_raid13„™/ý€"…x€hˆ0 -Í›/ý€"…xmd1_raid1.E¢/ý€"…xmd1_raid10Q¥/ýmd1_raid13ˆ§/ý€"…x€hˆ0 -ã©/ý€"…xmd1_raid1.(­/ý€"…xmd1_raid1'²/ý€"…xmd1_raid11:¶/ýmd1_raid1(‹¹/ý€"…xmd1_raid1'¹Ç/ý€"…xmd1_raid11"Ë/ýmd1_raid1(#Í/ý€"…xmd1_raid1Ú/ýmd1_raid1åMÉÊV.äá/ýmd1_raid1swapperå·:ýahci#ðÁ:ý ÓÃ:ýbÅ:ýuhci_hcd:usb3 ýÉ:ý_Ë:ýeth1 Ð:ý!ÊÒ:ý&¾Õ:ý€jƒx*"é:ý#;I;ý!‹J;ý&M;ý€jƒx*"üc;ý#þž?ý!Z ?ý&Ê¢?ý€†x*"öµ?ý#H€Bý!ãBý&v…Bý€’‚x*"›“Bý#°Bý!Y±Bý&´Bý€’‚x*ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ<ÅBýÈ7„ƒÚiÉ7€"<ÅBýbabeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_70000755000175000017500000035000011616325072020154 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽL È7`^ŸzÈ7h€ÿÿÔ¯yÈ7ltt-kconsumerd2x”¯ykworker/0:1ltt-kconsumerd2þ¨¯yÒ¿¯y/PžË=¿@ͯy/xݯy°žË=¿ÿÿÿÿÿÿÿÿ ã¯yËç¯y/žË=¿Íú¯y/Ú°yØr@AÿÏ€-çT°y0 ltt-kconsumerd3‹b°y€Âüw€0 -=e°y€Âüwltt-kconsumerd.{°y€Âüwltt-kconsumerd'7ƒ°y€Âüwltt-kconsumerd(V”°y€Âüwltt-kconsumerd#µ°yltt-kconsumerd2)oÞM %¿°yltt-kconsumerd2kworker/0:1#pBØy#7EØy #HØy!ÇKØy"¯NØy!ÉOØy"™UØy!€VØy "¶YØy #P" z#œ$ z !õ( z"œ* z!Œ+ z "_. z # õ=z#.÷=z #ìý=z!8>z"Í>z!®>z"˜>z!Ž>z " >z #>Ñpz#¥Ópz !’Þpz"Nàpz!Mápz "Õæpz 4 qzlttng2xÜqzkworker/0:1lttng2\qz/ƒ(qz0=,qz0F8qz znKÿ znKÿ·ùõ`s;qz›=qz "ÿÿÿÿ=Dqz üõ`±Tqzüõ`11üõ`pì@veqzlttng27M C’qzkworker/7:0x¢–qzlttng2kworker/7:0}Áqzkworker/7:0»/r]ØL Åqzkworker/7:0lttng2·Ìqz1<üqzç<h·—õ`ç¨ÿÿÿÿÿÿÿ Rärzlttng2ñszbash1eszlttng2ˆXÆM %#szlttng2@kworker/0:1±t‘zahci#…‘z n‘zɃ‘zuhci_hcd:usb3 ‹ˆ‘z°Š‘zeth1 ‘z!,“‘z&2™‘z€Âüw(!¤‘zltt-kconsumerd2xbº‘zkworker/7:0x"AÆ‘z0Ë‘zkworker/0:1kworker/7:0#Ò‘zkworker/7:09ÿŒÙL ¨Ô‘zkworker/7:0ltt-kconsumerd2-dú‘zÈ0 $ltt-kconsumerd31’z€‚ýw€È0 -ª’z€‚ýwltt-kconsumerd.s ’z€‚ýwltt-kconsumerd'ì’z€‚ýwltt-kconsumerd(7’z€‚ýwltt-kconsumerdw)’zltt-kconsumerd2$W“5M #2’zltt-kconsumerd2kworker/0:1g€žzltt-kconsumerd2x³…žzkworker/0:1ltt-kconsumerd2žz_—žz¯ŽK=¿Ô¢žz°¥žzÊàCf>¿€àCf>¿2\«žzltt-kconsumerd2,+l}M Á²žzltt-kconsumerd2kworker/0:13þžzltt-kconsumerd2xïŸzkworker/0:1ltt-kconsumerd2ôŸzÊ)ŸzÊàCf>¿°ž>¿°ž>¿cŸzÊñŸzPb@ÿÿÿÿÿÿÿÿ°ž>¿%$Ÿz_&Ÿz¯ŽK=¿°ž>¿Q+Ÿzj-ŸzÊàCf>¿€àCf>¿2Ù0Ÿzltt-kconsumerd232Ÿ}M «7Ÿzltt-kconsumerd2kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽã\ŸzÈ7WÉ£zÈ7€€ã\Ÿzltt-kconsumerd2x9dŸzkworker/0:1ltt-kconsumerd2ÿgŸzÊ—uŸzÊàCf>¿°ž>¿ؤ>¿°ž>¿ÈwŸzÊzŸz0“@ÿÿÿÿÿÿÿÿ°ž>¿UŸzzƒŸz¯ŽK=¿°ž>¿£‡Ÿz‰ŸzÊàCf>¿€àCf>¿2(Ÿzltt-kconsumerd2;1mÐ}M ꔟzltt-kconsumerd2kworker/0:1™ÇŸzltt-kconsumerd2xCÌŸzkworker/0:1ltt-kconsumerd2÷ÏŸzÊÑÜŸzÊàCf>¿°ž>¿°ž>¿´ÞŸzʦàŸz0“@ÿÿÿÿÿÿÿÿ°ž>¿ÖæŸzéŸz¯ŽK=¿°ž>¿ðíŸzcðŸzÊàCf>¿€àCf>¿2¥óŸzltt-kconsumerd2—,ý}M )úŸzltt-kconsumerd2kworker/0:10/ zltt-kconsumerd2x³3 zkworker/0:1ltt-kconsumerd2p7 zÊME zÊàCf>¿°ž>¿°ž>¿úF zÊI z £@ÿÿÿÿÿÿÿÿ°ž>¿ÏP zèR z¯ŽK=¿°ž>¿ W z Y zÊàCf>¿€àCf>¿2?\ zltt-kconsumerd2Ÿ-£*~M ™b zltt-kconsumerd2kworker/0:1ož zltt-kconsumerd2xÚ¢ zkworker/0:1ltt-kconsumerd2p¦ zÊö³ zÊàCf>¿°ž>¿°ž>¿޵ zÊq· z £@ÿÿÿÿÿÿÿÿ°ž>¿ü¿ z z¯ŽK=¿°ž>¿2Æ zcÈ zÊàCf>¿€àCf>¿2‡Ë zltt-kconsumerd2«-NX~M ÞÑ zltt-kconsumerd2kworker/0:1Êú zltt-kconsumerd2xàÿ zkworker/0:1ltt-kconsumerd2|¡zʹ¡zÊàCf>¿°ž>¿°ž>¿Q¡zÊ@¡z`Ä@ÿÿÿÿÿÿÿÿ°ž>¿6¡zU ¡z¯ŽK=¿°ž>¿~$¡zs&¡zÊàCf>¿€àCf>¿2Ö)¡zltt-kconsumerd2©/÷‡~M v,¡zltt-kconsumerd2kworker/0:1…_¡zltt-kconsumerd2xd¡zkworker/0:1ltt-kconsumerd2•g¡zÊqs¡zÊàCf>¿°ž>¿@°ž>¿xu¡zʾw¡z`Ä@ ÿÿÿÿÿÿÿÿ°ž>¿¿‚¡zØ„¡z¯ŽK=¿°ž>¿¡ˆ¡zŸŠ¡zÊàCf>¿€àCf>¿2Û¡zltt-kconsumerd2°.§¶~M ?¡zltt-kconsumerd2kworker/0:1ÊÅ¡zltt-kconsumerd2x8Ê¡zkworker/0:1ltt-kconsumerd2ΡzÊÝÙ¡zÊàCf>¿°ž>¿ °ž>¿‡Û¡zÊXÝ¡z°Ä@ ÿÿÿÿÿÿÿÿ°ž>¿}è¡zíê¡z¯ŽK=¿°ž>¿Îî¡zñ¡z°Ä@ ÿÿÿÿÿÿÿÿ°ž>¿ðù¡zߢzöS¢z¢zö€@ŽK=¿Š¢z¸¢zHŽK=¿#õ®£z#G¸£z ¼£zltt-kconsumerd2àõ‡¬€M #œ½£z!zÁ£z"ÚÄ£z!ÜÅ£z"æÇ£zÁüÁõ©‹à‡îØF²ÿbÊ™HŽ>Ê£zÈ7qN|È7ø~€!>Ê£z "®Ï£z `C®zNF®z-$p®z0 ltt-kconsumerd3Mw®z€ºüw€0 -“y®z€ºüwltt-kconsumerd.솮z€ºüwltt-kconsumerd'É‹®z€ºüwltt-kconsumerd(þ˜®z€ºüwltt-kconsumerd:±®zltt-kconsumerd2“õ ¢‹M µ®zltt-kconsumerd2kworker/0:1#mÖz!†˜Öz"¡›Öz#‹h {!Ft {"Îv {#ºD<{#©M<{ !}R<{"T<{!}U<{ #Ya<{ "Ob<{ !]c<{ #j<{ "k<{ !l<{ "9o<{ #é!o{#)o{ !ˆ.o{"1o{!ú1o{ "44o{ #zþ¡{!` ¢{"Ä¢{#ÛÔ{#¹àÔ{ !ÿåÔ{"·èÔ{!ªéÔ{ #‡ñÔ{ "zòÔ{ !yóÔ{ "QúÔ{ #i¸|#‹Á| !)É|"ÏË|!ÂÌ| "’Ï|  |ahci#— | ³ |6 |uhci_hcd:usb3 ¹! | # |eth1 Ë' |! * |&í; |€ºð0+*XF |md1_raid1éK |md1_raid1xja |kworker/7:0x"Ôl |ës |kworker/0:1kworker/7:0{ |kworker/7:0/.ÙL æ‡ |kworker/7:0kworker/0:1W§ |md1_raid1x(¬ |kworker/0:1md1_raid13ƒ´ |€º|x€€0 -· |€º|xmd1_raid1.À |€º|xmd1_raid10^Ç |md1_raid13 Ê |€º|x€€0 ->Ì |€º|xmd1_raid1.RÓ |€º|xmd1_raid1'ÜÙ |€º|xmd1_raid11™à |md1_raid1(µå |€º|xmd1_raid1'þó |€º|xmd1_raid11õù |md1_raid1(lþ |€º|xmd1_raid1‚ |md1_raid1”hÀÊÝL   |md1_raid1kworker/0:1é& |md1_raid1xü+ |kworker/0:1md1_raid13ê1 |€ú|x€@€0 -ä7 |€ú|xmd1_raid1.%> |€ú|xmd1_raid10A |md1_raid13C |€ú|x€@€0 -|€Â|xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽM|È7 +1|È7€'M|€Â|xmd1_raid11uS|md1_raid1(aU|€Â|xmd1_raid1Ë`|md1_raid1”Jƒ¦ÞL rh|md1_raid1kworker/0:1b^|md1_raid1xBc|kworker/0:1md1_raid13h|€}x€H€0 -×j|€}xmd1_raid1.ªp|€}xmd1_raid10¤s|md1_raid13u|€}x€H€0 -4w|€}xmd1_raid1.©z|€}xmd1_raid1'‡~|€}xmd1_raid11΂|md1_raid1(Ý…|€}xmd1_raid1'è•|€}xmd1_raid11]™|md1_raid1(L›|€}xmd1_raid1g©|md1_raid1–KòÞL °|md1_raid1kworker/0:1k|md1_raid1xë|kworker/0:1md1_raid131$|€B}x€ˆ€0 -b&|€B}xmd1_raid1.ý*|€B}xmd1_raid10Í-|md1_raid13k/|€B}x€ˆ€0 -l1|€B}xmd1_raid1.æ5|€B}xmd1_raid1'Ù9|€B}xmd1_raid11á=|md1_raid1(Û@|€B}xmd1_raid1'ÄN|€B}xmd1_raid11ŸR|md1_raid1(ÙT|€B}xmd1_raid1óa|md1_raid10HI:ßL i|md1_raid1kworker/0:1 ¡$|md1_raid1xÐ¥$|kworker/0:1md1_raid13s«$|€Ê|x€€0 -Å­$|€Ê|xmd1_raid1.u²$|€Ê|xmd1_raid10`µ$|md1_raid13 ·$|€Ê|x€€0 -#¹$|€Ê|xmd1_raid1.ݼ$|€Ê|xmd1_raid1'‘À$|€Ê|xmd1_raid11™Ä$|md1_raid1(ŠÇ$|€Ê|xmd1_raid1'zÔ$|€Ê|xmd1_raid11Ñ×$|md1_raid1(ËÙ$|€Ê|xmd1_raid1àå$|md1_raid1EEŽßL âì$|md1_raid1kworker/0:1 í)|ahci#áö)| šø)|ðù)|uhci_hcd:usb3 [þ)|®ÿ)|eth1 R*|!*|&× *|€Â|x*p*|ltt-kconsumerd2K*|ltt-kconsumerd2x"D-*|¬1*|kworker/0:1ltt-kconsumerd2CC*|ìE*|Ý‚R*|ݪT*|öŒW*|ÕY*|ö£[*|q]*|ö€@ŽK=¿Í^*|Å`*|HŽK=¿j*|l*|aš*|*| -”¦*|P€0 ltt-kconsumerd¥°*|md1_raid1\º*|~¼*|Á*|ltt-kconsumerd2I§V:M ’É*|ltt-kconsumerd2kworker/0:1Æü0|md1_raid1x²1|kworker/0:1md1_raid13»1|€J}x€€0 -R 1|€J}xmd1_raid1.X1|€J}xmd1_raid10Ä1|md1_raid13°1|€J}x€€0 -É1|€J}xmd1_raid1.˜1|€J}xmd1_raid1'E 1|€J}xmd1_raid11@%1|md1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™Hޱ)1|È7Ó°P|È7 €(±)1|€J}xmd1_raid1'D<1|€J}xmd1_raid11Ô?1|md1_raid1(ØA1|€J}xmd1_raid1ªP1|md1_raid1–T'àL ¨X1|md1_raid1kworker/0:1U,7|md1_raid1x 17|kworker/0:1md1_raid1367|€Ò|x€€0 -Ð87|€Ò|xmd1_raid1.×=7|€Ò|xmd1_raid10Î@7|md1_raid13xB7|€Ò|x€€0 -‘D7|€Ò|xmd1_raid1.oH7|€Ò|xmd1_raid1'bL7|€Ò|xmd1_raid11¬P7|md1_raid1(úS7|€Ò|xmd1_raid1'b7|€Ò|xmd1_raid11Xe7|md1_raid1(>g7|€Ò|xmd1_raid1¢u7|md1_raid1æIüpàL Kx7|md1_raid1kworker/0:1#€:|!`¥:|"è:|4Z=|md1_raid1xä^=|kworker/0:1md1_raid13`d=|€}x€X€0 -‘f=|€}xmd1_raid1.|l=|€}xmd1_raid10^o=|md1_raid13öp=|€}x€X€0 -÷r=|€}xmd1_raid1.·v=|€}xmd1_raid1'æz=|€}xmd1_raid11!=|md1_raid1(i‚=|€}xmd1_raid1'=|€}xmd1_raid11‘“=|md1_raid1(h•=|€}xmd1_raid1Š =|md1_raid1G¸àL E£=|md1_raid1kworker/0:1åðB|ahci#1ûB| çüB|pþB|uhci_hcd:usb3 C|‘C|eth1 ; C|!ü C|&&C|€ }x*ÒC|ltt-kconsumerd2hC|ltt-kconsumerd2x"‡/C| 4C|kworker/0:1ltt-kconsumerd2ÿ>C|AC|Ý "LC|Ý,NC|ö~PC|»RC|öìfC|ÿhC|ö€@ŽK=¿ajC|†lC|HŽK=¿“tC|yvC|ŸC|΢C|0-D«C|˜€0 ltt-kconsumerdLµC|md1_raid1#½C|?¿C| ÛÂC|ltt-kconsumerd2ߤ¥4‘M ÆC|ltt-kconsumerd2kworker/0:1 J|md1_raid1x*J|kworker/0:1md1_raid13uJ|€Ú|x€ €0 -J|€Ú|xmd1_raid1.ÊJ|€Ú|xmd1_raid10K#J|md1_raid13.%J|€Ú|x€ €0 -D'J|€Ú|xmd1_raid1.y+J|€Ú|xmd1_raid1'Õ/J|€Ú|xmd1_raid11 4J|md1_raid1(u8J|€Ú|xmd1_raid1'¡HJ|€Ú|xmd1_raid11OLJ|md1_raid1(tNJ|€Ú|xmd1_raid1È]J|md1_raid12RÐûáL ¹`J|md1_raid1kworker/0:1ìŽP|md1_raid1xc“P|kworker/0:1md1_raid13÷˜P|€Z}x€ €0 -I›P|€Z}xmd1_raid1.\ P|€Z}xmd1_raid10V£P|md1_raid13¥P|€Z}x€ €0 -+§P|€Z}xmd1_raid1.«P|€Z}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽz¯P|È7@YÒ}È7 €'z¯P|€Z}xmd1_raid11C¶P|md1_raid1(޹P|€Z}xmd1_raid1'ˆÇP|€Z}xmd1_raid11åÊP|md1_raid1(ÔÌP|€Z}xmd1_raid1ZÚP|md1_raid1çK·GâL ÝP|md1_raid1kworker/0:1:˜Z|ahci#¢Z| C¤Z|É¥Z|uhci_hcd:usb3 gªZ|Ï«Z|eth1 ˆ°Z|!U³Z|&?·Z|€R}x*aÂZ|ltt-kconsumerd2÷ÅZ|ltt-kconsumerd2x"ØZ|LÜZ|kworker/0:1ltt-kconsumerd2æZ|!éZ|Ý0#óZ|Ý$õZ|ö¾÷Z|ÇúZ|°Ä@ ÿÿÿÿÿÿÿÿê[|« [|ö°[|{[|ö€@ŽK=¿Ë[|«[|HŽK=¿Ç[|˜ [|æG[|¤J[|P- S[|(€0 ltt-kconsumerdÅ\[|md1_raid1ud[|¬f[|@{j[|ltt-kconsumerd2ܤّM –m[|ltt-kconsumerd2kworker/0:1¶Œ`|md1_raid1x´‘`|kworker/0:1md1_raid13Þ—`|€}x€`€0 -?š`|€}xmd1_raid1.] `|€}xmd1_raid10A¤`|md1_raid13¦`|€}x€`€0 -+¨`|€}xmd1_raid1.å«`|€}xmd1_raid1'h°`|€}xmd1_raid11Tµ`|md1_raid1(2¹`|€}xmd1_raid1';È`|€}xmd1_raid11ãË`|md1_raid1(ÉÍ`|€}xmd1_raid1ÓÛ`|md1_raid1ªO ˆãL  Þ`|md1_raid1kworker/0:1#üzm|#Œ~m| !Òƒm|"±†m|!ׇm| "Ým| jÓ| "½CÓ| #}!ð}"¬}#Ðì8}#yï8} !xó8}"øô8}!ëõ8} "„ÿ8} #jÂk}#ƒÈk} !?Ík}"Ïk}!ñÏk} "Òk} #JŸž}!U¬ž}"®ž}« }md1_raid1xÜ  }kworker/0:1md1_raid13Ö }€z}x€À€0 -4 }€z}xmd1_raid1.ë }€z}xmd1_raid10E  }md1_raid13ß" }€z}x€À€0 -æ$ }€z}xmd1_raid1.ß( }€z}xmd1_raid1'b- }€z}xmd1_raid11¶3 }md1_raid1(–8 }€z}xmd1_raid1'CF }€z}xmd1_raid11J }md1_raid1(M }€z}xmd1_raid1¢Y }md1_raid1V ÞãL Df }md1_raid1kworker/0:1#…Ñ}!@ŠÑ}"³ŒÑ})CÒ}md1_raid1xèGÒ}kworker/0:1md1_raid13¬MÒ}€ê|x€0€0 -ÝOÒ}€ê|xmd1_raid1.®TÒ}€ê|xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽùWÒ}È7­Ï.ƒÈ7¸€0ùWÒ}md1_raid13|\Ò}€ê|x€0€0 -€^Ò}€ê|xmd1_raid1.ObÒ}€ê|xmd1_raid1'{fÒ}€ê|xmd1_raid11¹jÒ}md1_raid1(nÒ}€ê|xmd1_raid1'ÚÒ}€ê|xmd1_raid11šƒÒ}md1_raid1(k…Ò}€ê|xmd1_raid1$“Ò}md1_raid1ÐPÚ.äL :›Ò}md1_raid1kworker/0:1ÑÆÒ}md1_raid1x´ËÒ}kworker/0:1md1_raid13ÑÒ}€"}x€h€0 -jÓÒ}€"}xmd1_raid1.ÙÒ}€"}xmd1_raid10ÝÛÒ}md1_raid13;ÞÒ}€"}x€h€0 -ZàÒ}€"}xmd1_raid1.¢ãÒ}€"}xmd1_raid1'žçÒ}€"}xmd1_raid11ÄëÒ}md1_raid1(ßîÒ}€"}xmd1_raid1'3ûÒ}€"}xmd1_raid11þÒ}md1_raid1(aÓ}€"}xmd1_raid18 Ó}md1_raid1EòsäL vÓ}md1_raid1kworker/0:1#£`~!If~"qh~#=57~!(A7~",C7~#aj~!×j~"« j~#·îœ~!ûœ~"Úüœ~#óËÏ~!GÖÏ~"Ó×Ï~#±!˶"f¸#ò‹5!Ø5"d’5#ëah!Tlh"×mh#¶?›!ãH›]M›kworker/7:0x"×Q›mU›kworker/0:1kworker/7:0d›kworker/7:0aQëÚL šm›kworker/7:0kworker/0:1#¤Î!ú'Î"×)Î#¾€!w€"! €#ôÜ3€!Òã3€"må3€#î¹f€!L¿f€"ÛÀf€#-™€!˜™€"Lš™€#ækÌ€!~wÌ€"%yÌ€#2Pÿ€!Vÿ€"©Wÿ€#”%2!ò.2"02ß3md1_raid1xª3kworker/0:1md1_raid138#3€º}x€0 -l%3€º}xmd1_raid1.É+3€º}xmd1_raid102/3md1_raid13–13€º}x€0 -š33€º}xmd1_raid1.á73€º}xmd1_raid1'v<3€º}xmd1_raid11¶A3md1_raid1(6F3€º}xmd1_raid1'\S3€º}xmd1_raid11µW3md1_raid1( [3€º}xmd1_raid1Ãg3md1_raid1÷SéÇäL ýr3md1_raid1kworker/0:1È7ahci#ô§7 •©7 «7uhci_hcd:usb3 w¯7Á°7eth1 vµ7!¸7&õº7€º}x*%Ö7kworker/7:0x"˜Þ7ââ7kworker/0:1kworker/7:0ëè7kworker/7:0•æþÚL kð7kworker/7:0kworker/0:1#ý e!e"e<Íemd1_raid1xÂÑekworker/0:1md1_raid13ï×e€ò|x€8€0 ->Úe€ò|xmd1_raid1.Õße€ò|xmd1_raid10ãemd1_raid13ôäe€ò|x€8€0 -çe€ò|xmd1_raid1.¸êe€ò|xmd1_raid1'Ûîe€ò|xmd1_raid11póemd1_raid1(÷e€ò|xmd1_raid1'f€ò|xmd1_raid11¥fmd1_raid1(‘f€ò|xmd1_raid1Àfmd1_raid1GF0åL 4fmd1_raid1kworker/0:1#Þè—!xî—"Íð—#“¼Ê!ÆÊ"—ÇÊ#v™ý!÷¢ý"Œ¤ý#Œv0‚!ç‚0‚"|„0‚#­Rc‚!Sac‚"÷bc‚#ø/–‚!ó>–‚"y@–‚#! É‚!*É‚"°É‚#ûèû‚!öû‚"™÷û‚ÁüÁõ©‹à‡îØF²ÿbÊ™HŽzÈ.ƒÈ7ZŠø…È7€#zÈ.ƒ!°Õ.ƒÚ.ƒltt-kconsumerd2Þ.ƒltt-kconsumerd2x" â.ƒ™æ.ƒkworker/0:1ltt-kconsumerd2íû.ƒãÿ.ƒöõ/ƒÛ/ƒö€@ŽK=¿O/ƒ;/ƒHŽK=¿W/ƒ./ƒ%/ƒ`-›G/ƒp€0 ltt-kconsumerdZR/ƒmd1_raid17Z/ƒO\/ƒP¶a/ƒŸc/ƒÝPˆn/ƒÝnp/ƒöŠr/ƒou/ƒ°Ä@ ÿÿÿÿÿÿÿÿ^ƒ/ƒltt-kconsumerd2&¦§’M 1/ƒltt-kconsumerd2kworker/0:1#É«aƒ!2²aƒ"®´aƒ#€”ƒ!Š”ƒ"ÆŒ”ƒ#æ\ǃ!Miǃ"6kǃ#"9úƒ!ÇEúƒ"kGúƒ#g-„!ð!-„"y#-„#Õò_„!aû_„"êü_„#,Ð’„!PÚ’„"*Ü’„ ”“„md1_raid1x™“„kworker/0:1md1_raid13DŸ“„€:~x€€0 -·¡“„€:~xmd1_raid1.ç“„€:~xmd1_raid10V«“„md1_raid13B­“„€:~x€€0 -^¯“„€:~xmd1_raid1.³“„€:~xmd1_raid1'€·“„€:~xmd1_raid11r¼“„md1_raid1(eÀ“„€:~xmd1_raid1'õÏ“„€:~xmd1_raid11vÓ“„md1_raid1(SÕ“„€:~xmd1_raid1_á“„md1_raid1N±æL é“„md1_raid1kworker/0:10õ“„md1_raid1xú“„kworker/0:1md1_raid13tÿ“„€z~x€À0 -Ô„€z~xmd1_raid1.-”„€z~xmd1_raid10< ”„md1_raid13þ ”„€z~x€À0 -”„€z~xmd1_raid1.¡”„€z~xmd1_raid1'¾”„€z~xmd1_raid11프md1_raid1(&”„€z~xmd1_raid1'Ž'”„€z~xmd1_raid11+”„md1_raid1(æ,”„€z~xmd1_raid1Á6”„md1_raid1B4óæL P>”„md1_raid1kworker/0:1Ê»„ahci#çÅ„  Ç„ É„uhci_hcd:usb3 »Í„ Ï„eth1 ÊÓ„!vÖ„&ŠÚ„€z~x*më„kworker/7:0x"õ„tù„kworker/0:1kworker/7:0þÿ„kworker/7:0EìyÛL µž„kworker/7:0kworker/0:1#A´Å„!E¼Å„"v¾Å„#e‰ø„!™ø„"ø„#9f+…!§q+…"?s+…#ûC^…!ÃN^…"IP^…#w ‘…!«)‘…"¦+‘…#¦üÃ…!, Ä…"¯ Ä…#ZÚö…!çäö…"gæö…[,ø…md1_raid1x 1ø…kworker/0:1md1_raid13Å:ø…€ú~x€@‚0 -2=ø…€ú~xmd1_raid1.VCø…€ú~xmd1_raid10ÈFø…md1_raid13Iø…€ú~x€@‚0 -Kø…€ú~xmd1_raid1.,Oø…€ú~xmd1_raid1'‚Sø…€ú~xmd1_raid11•Xø…md1_raid1(3]ø…€ú~xmd1_raid1'hø…€ú~xmd1_raid115mø…md1_raid1(ªpø…€ú~xmd1_raid1}ø…md1_raid1mS¡FçL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽËˆø…È7~âUŠÈ7¸€ˈø…md1_raid1kworker/0:1œ¨ø…md1_raid1x6®ø…kworker/0:1md1_raid13'¶ø…€:x€€‚0 -j¸ø…€:xmd1_raid1.Žø…€:xmd1_raid10pÁø…md1_raid13YÃø…€:x€€‚0 -Éø…€:xmd1_raid1.0Îø…€:xmd1_raid1';Òø…€:xmd1_raid11‹Öø…md1_raid1(!Úø…€:xmd1_raid1'&äø…€:xmd1_raid11éçø…md1_raid1(öéø…€:xmd1_raid1ƒöø…md1_raid1LPí–çL fþø…md1_raid1kworker/0:1Ž3ù…md1_raid1x58ù…kworker/0:1md1_raid13x@ù…€2}x€x€0 -ÁBù…€2}xmd1_raid1.æGù…€2}xmd1_raid10"Kù…md1_raid13¼Mù…€2}x€x€0 -ÒOù…€2}xmd1_raid1.#Sù…€2}xmd1_raid1'3Xù…€2}xmd1_raid11ò\ù…md1_raid1(…`ù…€2}xmd1_raid1'\kù…€2}xmd1_raid11×nù…md1_raid1(Òpù…€2}xmd1_raid1/}ù…md1_raid1ÞKËâçL ë„ù…md1_raid1kworker/0:1#%½)†!:Ã)†"æÅ)†Án*†md1_raid1xYs*†kworker/0:1md1_raid13Ïx*†€‚~x€È0 - {*†€‚~xmd1_raid1.4€*†€‚~xmd1_raid10ƒ*†md1_raid13Þ„*†€‚~x€È0 -è†*†€‚~xmd1_raid1.oŠ*†€‚~xmd1_raid1'}Ž*†€‚~xmd1_raid11¬’*†md1_raid1(÷•*†€‚~xmd1_raid1'¢*†€‚~xmd1_raid11¡¥*†md1_raid1(´§*†€‚~xmd1_raid1ý²*†md1_raid1»D†'èL Sº*†md1_raid1kworker/0:1š½.†ahci#yÆ.† )È.†‘É.†uhci_hcd:usb3 #Î.†»Ï.†eth1 bÔ.†!ØÖ.†&lÙ.†€‚~x*Üç.†kworker/7:0x"ð.†Wô.†kworker/0:1kworker/7:0ôù.†kworker/7:0öâŒÛL /†kworker/7:0kworker/0:1#Ê›\†!¡\†""¤\†#½q†!÷}†"†#ÜL†!W†" X†#Ï*õ†!#5õ†"²6õ†#w(‡!–(‡":(‡#§êZ‡!3ïZ‡"¿ðZ‡#À‡!ˆÎ‡";Ї#-§À‡!׫À‡"l­À‡#ºyó‡!¦…ó‡" ‡ó‡#J\&ˆ!>b&ˆ"d&ˆ#§3Yˆ!=Yˆ"‹>Yˆ#ðŒˆ!qŒˆ" Œˆ#$í¾ˆ!–÷¾ˆ" ù¾ˆ#vÊñˆ!÷Öñˆ"’Øñˆ#§$‰!ª°$‰"}³$‰#'‹W‰!¼W‰"<‘W‰# aЉ#¸kЉ!ûmЉ"~oЉ!tpЉ"ÞuЉ’/‹‰md1_raid1x`4‹‰kworker/0:1md1_raid13î<‹‰€‚}x€È€0 -I?‹‰€‚}xmd1_raid1.E‹‰€‚}xmd1_raid10mH‹‰md1_raid13yK‹‰€‚}x€È€0 -}M‹‰€‚}xmd1_raid1.ŽQ‹‰€‚}xmd1_raid1'(W‹‰€‚}xmd1_raid11M\‹‰md1_raid1(è`‹‰€‚}xmd1_raid1'¸l‹‰€‚}xmd1_raid11¿q‹‰md1_raid1(¹t‹‰€‚}xmd1_raid10…‹‰md1_raid1ŸW%èL V‹‰md1_raid1kworker/0:1#F?½‰!9J½‰"÷L½‰#?ð‰#•#ð‰!&ð‰"(ð‰!)ð‰"²-ð‰#Oþ"Š!‹#Š"#Š#ÌÜUŠÁüÁõ©‹à‡îØF²ÿbÊ™HŽUáUŠÈ7ÕÈ7P€#UáUŠ!®åUŠFíUŠltt-kconsumerd2­òUŠltt-kconsumerd2x"r÷UŠ!˜øUŠ"îüUŠiVŠkworker/0:1ltt-kconsumerd2**VŠÄ/VŠö*3VŠò4VŠö€@ŽK=¿T6VŠ=8VŠHŽK=¿lEVŠXGVŠåŒVЦVŠ€-I˜VŠÀ‚0 ltt-kconsumerd•£VŠmd1_raid1t¬VŠ{®VŠp޳VŠqµVŠÝp}ÀVŠÝoÂVŠö²ÄVŠÜÇVаÄ@ ÿÿÿÿÿÿÿÿHÔVŠltt-kconsumerd2×â~b“M WàVŠltt-kconsumerd2kworker/0:1#Œ¸ˆŠ!Í¿ˆŠ"=ˆŠ@R‰Šmd1_raid1xAW‰Škworker/0:1md1_raid13¹]‰Š€Š~x€Ð0 -)`‰Š€Š~xmd1_raid1.üe‰Š€Š~xmd1_raid10ti‰Šmd1_raid13Zk‰Š€Š~x€Ð0 -jm‰Š€Š~xmd1_raid1.xq‰Š€Š~xmd1_raid1' v‰Š€Š~xmd1_raid11çz‰Šmd1_raid1(‰Š€Š~xmd1_raid1'\‰Š€Š~xmd1_raid11‘‰Šmd1_raid1(Ø’‰Š€Š~xmd1_raid1d‰Šmd1_raid1LêL ;¥‰Šmd1_raid1kworker/0:1#™™»Š#휻Š!ùŸ»Š"3¢»Š!A£»Š"3¨»Š#ŒrîŠ!ÿwîŠ"©yîŠ#ëG!‹#R!‹!T!‹"ÌU!‹!ÔV!‹"RZ!‹#$T‹!¥0T‹"O2T‹ûT‹md1_raid1xU‹kworker/0:1md1_raid13ãU‹€Â}x€0 -2 U‹€Â}xmd1_raid1.ÂU‹€Â}xmd1_raid10U‹md1_raid13U‹€Â}x€0 -,U‹€Â}xmd1_raid1.(U‹€Â}xmd1_raid1'_#U‹€Â}xmd1_raid11M)U‹md1_raid1(c.U‹€Â}xmd1_raid1'Í9U‹€Â}xmd1_raid11>U‹md1_raid1(•AU‹€Â}xmd1_raid1˜MU‹md1_raid1®TÃWêL õVU‹md1_raid1kworker/0:1zY‹ahci#u„Y‹ (†Y‹¥‡Y‹uhci_hcd:usb3 CŒY‹±Y‹eth1 s’Y‹!%•Y‹&7˜Y‹€Â}x*“´Y‹kworker/7:0x",¾Y‹½ÂY‹kworker/0:1kworker/7:0ÉY‹kworker/7:0]Û\ÜL [ÐY‹kworker/7:0kworker/0:1#Ý ‡‹#[‡‹!‡‹"‰‡‹!|‡‹"º‡‹#¼ß¹‹!’鹋"‚í¹‹#ƒºì‹#¬Äì‹!¹Æì‹"™Èì‹!žÉì‹"Íì‹#®Œ!e¤Œ"¦Œ#¯tRŒ#”~RŒ!›€RŒ"‚RŒ!ƒRŒ"q†RŒ#/[…Œ!B`…Œ"æa…Œ#–.¸Œ#,9¸Œ!u;¸Œ"=¸Œ!!>¸Œ"lA¸Œ#Ñ ëŒ! ëŒ"®ëŒ#4è#Añ!ió"Fõ!Hö"ºùP¡md1_raid1x3¦kworker/0:1md1_raid13*¯€x€H‚0 -—±€xmd1_raid1.¸·€xmd1_raid10?»md1_raid13ß½€x€H‚0 -à¿€xmd1_raid1.¦Ã€xmd1_raid1'žÈ€xmd1_raid11¹Îmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ´ÓÈ7÷9‘È7ð€(´Ó€xmd1_raid1':ä€xmd1_raid11'èmd1_raid1(ˆê€xmd1_raid1ömd1_raid1ÓV–®êL Dmd1_raid1kworker/0:1#gÌP! ÔPÛPltt-kconsumerd2HßPltt-kconsumerd2x"^äPrèPkworker/0:1ltt-kconsumerd2QQöÝQ®Qö€@ŽK=¿QáQHŽK=¿Ô+Qù-QÔdQzgQ- pQÈ‚0 ltt-kconsumerdh|Qmd1_raid1 …Q‡Q€ ŒQäQÝ€#—QÝ$™QöC›Q^žQ°Ä@ ÿÿÿÿÿÿÿÿýªQltt-kconsumerd2*̨.”M δQltt-kconsumerd2kworker/0:1#שƒ#*®ƒ!&²ƒ"i´ƒ!tµƒ"÷¹ƒÕ8„md1_raid1xë=„kworker/0:1md1_raid13?D„€’~x€Ø0 -‘F„€’~xmd1_raid1.ÊL„€’~xmd1_raid10?P„md1_raid13R„€’~x€Ø0 - T„€’~xmd1_raid1.þW„€’~xmd1_raid1'l\„€’~xmd1_raid114a„md1_raid1(3e„€’~xmd1_raid1'ès„€’~xmd1_raid11Nw„md1_raid1(+y„€’~xmd1_raid1½†„md1_raid1ÉN´ìL ¸Ž„md1_raid1kworker/0:1#<€¶!&‹¶"W¶#L[é#,fé!hé"Œié!|jé"Øné#I8Ž!ZCŽ"jEŽ#ËOŽ##"OŽ!-$OŽ"æ%OŽ!è&OŽ"`*OŽ#®ñŽ!àüŽ"ÏþŽ#1δŽ!ÆØ´Ž"mÚ´Ž#›«çŽ#c³çŽ!‹µçŽ"¿·çŽ!¾¸çŽ"6¼çŽ#Ö‡!ã“"~•#JeM#²oM!ÜrM"wtM!guM"cyM#ùA€!éL€"N€#*³#+³!P-³"Q/³!A0³"Ô3³#7ûå!Qæ"éæ#ó×#œà!Çâ"tä!aå"åè#ß´K!*ÄK"ÎÅK#~“~# ›~!\ž~"îŸ~!Þ ~"°¤~#±u±!vz±"P|±#|Kä#Tä!Vä"žWä!ˆXä"-\äØåmd1_raid1xèåkworker/0:1md1_raid13q"å€~x€H0 -«$å€~xmd1_raid1.¼+å€~xmd1_raid10þ.åmd1_raid13"2å€~x€H0 -;4å€~xmd1_raid1.Ç8å€~xmd1_raid1'v>å€~xmd1_raid11 Dåmd1_raid1(óHå€~xmd1_raid1'nUå€~xmd1_raid11œZåmd1_raid1(Z]å€~xmd1_raid1iåmd1_raid1#U×nìL Åsåmd1_raid1kworker/0:1õ·éahci#Âé ¼ÃéKÅéuhci_hcd:usb3 æÉé6Ëéeth1 þÏé!³Òé&ÈÕé€~x*™ñékworker/7:0x"ºúéÿékworker/0:1kworker/7:0mêkworker/7:0 H(ÝL ¢ êkworker/7:0kworker/0:1#j0‘!Ë5‘ÁüÁõ©‹à‡îØF²ÿbÊ™Hް8‘È7By”È7P€"°8‘#ã J‘#J‘! J‘™J‘ltt-kconsumerd2vJ‘ltt-kconsumerd2x"A$J‘!g%J‘"*J‘\-J‘kworker/0:1ltt-kconsumerd2¤KJ‘?PJ‘öâRJ‘ªTJ‘ö€@ŽK=¿VJ‘õWJ‘HŽK=¿&cJ‘eJ‘=—J‘à™J‘ -M¢J‘Ђ0 ltt-kconsumerd—¬J‘md1_raid16µJ‘I·J‘J¼J‘9¾J‘ÝÕÇJ‘ÝèÉJ‘öÌJ‘gÏJ‘°Ä@ ÿÿÿÿÿÿÿÿ¦ÛJ‘ltt-kconsumerd2<½äë”M ³æJ‘ltt-kconsumerd2kworker/0:1#ãé|‘!ªï|‘" ò|‘z}‘md1_raid1x{¢}‘kworker/0:1md1_raid13À¨}‘€¢~x€è0 -`«}‘€¢~xmd1_raid1.ɱ}‘€¢~xmd1_raid10_µ}‘md1_raid13o·}‘€¢~x€è0 -…¹}‘€¢~xmd1_raid1.T½}‘€¢~xmd1_raid1'Â}‘€¢~xmd1_raid11ÿÆ}‘md1_raid1(:Ë}‘€¢~xmd1_raid1'£Ù}‘€¢~xmd1_raid11 Ý}‘md1_raid1(éÞ}‘€¢~xmd1_raid1”ë}‘md1_raid1êN3ÉíL eó}‘md1_raid1kworker/0:1#ȯ‘#N̯‘!Bϯ‘"mѯ‘!{Ò¯‘"¾×¯‘##œâ‘!£ªâ‘"8¬â‘#y’#ï’!烒"†’! ‡’"‹’#UH’!ã_H’"bH’#h:{’#‰={’!l?{’"ï@{’!âA{’"“E{’#9®’!j®’"—®’#%ìà’#°÷à’!Dúà’"Íûà’!Àüà’"¤á’#¿É“!wÕ“"*ד#¡«F“#4¯F“!°±F“"l³F“!w´F“"ηF“#‚y“!Ly“")y“#ºf¬“#€j¬“!l¬“"Žn¬“!o¬“"ör¬“#O<ß“!ÅEß“"oGß“Ÿà“md1_raid1xÓà“kworker/0:1md1_raid13¾à“€Š}x€Ð€0 - à“€Š}xmd1_raid1.ñ&à“€Š}xmd1_raid10<*à“md1_raid13·-à“€Š}x€Ð€0 -Ó/à“€Š}xmd1_raid1.½3à“€Š}xmd1_raid1'-9à“€Š}xmd1_raid11Ç>à“md1_raid1(­Cà“€Š}xmd1_raid1'6Qà“€Š}xmd1_raid11¼Uà“md1_raid1(}Xà“€Š}xmd1_raid1Éfà“md1_raid11Yd"îL Nrà“md1_raid1kworker/0:1#—!”#™%”!u(”"+”!,”"H1”#—ûD”!°E”~E”flush-9:1P x"¶ E”@ E”kworker/0:1flush-9:1P “ E”flush-9:1P ·›ìÝL ¾+E”flush-9:1P kworker/0:1#lÓw”#õÝw”!zàw”"`âw”!_ãw”"ïæw”ÛÀx”md1_raid1xÆx”kworker/0:1md1_raid13Îx”€B~x€ˆ0 -[Ðx”€B~xmd1_raid1.×x”€B~xmd1_raid10Úx”md1_raid13WÝx”€B~x€ˆ0 -[ßx”€B~xmd1_raid1.Ìãx”€B~xmd1_raid1'Eéx”€B~xmd1_raid11Çîx”md1_raid1(}óx”€B~xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚy”È7tT›È7à€'Úy”€B~xmd1_raid11v y”md1_raid1(‚ y”€B~xmd1_raid1Ây”md1_raid1Ð\4îL '%y”md1_raid1kworker/0:1#Š·ª”!˾ª”Àê”ltt-kconsumerd2…Ȫ”ltt-kconsumerd2x";ͪ”ÄѪ”kworker/0:1ltt-kconsumerd2-𪔘ôª”öuüª”Uþª”ö€@ŽK=¿Þÿª”Ä«”HŽK=¿¤ «”“«”¤B«”bE«”Ð-N«”ð0 ltt-kconsumerd?Y«”md1_raid1 c«”6e«”Àj«”l«”ÝÀÊv«”Ýàx«”öq{«”±}«”ö «”_«”ö€@ŽK=¿¬‚«”’„«”HŽK=¿KŒ«”=Ž«”¾²«”@µ«”°-~¼«”Ø‚0 ltt-kconsumerd?Ë«”FÍ«” ÃÑ«””Ó«”Ý mÜ«”݌ޫ”öÒà«”óã«”°Ä@ ÿÿÿÿÿÿÿÿ\ð«”ltt-kconsumerd2Ê(®–M òø«”ltt-kconsumerd2kworker/0:1ëñ°”ahci#8ü°” þ°”žÿ°”uhci_hcd:usb3 <±”³±”eth1 q ±”!> ±”&=±”€ª~x*")"±”#ì”Ý”#î˜Ý”!ߛݔ" žÝ”!ýžÝ”"¤Ý”#0k•!Iv•"íw•##FC•!€PC•"!RC•#ž+v•#./v•!1v•"Ç2v•!·3v•"}7v•#Yÿ¨•!/ ©•"è ©•#žÜÛ•#™çÛ•!‚éÛ•" ëÛ•!øëÛ•"ˆïÛ•#ûÀ–!Æ–"ZÈ–#Ë•A–#JŸA–!'¡A–"ã¢A–!Ó£A–"i§A–#Ärt–!q}t–"t–#KP§–#;[§–!']§–"_§–!ô_§–"üc§–#Ñ,Ú–!Ä:Ú–"}<Ú–#Z —#à —!² —"8 —!% —"Á —#vñ?—!}ö?—"!ø?—#gÃr—!5Îr—"3Ðr—# ¨¥—#ë«¥—!Ú­¥—"¨¯¥—!³°¥—"þ³¥—}°—ahci#–‡°— U‰°—ÆŠ°—uhci_hcd:usb3 O°—¨°—eth1 [•°—!_—°—&¹š°—€²~x*8®°—kworker/7:0x"V·°—Ù»°—kworker/0:1kworker/7:0Z°—kworker/7:0´bßL õɰ—kworker/7:0kworker/0:1#ðØ—!X‰Ø—"ã‹Ø—#ËY ˜#Îc ˜!½e ˜"ài ˜!Íj ˜"ên ˜#Ò6>˜!¬?>˜"nA>˜#ìq˜#Pq˜!T q˜" "q˜!#q˜"o&q˜#vù£˜!¾ÿ£˜"}¤˜#7ÎÖ˜#¼ÜÖ˜!ÞÞÖ˜"dàÖ˜!QáÖ˜"ÉäÖ˜#ª ™!?´ ™"ìµ ™#`†<™#Ë<™!ü’<™"ù•<™!—<™"…š<™ÝZA™ahci yjA™ákA™uhci_hcd:usb3 OpA™“qA™eth1 :vA™# lo™!Ñqo™"êso™#ñG¢™#M¢™!O¢™"Q¢™!R¢™""V¢™##Õ™!°&Õ™"](Õ™#ºùš!¾š"àš#3×:š#ñà:š!<ã:š"Åä:š!µå:š"Té:š#§³mš!ľmš"YÀmš#» š# ™ š!üš š"”œ š!„ š"¡ š#ImÓš!¾zÓš"w|Óš#PJ›ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ-S›È7tœ^£È7ð€#-S›!ÝW›ú^›ltt-kconsumerd2¯d›ltt-kconsumerd2x"i›!+j›"„n›&r›kworker/0:1ltt-kconsumerd2Ö›þ¢›!öd¯›8±›!ö€@ŽK=¿è²›Ñ´›!HŽK=¿ØÁ›ÊÛ"®›Q ›"@-ý› 0 ltt-kconsumerdÙ)›Ú+›"0W0›2›Ý"0–?›ÝÇA›!öE›gG›ö\I›K›ö€@ŽK=¿hL›HN›HŽK=¿jY›P[›–›è˜›À-Ñ ›è‚0 ltt-kconsumerdhµ›Ì·›°¼›í½›Ý°ÞÉ›ÝÙË›ö Λ:Ñ›°Ä@ ÿÿÿÿÿÿÿÿDß›ltt-kconsumerd2(|Ö—M ë›ltt-kconsumerd2kworker/0:1#’19›!:9›"o<9›#Q l›#;l›!0l›"Ñl›!Êl›"Pl›# çž›!Ùëž›"¨îž›#“½Ñ›#ÁÆÑ›!¶ÈÑ›"xÊÑ›!€ËÑ›"òÎÑ›#활!D£œ"ܤœ#õw7œ#¢ƒ7œ!Ê…7œ"A‡7œ!4ˆ7œ"Ó‹7œ#îZjœ!°_jœ"ajœ#Ñ0œ#c8œ!L:œ"í;œ!ã<œ"p@œ󒢜ahci ‘£¢œ¥¢œuhci_hcd:usb3 ©¢œíª¢œeth1 —¯¢œ# М!iМ"jМ#$ê#üô!÷"¹ø!Æù"_ý#CÇ5!ˆÑ5"/Ó5#<¤h#?­h!1¯h"´°h!§±h"Fµh# ›!QŽ›"é›#Ñ]Î#2jÎ!{ú¡#Ö†ú¡!Ȉú¡"`Šú¡!‹ú¡"—ú¡#3X-¢!Nb-¢"òc-¢#ª4`¢#Á>`¢!³@`¢"„B`¢!ŒC`¢"ãF`¢#e“¢!I“¢"ó“¢îFž¢ahci ÅTž¢Vž¢uhci_hcd:usb3 •Zž¢Ó[ž¢eth1 ž`ž¢#ÏîÅ¢!ZøÅ¢"„ûÅ¢#Ëø¢#HÖø¢!”Øø¢"&Úø¢!Ûø¢"ßø¢#T¨+£! ²+£"6´+£#‘„^£#]’^£!X”^£">–^£!1—^£ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ!›^£È7á~¯È7Ѐ"!›^£#b‘£!en‘£|u‘£ltt-kconsumerd2®|‘£ltt-kconsumerd2x" ‚‘£˜†‘£kworker/0:1ltt-kconsumerd2ø°‘£ ¶‘£ö ¹‘£ܺ‘£ö€@ŽK=¿;¼‘£¾‘£HŽK=¿äÊ‘£ÐÌ‘£o’£$ ’£Ð-’£ð‚0 ltt-kconsumerdY0’£W2’£Àw6’£u8’£ÝÀB’£ÝD’£öF’£1I’£°Ä@ ÿÿÿÿÿÿÿÿÊU’£ltt-kconsumerd2´ÛŠl˜M $b’£ltt-kconsumerd2kworker/0:1ØÇ–£ahci -Ø–£­Ù–£uhci_hcd:usb3 9Þ–£›ß–£eth1 Nä–£#¤HÄ£#MÄ£!ÕPÄ£"$SÄ£!TÄ£"FXÄ£#ç÷£!`'÷£"a)÷£#|ø)¤#y*¤!h*¤"î*¤!ä*¤"’ *¤#áÔ\¤!Åß\¤"~á\¤#ȱ¤#^»¤!J½¤" ¿¤!À¤"\ä#(¤!ט¤"›Â¤#Ïkõ¤#›võ¤!–xõ¤"zõ¤!{õ¤"~õ¤#LH(¥!þS(¥"ÀU(¥#^%[¥#Ø/[¥!µ1[¥"53[¥!(4[¥"ß7[¥#hŽ¥! Ž¥"þŽ¥#ÛßÀ¥!]ìÀ¥"1îÀ¥#k¼ó¥#¹Åó¥!ÀÇó¥"jÉó¥!]Êó¥"Îó¥#Ùž&¦!ú¤&¦"­¦&¦#/{Y¦#€Y¦!‚Y¦"™ƒY¦!„Y¦"%ˆY¦#•RŒ¦!Ï^Œ¦"j`Œ¦#è.¿¦# <¿¦!>¿¦"@@¿¦!HA¿¦"™D¿¦#- ò¦!dò¦"üò¦#Cé$§#Ëò$§!Æô$§"Lö$§!?÷$§"û$§#êÅW§!ÇÑW§"wÓW§#5¢Š§#?­Š§!+¯Š§"±°Š§!¤±Š§"é´Š§#½§!н§"d½§#Š\ð§#àdð§!ífð§"Ühð§!Òið§"˜mð§_õ§ahci )Žõ§—õ§uhci_hcd:usb3 ÿ“õ§=•õ§eth1 ä™õ§#y9#¨!?C#¨"UE#¨#V¨#“#V¨!'&V¨"û'V¨!)V¨"¨,V¨#Tòˆ¨!®ÿˆ¨"U‰¨#0л¨!‡Ú»¨"aÜ»¨#¬î¨#Eµî¨!X·î¨"ä¸î¨!×¹î¨" ½î¨#Š!©!–!©"—!©#ÔeT©#ÑoT©!ÞqT©"gsT©!ZtT©"ÒwT©#5I‡©!O‡©"P‡©#Õº©#<(º©!.*º©"ü+º©!-º©"a0º©#+üì©!áí©"” í©#\àª#×ãª!Ïåª"Oçª!Bèª"Éëª#ÚµRª!y¿Rª"#ÁRª#»š…ª#«ž…ª!¸ …ª"k¢…ª!^£…ª"§…ª#p¸ª!^{¸ª",}¸ª#¾Lëª#QVëª![Xëª"çYëª!ÚZëª"g^ëª#.)«!ï4«"6«#áQ«#ÝQ«!ÌQ«"LQ«!?Q«"PQ«#cル!¨ðƒ«"Áòƒ«#¿¶«#íȶ«!âʶ«"_̶«!UͶ«"Üж«#Æœé«!„©é«"«é«#˜‚¬#¸†¬!މ¬"\‹¬!jŒ¬"Ó¬¬,¬ahci b¹,¬»º,¬uhci_hcd:usb3 ¿,¬OÀ,¬eth1 üÄ,¬7)?¬ahci Æ6?¬û7?¬uhci_hcd:usb3 rá°"mBá°# ±!(±" ±#׿F±#4óF±!)õF±"²öF±!¥÷F±"€ûF±#·Ãy±!Ñy±"Òy±#¡¬±#묬±!¯¬±"ü°¬±!ﱬ±"Óµ¬±#ô}ß±!UŠß±"ö‹ß±#ÑZ²#£j²!ƒl²"n²!ün²"¿r²#}7E²!±?E²"¿CE²#fx²# x²!€"x²"B$x²!5%x²"¶(x²#´ðª²!¥üª²"Fþª²»L°²ahci [°²Þ\°²uhci_hcd:usb3 Xa°²Ïb°²eth1 Žg°²#¸Íݲ#ÐÖݲ!Ùݲ"Ûݲ!RÜݲ"!àݲ#ˆª³!#¶³"ݹ³#A‡C³# ’C³!#”C³"`–C³!S—C³"ךC³#dv³!^ov³"7rv³#A©³#žK©³!®M©³"1O©³!*P©³"ØS©³#cܳ!¶*ܳ"<,ܳ#Hû´#²´!È´"Þ ´!æ ´"X´îH´ahci ‹W´Y´uhci_hcd:usb3 Ž]´É^´eth1 šc´#à×A´!¯äA´"ÔæA´#>´t´#½t´!¿t´"öÀt´!éÁt´"ŽÅt´#‘§´!Á§´"hŸ§´#ynÚ´#xxÚ´!”zÚ´",|Ú´!"}Ú´"‘€Ú´#$L µ!W µ"GY µ#ù'@µ#2@µ!4@µ"†5@µ!µ6@µ":@µ#³ sµ!¡sµ"]sµ#*᥵#ií¥µ!掠"Gñ¥µ!:ò¥µ"šõ¥µ# ¾Øµ!ýÊØµ"ãÌØµ#j› ¶# ¦ ¶!¨ ¶"¥© ¶!›ª ¶""® ¶#x>¶!Ý>¶"¨ƒ>¶#ŠTq¶#æ^q¶!ó`q¶"cq¶!dq¶"Mgq¶#x2¤¶!ú;¤¶"¶=¤¶PR¶¶ahci Í_¶¶&a¶¶uhci_hcd:usb3  e¶¶ g¶¶eth1 Çk¶¶#T×¶#×¶!Q×¶"C×¶!×¶";!×¶#=ë ·!ñ÷ ·"¡ù ·#ËÇ<·#µÒ<·!¿Ô<·"EÖ<·!8×<·"›Ú<·#à¥o·!°¯o·"]±o·#“‰¢·#1Ž¢·!,¢·"Ü‘¢·!ä’¢·"°–¢·#P^Õ·!clÕ·"CnÕ·#¼;¸#¦E¸!õG¸"¥I¸!¤J¸"N¸#;¸!#;¸"Ç$;¸#\õm¸!aÿm¸"än¸#Ò ¸#ZÞ ¸!Cà ¸";â ¸!.ã ¸"¦æ ¸#ˆ®Ó¸!tºÓ¸"œ¼Ó¸#q‹¹#Ä–¹!ž˜¹"iš¹!q›¹"jŸ¹#0h9¹!xt9¹"7v9¹#El¹!ˆPl¹"RSl¹#Š#Ÿ¹#¦,Ÿ¹!Œ.Ÿ¹"0Ÿ¹!1Ÿ¹"L5Ÿ¹#˜Ò¹!• Ò¹"¢ Ò¹#ܺ!bçº"3éº#;¸7º#×Â7º!Å7º"‘Æ7º!‡Ç7º"ùÊ7º#Y jº!6¥jº"L§jº#%rº# {º!‰}º"º!€º"›ƒº#LOк!Š\к"7^к#÷-»#¸7»ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ:»È7ň ÀÈ7p€!:»ßC»ltt-kconsumerd2J»ltt-kconsumerd2x"×N»!P»"2T»OX»kworker/0:1ltt-kconsumerd2†ƒ»̈»öŒ»â»ö€@ŽK=¿D»3‘»HŽK=¿»‹Ÿ»LØ»àÚ»ð-¥â»ƒ0 ltt-kconsumerd(ü»þ»à »ó»ÝàͻݻöM»P»°Ä@ ÿÿÿÿÿÿÿÿj »¿"»öi-»%/»ö€@ŽK=¿Ì0»å2»HŽK=¿n:»f<»Ðt»»w»ð-É~»„0 ltt-kconsumerdÀ“»²•»à~™»R›»Ýà]¨»Ý.ª»ö­»3°»°Ä@ ÿÿÿÿÿÿÿÿµ¾»ltt-kconsumerd2v-¸šM É»ltt-kconsumerd2kworker/0:1«N»ahci ¥]»û^»uhci_hcd:usb3 xc»¼d»eth1 ii»#ä6»!{6»76»kworker/7:0x""6»°&6»kworker/0:1kworker/7:0{46»kworker/7:0@m´ãL =?6»kworker/7:0kworker/0:1#ƒïh»#?ôh»!öh»"¹øh»!¸ùh»"†þh»#…Ë›»!Ò›»"7Ô›»#+ŸÎ»#n¨Î»!{ªÎ»":¬Î»!*­Î»"ö°Î»#b|¼!O‰¼"#‹¼#ÝY4¼#ÿd4¼!÷f4¼"Èh4¼!²i4¼"Hm4¼Æ9¼ahci ÔÔ9¼KÖ9¼uhci_hcd:usb3 ÔÚ9¼iÜ9¼eth1 á9¼#Q6g¼!+Bg¼"zDg¼#Íš¼#†š¼!o!š¼"U#š¼!?$š¼"(š¼#šï̼!Sú̼"úû̼#²Ìÿ¼#²Öÿ¼!ûØÿ¼"«Úÿ¼!­Ûÿ¼" ßÿ¼#ª2½!t³2½"µ2½#$†e½#“e½!l•e½"ï–e½!Ü—e½"É›e½#`l˜½!þp˜½"–r˜½#³?˽#ýJ˽!yM˽"O˽!þO˽"‹S˽#:þ½!Ë'þ½"œ)þ½#1¾#’1¾!o 1¾"" 1¾! 1¾"21¾#ÛÕc¾!ößc¾"ác¾#£²–¾#ä½–¾!¢À–¾"+–¾!Ö¾"–Æ–¾#ìɾ!{ɾ"ŸÉ¾#mü¾#\uü¾!‡wü¾"yü¾!îyü¾"„}ü¾#–I/¿!¥V/¿"CX/¿#}&b¿#Ý/b¿!Õ1b¿"p3b¿!]4b¿"ó7b¿# •¿!†•¿"$•¿#2èÇ¿#úìÇ¿!ïÇ¿"êðÇ¿!ïñÇ¿"(õÇ¿#+½ú¿!—Êú¿",Ìú¿‚; Àbash1x†@ Àkworker/0:1bash1ñM À T À°n gMûoT] Àbash1†"ã,M j_ Àkworker/7:0xcc Àbash1xÓh À&p Àà]n`^n„r Àu ÀT5-ÿ`SnAy À'{ ÀTÀ5-ÿÀ5-ÿ`Snì‚ À·„ ÀTÀ5-ÿÀ5-ÿ`SnÁüÁõ©‹à‡îØF²ÿbÊ™Hއ ÀÈ7 ¶-ÀÈ7€‡ À¿‹ À`^n`SnN À© À à4-ÿ@4-ÿ5-ÿt‘ À c“ À à4-ÿ@4-ÿ5-ÿé” À Ì– À à4-ÿ@4-ÿ5-ÿI˜ À #š À à4-ÿ@4-ÿ5-ÿ› À Y À à4-ÿ@4-ÿ5-ÿ²ž À   À à4-ÿ@4-ÿ5-ÿå¡ À ¼£ À à4-ÿ@4-ÿ5-ÿ ¥ À § À à4-ÿ@4-ÿ5-ÿZ¨ À ¾ª À @4-ÿ 3-ÿð4-ÿ¬ À g¶ À¨qn· Àй À PD-ÿ°C-ÿE-ÿ5» À Íõ À°5-ÿ05-ÿÊ÷ ÀIú ÀÿT5-ÿ©ý Àzÿ À05-ÿß!À!À @4-ÿ 3-ÿð4-ÿÌ!À "Àà]n`^n—"À˜"ÀT05-ÿB"À"ÀT05-ÿ& "À9 "ÀTÐ4-ÿà5-ÿ$"À/"ÀTÀ4-ÿà5-ÿÞ"À¯"ÀTð4-ÿð4-ÿà5-ÿ0"Àì"ÀTð4-ÿð4-ÿà5-ÿb""À·$"À`^ngMûo&"À("À@XnÀWngMûop)"ÀÑ+"À  2-ÿ2-ÿð3-ÿf-"À ¬/"À  2-ÿ2-ÿð3-ÿð0"À Ù2"À 4-ÿp3-ÿÀ4-ÿ74"À Y6"À  2-ÿ2-ÿð3-ÿ7"À z9"À 4-ÿp3-ÿÀ4-ÿÊ:"À ¹<"À p3-ÿÐ2-ÿÀ4-ÿ>"À (@"À  2-ÿ2-ÿð3-ÿ{A"À XC"À 4-ÿp3-ÿÀ4-ÿ¨D"À ¯F"À  2-ÿ2-ÿð3-ÿùG"À ÖI"À 4-ÿp3-ÿÀ4-ÿ&K"À 0M"À  2-ÿ2-ÿð3-ÿqN"À NP"À 4-ÿp3-ÿÀ4-ÿ•Q"À WS"ÀÀWnÀ4-ÿžT"À«V"À  2-ÿ2-ÿð3-ÿX"À ‰Z"Àà]n`^në["À-n"À°n$gMûoÿÿÿÿ#u"Àbash1x‡z"À$ú|"À`^ngMûoÿÿÿÿS~"Àx€"ÀtngMûoË"À›„"Àï5-ÿgMûoŠ"Àbash1Œ,oY M €"Àbash1kworker/7:0Yœ"Àkworker/7:0¨ÇãL ¥"Àkworker/7:0kworker/0:1#Ô¡-À#²¥-À!„©-ÀK¯-Àltt-kconsumerd2ÁüÁõ©‹à‡îØF²ÿbÊ™Hޏ´-ÀÈ7ˆgùÃÈ7ð€¸´-Àltt-kconsumerd2x"¼-À!g½-À"SÂ-ÀŽÆ-Àkworker/0:1ltt-kconsumerd2iå-ÀOê-ÀöÅò-Àºô-Àö€@ŽK=¿Cö-Àbø-ÀHŽK=¿³.ÀÏ.À&@.ÀC.À€-‚L.ÀH„0 ltt-kconsumerdµd.Àg.Àp±k.À¯m.ÀÝpŒ{.ÀÝ´}.Àö€.À+‚.Àö•„.ÀW†.Àö€@ŽK=¿¤‡.À„‰.ÀHŽK=¿e.ÀN’.Àòº.À‰½.À-²Ä.Àƒ0 ltt-kconsumerdõÛ.ÀüÝ.Àð²â.À‰ä.ÀÝðï.ÀÝÑð.Àöóò.Àªö.À°Ä@ ÿÿÿÿÿÿÿÿý/À^/Àö/À+/Àö€@ŽK=¿Û/Àú/ÀHŽK=¿Y&/ÀE(/À•\/À_/À-Óf/À„0 ltt-kconsumerd¨|/À´~/Àæ‚/À«„/ÀÝ÷/ÀÝב/Àöy•/À°—/Àör™/À1›/Àö€@ŽK=¿]œ/À=ž/ÀHŽK=¿ú§/Àì©/À[Ô/ÀæÖ/À-Þ/Àƒ0 ltt-kconsumerd´ó/À¯õ/Àû/Àltt-kconsumerd2hG•ÿœM 20Àltt-kconsumerd2kworker/0:1§;9Àahci ÙK9À5M9Àuhci_hcd:usb3 ÇQ9À/S9Àeth1 YX9À,ÀLÀahci 3ÎLÀ§ÏLÀuhci_hcd:usb3 9ÔLÀÕLÀeth1 EÚLÀ#u}`À!‘…`À"Lˆ`À#µS“À#]“À!L_“À"á`“À!Ôa“À"Æf“À#h:ÆÀ!M@ÆÀ"BÆÀ#³ ùÀ!æùÀ"§ùÀ#Qé+Á#2ó+Á!Zõ+Á""÷+Á!*ø+Á"–û+Á#¥Æ^Á!ÞÓ^Á"—Õ^Á#…£‘Á#m­‘Á!ƒ¯‘Á"-±‘Á!/²‘Á"ªµ‘Á#)€ÄÁ!GŒÄÁ"ëÄÁ#Ø\÷Á#g÷Á!)i÷Á"»j÷Á!çk÷Á")o÷Á#@*Â!¦I*Â"VK*Â#i]Â#Ò]Â!ñ!]Â"¡#]Â!Í$]Â"(]Â#^óÂ!tþÂ"Â#PÙÂÂ#ºÞÂÂ!îàÂÂ"ÂâÂÂ!ÊãÂÂ"çÂÂ#­õÂ!J·õÂ"ô¸õÂ#KŠ(Ã#‹˜(Ã!øš(Ã"xœ(Ã!k(Ã"ã (Ã#Çf[Ã!Ór[Ã"}t[Ã#LDŽÃ#MPŽÃ!ZRŽÃ"^TŽÃ!iUŽÃ"¤YŽÃ#d ÁÃ!t+ÁÃ"u-ÁÃ#IþóÃ#ÒôÃ!Ü ôÃ"† ôÃ!‘ ôÃ"ßôÃÁüÁõ©‹à‡îØF²ÿbÊ™HŽÌeùÃÈ7oÎßÏÈ7ЀÌeùÃahci `wùÃÈxùÃuhci_hcd:usb3 0}ùÃ\~ùÃeth1 ƒùÃ# Û&Ä!]é&Äšî&Ältt-kconsumerd2½ò&Ältt-kconsumerd2x"[÷&ÄZû&Äkworker/0:1ltt-kconsumerd2^'Ä9'Äöi"'Ä4$'Äö€@ŽK=¿™%'Äy''ÄHŽK=¿†2'Äu4'Äsl'Ä+o'Ä -õw'ă0 ltt-kconsumerdüŽ'Äô'Ä“”'ÄU–'ÄÝ÷¢'ÄÝ¥'ÄöM§'Ä_ª'İÄ@ ÿÿÿÿÿÿÿÿO·'Ältt-kconsumerd2UÅêÄM ¸À'Ältt-kconsumerd2kworker/0:1#1ÀYÄ#ÿÄYÄ!óÇYÄ"6ÊYÄ!>ËYÄ"fÐYÄ#VœŒÄ!·¡ŒÄ"¯£ŒÄ#Ïx¿Ä#/|¿Ä!~¿Ä"Å¿Ä!ô€¿Ä"±„¿Ä#ìUòÄ!êZòÄ"¸\òÄ#l2%Å#56%Å!$8%Å"³9%Å!©:%Å"H>%Ř„*Åahci ‚”*Åö•*Åuhci_hcd:usb3 š*ÅØ›*Åeth1 ‚ *Å#]XÅ!ÍXÅ"æXÅ#åŠÅ!¢îŠÅ"—ðŠÅ#›À½Å#üɽÅ!K̽Å"νÅ!ϽÅ"¨Ò½Å#žðÅ!ʨðÅ"kªðÅ#êz#Æ#†#Æ!Xˆ#Æ"؉#Æ!ËŠ#Æ"aŽ#Æ#Ì_VÆ!kfVÆ"hVÆ#4‰Æ!6=‰Æ"m?‰Æ#ͼÆ#3¼Æ!. ¼Æ""¼Æ!#¼Æ"-'¼Æ#îîÆ!sûîÆ" ýîÆ#óÊ!Ç#gÓ!Ç!bÕ!Ç"âÖ!Ç!Ø×!Ç"\Û!Ç#¬§TÇ![³TÇ"µTÇ#脇Ç#чÇ!’‡Ç"Ê“‡Ç!Õ”‡Ç"#˜‡Ç#ƒaºÇ!±mºÇ"RoºÇ#:>íÇ!îGíÇ"›IíÇ#8 È#t$ È!) È"§* È!š+ È"E/ È#ûÿRÈ!ØSÈ"vSÈ#ûÚ…È#'ß…È!îá…È"qã…È!gä…È"èç…È#•±¸È!M»¸È"È#e•ëÈ#ÊœëÈ!ÜŸëÈ"ž¡ëÈ!¦¢ëÈ"'¦ëÈ#åjÉ!ÎxÉ"´zÉ#QIQÉ#XRQÉ!tTQÉ"VQÉ!_WQÉ"àZQÉ#$„É!‰/„É"r1„É#·É#å ·É! ·É"ç·É!ï·É"a·ÉRB¿Éahci Q¿É‡R¿Éuhci_hcd:usb3 õV¿É0X¿Éeth1 ï\¿É#7ééÉ! îéÉ"NðéÉ#¤ÃÊ#åÇÊ!ÎÉÊ"«ËÊ!žÌÊ"—ÐÊ#, OÊ!€¦OÊ"3¨OÊ#mu‚Ê!F‚Ê"I‚Ê#ÚRµÊ#œ^µÊ!y`µÊ"&bµÊ!cµÊ"¦fµÊ#$0èÊ!R;èÊ"ä<èÊ#ä Ë#Ë!mË"öË!ìË"ŽË#PðMË!àóMË"ÌõMË#"Å€Ë#íÍ€Ë!ëÏ€Ë"­Ñ€Ë!¸Ò€Ë"Ö€Ë#À¡³Ë!¾¬³Ë"b®³Ë#‡ˆæË#:ŒæË!&ŽæË"âæË!êæË"ΔæË#F[Ì!`iÌ"FkÌ#ì9LÌ#4DLÌ!"FLÌ"ŸGLÌ!HLÌ"LLLÌ#™Ì!·"Ì"U$Ì#ò±Ì#•þ±Ì!–²Ì"²Ì! ²Ì"r²Ì#¨ÎäÌ!ÙäÌ"ÁÚäÌ#Ö«Í#ɵÍ!ñ·Í"ª¹Í!²ºÍ"÷½Í#7ˆJÍ!$–JÍ"¾—JÍ#)e}Í#Îo}Í!öq}Í"¾s}Í!±t}Í"x}Í#HJ°Í!FO°Í"kQ°Í#)ãÍ#)ãÍ!/+ãÍ"-ãÍ!.ãÍ"n1ãÍ#·ûÎ! Î"¾Î#OØHÎ#káHÎ!TãHÎ"åHÎ!!æHÎ"réHÎ#ïµ{Î!ÜÂ{Î"žÄ{Î#’®Î#ôš®Î!®Î"½ž®Î!õŸ®Î"U£®Î#`oáÎ!ÎzáÎ"{|áÎ#jMÏ#~XÏ!ÙZÏ"•\Ï!Ž]Ï"aÏ¢rÏahci ·Ï ƒÏuhci_hcd:usb3 „‡ÏňÏeth1 {Ï#­0GÏ!]8GÏ"Ä:GÏ#IzÏ#vzÏ!tzÏ" zÏ!üzÏ"dzÏ#Dâ¬Ï!(í¬Ï"Õî¬Ï#¿ßÏ#ÉßÏ!'ËßÏÁüÁõ©‹à‡îØF²ÿbÊ™HŽ@ÍßÏÈ7à ØÈ7è€"@ÍßÏ!ÐßÏ"–ÔßÏ#¥œÐ!=¨ÐH¯Ðltt-kconsumerd2GµÐltt-kconsumerd2x"cºÐ¶¾Ðkworker/0:1ltt-kconsumerd2‘éЪîÐöòÐüóÐö€@ŽK=¿gõÐS÷ÐHŽK=¿1ÐJÐÊCÐdFÐ0-wNÐ ƒ0 ltt-kconsumerd„hДjÐ ¥nÐppÐÝ P{ÐÝ]}Ðö|Ð|‚аÄ@ ÿÿÿÿÿÿÿÿñŽÐltt-kconsumerd2·Û¡ žM &™Ðltt-kconsumerd2kworker/0:1#EÐ#Ô…EÐ!þˆEÐ"8‹EÐ!:ŒEÐ"Ô#0Ä>Ô!‚Æ>Ô"È>Ô!É>Ô"ôÌ>Ô#³–qÔ!£qÔ" ¤qÔ#ñr¤Ô#iz¤Ô!Ð|¤Ô"ò~¤Ô!å¤Ô"Zƒ¤Ô#TY×Ô!ù_×Ô"»a×Ô#!- Õ#²8 Õ!Ô: Õ"ó< Õ!þ= Õ"CA Õ#‹ =Õ!/=Õ"Ö=Õ#\æoÕ#`ïoÕ!ˆñoÕ";óoÕ!@ôoÕ"Ä÷oÕ#«Ã¢Õ!å΢Õ"‰Ð¢Õ#´ ÕÕ#K­ÕÕ!m¯ÕÕ"±ÕÕ!O²ÕÕ"µÕÕ#v}Ö!—‡Ö",‰Ö#ÄY;Ö#c;Ö!\e;Ö"og;Ö!}h;Ö"Ñk;Ö#þ6nÖ!­BnÖ"oDnÖ#È¡Ö#ö¡Ö!H¡Ö"× ¡Ö!Ð!¡Ö"Z%¡Ö#-ðÓÖ!@üÓÖ"ùýÓÖ#Í×#PØ×!ZÚ×"àÛ×!ÖÜ×"„à×#ï©9×!y´9×"#¶9×# l×#‘l×!“l×"ì”l×!÷•l×"E™l×#†cŸ×!ÌoŸ×"jqŸ×#Õ@Ò×#ÑMÒ×!PÒ×" QÒ×!“RÒ×"\VÒ×#<Ø!’(Ø"N*Øn ØahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽQ~ ØÈ7ðÈàÈ78€ Q~ Øk‚ Øuhci_hcd:usb3 -‡ ØPˆ Øeth1  Ø#‚ú7Ø#ù8Ø!8ØÀ 8Øltt-kconsumerd2«8Øltt-kconsumerd2x"8Ø!8Ø"=8Ø,!8Økworker/0:1ltt-kconsumerd2ÇO8ØŽU8Ø!ö“b8ØŽd8Ø!ö€@ŽK=¿\f8Ørh8Ø!HŽK=¿­u8ØÃw8Ø"À8ØçÂ8Ø"À-ŽÌ8Øh…0 ltt-kconsumerdPæ8Øiè8Ø"°í8Øÿî8ØÝ"°îü8ØÝÿ8Ø!ö.9Øe9Øö´9Øy9Øö€@ŽK=¿Ò 9ص 9ØHŽK=¿9Ø9ØdD9ØÚF9Ø@-‡N9Ø(ƒ0 ltt-kconsumerd‹e9ؘg9Ø0©k9Øwm9ØÝ0ûv9ØÝØx9Øöîz9Ø–~9ذÄ@ ÿÿÿÿÿÿÿÿÜŒ9Øltt-kconsumerd2Ö|w M ¹—9Øltt-kconsumerd2kworker/0:1#™âjØ!SéjØ"¨ëjØ#5´Ø# ÃØ!CÅØ"ÌÆØ!ÅÇØ"<ÌØ#‘ÐØ!ÐØ"ÀžÐØ#cmÙ#üwÙ!]zÙ"é{Ù!Ù|Ù"‡€Ù#LJ6Ù!RS6Ù"ÛT6Ù#ˆ'iÙ#95iÙ!"7iÙ"Ÿ8iÙ!†9iÙ"=iÙ#wœÙ!œÙ"ÜÙ#÷àÎÙ#ÂèÎÙ!GëÎÙ"ÊìÎÙ!·íÎÙ"JñÎÙ#ú½Ú!µÊÚ">ÌÚ#ãš4Ú#¬¨4Ú!«4Ú"–¬4Ú!³­4Ú"X±4Ú#7wgÚ!sgÚ"ÿ‚gÚ#ÅZšÚ#ê_šÚ!ÙašÚ"bcšÚ!LdšÚ"hšÚ#á0ÍÚ!Ó9ÍÚ"};ÍÚ#— Û#"Û!Û"‚Û!oÛ"ê!Û#ãê2Û!ô2Û"ö2Û#WÍeÛ#IÒeÛ!SÔeÛ"ÖeÛ!íÖeÛ"IÛeÛ#±¤˜Û!ƒ¯˜Û"!±˜Û#gËÛ#9ŒËÛ!úŽËÛ"wËÛ!d‘ËÛ" •ËÛ#K^þÛ!iþÛ"ÍjþÛ#.;1Ü#E1Ü!@G1Ü"ºH1Ü!ªI1Ü"(M1Ü#ødÜ!u#dÜ" %dÜ#hü–Ü#y—Ü!¯—Ü"V—Ü![—Ü"© —Ü#¾ÑÉÜ!ÍÝÉÜ"nßÉÜ#®üÜ#ø·üÜ!źüÜ"ƼüÜ!³½üÜ"+ÁüÜ#5‹/Ý!–/Ý"Õ—/Ý#˜gbÝ#ÓubÝ!­wbÝ"-ybÝ!zbÝ"È}bÝ#E•Ý!„P•Ý"R•ÝUˆšÝahci ÿ˜šÝ‹ššÝuhci_hcd:usb3 ŸšÝd šÝeth1 ¥šÝ#Þ!ÈÝ#À.ÈÝ!T1ÈÝ"—3ÈÝ!‡4ÈÝ"_8ÈÝ#šþúÝ!UûÝ"b ûÝ#§Û-Þ!“æ-Þ"7è-Þ#D¸`Þ#òÂ`Þ!Å`Þ"šÆ`Þ!‡Ç`Þ"ùÊ`Þ#'•“Þ!Ÿ“Þ"¶ “Þ#sÆÞ#¡ÆÞ!´ÆÞ":ƒÆÞ!*„ÆÞ"ÇÆÞ#ÇNùÞ![ZùÞ"ÿ[ùÞ#”+,ß#Ü8,ß!é:,ß"«<,ß!­=,ß"A,ß#‰_ß!B_ß"»_ß#Pæ‘ß#í‘ß!Äð‘ß"Ýò‘ß!ßó‘ß"'÷‘ß#ÂÄß!ÔÍÄß"~ÏÄß#}ž÷ß#A¨÷ß!6ª÷ß" ¬÷ß! ­÷ß"Z°÷ß#Á{*à!Ý„*à"†*à#"Y]à#ð`]à!0c]à"òd]à!ôe]à"Ki]à‹àbash1xûàkworker/0:1bash1Ó+à#½4àv=àbash1á$Dþ M !÷@à"(CàÁüÁõ©‹à‡îØF²ÿbÊ™HŽ|ÇàÈ76^"éÈ7Ø€|Çàà]n`^nÌàÜ_‘à°n 2-ÿgMûoÿÿÿÿ¬k‘àbash1ˆ.Ì, M  n‘àkworker/7:0xúq‘àbash1xOw‘àz‘à`^ngMûoÿÿÿÿ±{‘à‘àà]n`^n@…€‘à©‘à`^ngMûoö‘àØ“‘à_5-ÿgMûo—›‘àbash1/è[ M ½Ÿ‘àbash1kworker/7:0¯‘àkworker/7:0¬#éL #¾‘àkworker/7:0kworker/0:1í}šàuhci_hcd:usb4 Í‚šà„šàeth0#Õ‰šà ÈŠšà!tšà"_´šàPì¦àahci "ü¦à¥ý¦àuhci_hcd:usb3 %§à`§àeth1 4§à#éÃà#ãÃà!:!Ãà"$Ãà!ú$Ãà"a*Ãà#ïõà#ªúõà!_ýõà"Nÿõà!Döà"Aöà#UÓ(á#'×(á!!Ú(á"ÑÛ(á!ÜÜ(á"ß(á#ú±[á#œµ[á!¬·[á"†¹[á!‘º[á"¾[á#P…Žá#Š‘Žá!…“Žá"€•Žá!s–Žá"˜Žá#ÿhÁá# mÁá!oÁá"»pÁá!ÆqÁá"ŸtÁá#Ù>ôá#WIôá!4Kôá"ÀLôá!³Môá"áOôá#('â#é%'â!P('â"**'â!,+'â".'â#ºøYâ#Zâ!âZâ"tZâ![Zâ"ªZâ#sÞŒâ#âŒâ! äŒâ"·åŒâ!¡æŒâ"téŒâ#^²¿â#¾¿â!À¿â"˜Á¿â!…¿â"ÅÄ¿â#ròâ!j˜òâ"lœòâ#[l%ã#ww%ã!–y%ã""{%ã!|%ã"-%ã#=IXã!ÈUXã"xWXã#í%‹ã#p1‹ã!_3‹ã"ë4‹ã!Þ5‹ã"•9‹ã#g¾ã!¾ã"®¾ã#ßðã!êðã"Âëðã#q¼#ä#ºÅ#ä!µÇ#ä"DÉ#ä!=Ê#ä"¯Í#ä#ë˜Vä!I¥Vä"á¦Vä#&v‰ä!„‰ä"­ƒ‰ä# S¼ä#ƒ]¼ä!“_¼ä"=a¼ä!Eb¼ä"xe¼ä#û5ïä!·:ïä"^<ïä#ó "å#Ê"å!d"å"ä"å!×"å"O"å#çéTå!DöTå"î÷Tå#‡Ç‡å#sÒ‡å!YÔ‡å"âÕ‡å!ØÖ‡å"ÈÚ‡å#+£ºå!­ºå"É®ºå#‚íå#üíå!!íå"’íå! “íå"f–íå#f æ!Nj æ"õk æ#_@Sæ#7DSæ!DFSæ"ÍGSæ!½HSæ"8LSæ#†æ!½#†æ"X%†æ#só¸æ#ê¹æ!ܹæ"\¹æ!O¹æ"ǹæ#üÏëæ!ÌÛëæ"QÞëæ"ñæahci Ô ñæ0"ñæuhci_hcd:usb3 ˜&ñæÙ'ñæeth1 z,ñæ#­ç#×´ç!ÿ¶ç"¹ç!ó¹ç"L¾ç#P‰Qç!Þ•Qç"ñ—Qç#f„ç#p„ç!r„ç"­s„ç! t„ç"*x„ç#éB·ç!íM·ç"‘O·ç#7*êç#©-êç!›/êç"?1êç!22êç"Â5êç#´üè![è"êè#pÙOè#ÃæOè!éOè"ªêOè!ëOè"xïOè#£¶‚è!Âè"ÆÄ‚è#ë’µè#ñœµè!4Ÿµè"ð µè!㡵è" ¦µè#™wèè!Ó|èè"¡~èè#¨Ré#ÂVé!çXé"ÍZé!Ø[é")_éÑV ébash1x\ ékworker/0:1bash1Ën éëð éà]n`^ngó éO"é°n) 2-ÿgMûoÿÿÿÿ4"ébash1­º•M ¤"ékworker/7:0xÐ"ébash1x "é)¶"é`^ngMûoÿÿÿÿº"éÉ""éà]n`^n@Ü$"é©3"é`^ngMûoö4"é7"é_5-ÿgMûo£<"ébash1Ÿ-4DM Ä?"ébash1kworker/7:0ºR"ékworker/7:0Gj-éL ÁüÁõ©‹à‡îØF²ÿbÊ™HŽé\"éÈ7ÌýëÈ70~€é\"ékworker/7:0kworker/0:1#ð0Né!”8Né½?Néltt-kconsumerd2¥ENéltt-kconsumerd2x"3KNé¼ONékworker/0:1ltt-kconsumerd2Ø{Né~NéöòŽNéíNéö€@ŽK=¿Ö’Né:•NéHŽK=¿ô¡Né ¤NéTêNéíNéà-‡öNéx†0 ltt-kconsumerd¥OéÊOéÐeOécOéÝÐI'OéÝJ)Oéö,Oé3.OéöI0Oé2Oéö€@ŽK=¿a3OéD5OéHŽK=¿û>OéÛ@Oé|lOéoOé`-BvOé8ƒ0 ltt-kconsumerdOéOéPU“Oé5•OéÝPà¡OéÝÒ£OéöÜ¥Oé0©Oé°Ä@ ÿÿÿÿÿÿÿÿ$²OéÇ´Oé!ö<ÍOéÏOé!ö€@ŽK=¿–ÐOépÒOé!HŽK=¿ ÚOéýÛOé":Pé›Pé"-‡Pé…0 ltt-kconsumerdå2Péû4Pé"9PéÚ:PéÝ"WEPéÝyGPé!ö²JPé`MPé°Ä@ ÿÿÿÿÿÿÿÿý[Péltt-kconsumerd2áX4¢M ¥hPéltt-kconsumerd2kworker/0:1>­^éahci *Ç^é’È^éuhci_hcd:usb3 Í^é×Î^éeth1 ŠÓ^é#)é#÷é!é"¸é!Ãé"¯!é#ƒã³é!¶ì³é"áî³é#ÈÀæé!úËæé"’Íæé#šê#ä¨ê!ͪê"ˬê!Ç­ê"á±ê#·‚Lê!‰Lê"¾ŠLê#†^ê#vbê!edê"!fê!,gê"Œjê#k3²ê!l>²ê"@²ê#˜åê# åê!æåê"fåê!\åê"Îåê#‡íë!ùë"jûëñŠëahci $šë˜›ëuhci_hcd:usb3  ëD¡ëeth1 ô¥ë#0ÊJë#šÓJë!ËÕJë"c×Jë!VØJë".ÜJë#,§}ë!è²}ë"=µ}ë#M…°ë#¹Ž°ë!‘°ë"“°ë!”°ë"Œ—°ë#ƒ`ãë!æiãë"{kãëþ?üëbash1x^Füëkworker/0:1bash1•Züë®õüëà]n`^nå÷üë7›ýë°n 2-ÿgMûoÿÿÿÿ¿¦ýëbash1íh!­M  ©ýëkworker/7:0x@­ýëbash1xŒ²ýë\µýë`^ngMûoÿÿÿÿ ·ýëñ¹ýëà]n`^n@n»ýëÁüÁõ©‹à‡îØF²ÿbÊ™HŽËÊýëÈ76âïÈ7È€ËÊýë`^ngMûoúÎýëâÑýë_5-ÿgMûoy×ýëbash1Þ0ÿÝM vÚýëbash1kworker/7:0¶îýëkworker/7:0×0ëL Ðøýëkworker/7:0kworker/0:1#§Dì#{Iì!~Lì5Sìltt-kconsumerd2Yìltt-kconsumerd2x"±^ì!Ô_ì"ádìmiìkworker/0:1ltt-kconsumerd2!—ìÁœìöT©ìO«ìö€@ŽK=¿)­ìB¯ìHŽK=¿¼ì!¾ìì¯ì-FìȈ0 ltt-kconsumerd•(ìÀ*ì€s/ìb1ìÝ€f?ìÝ[AìöDìAFìöcHì(Jìö€@ŽK=¿~Kì^MìHŽK=¿oWìjYìœì6’ìp-×™ì@‰0 ltt-kconsumerdå¯ìò±ì`ñµìηìÝ`uÂìÝUÄìözÆìÑÉì°Ä@ ÿÿÿÿÿÿÿÿ×ìltt-kconsumerd2(€³£M Nãìltt-kconsumerd2kworker/0:1¢¿ìahci ˆÐìüÑìuhci_hcd:usb3 ŽÖìê×ìeth1 ýÜì#+Iì!Ý(Iì"A+Iì#g÷{ì!Ø|ì"Ç|ì#eÔ®ì#„ß®ì!ñá®ì"¼ã®ì!¾ä®ì"üè®ì#„°áì!ò»áì"Ÿ½áì#Sí#ší!¥œí"+ží!!Ÿí"£í#êjGí!´vGí"‚xGí#¦Gzí!HQzí"õRzí#É#­í##-­í!H/­í"1­í!÷1­í"5­í#w àí!Sàí"àí#*Þî#Ôåî!‹éî"}ëî!sìî"Ùïî#¸ÁEî!ÉEî"ËEî#\˜xî#‚ xî!r¤xî"ò¥xî!å¦xî"{ªxî#t«î!“~«î"F€«î#ÛPÞî#¢\Þî!!_Þî"¹`Þî!¬aÞî"?eÞî# 6ï!_>ï"@ï#N Dï#KDï!^Dï"Dï!"Dï"ODï#æçvï!žóvï"Eõvï#hÄ©ï#¬Ï©ï!§Ñ©ï"'Ó©ï!Ô©ï"™Ù©ï¼¸×ïbash1x˜¾×ïkworker/0:1bash1âË×ï†eØïà]n`^n®gØïÜŽÙï°n) 2-ÿgMûoÿÿÿÿé™Ùïbash1vâuÀM 5œÙïkworker/7:0xûŸÙïbash1x>¥Ùï)ö§Ùï`^ngMûoÿÿÿÿ¦©Ùïý¬Ùïà]n`^n@€®Ùïh½Ùï`^ngMûo¾¾ÙïŽÁÙï_5-ÿgMûoÈÆÙïbash1ý,ríM ïÉÙïbash1kworker/7:0¼ØÙïkworker/7:0$¤ªìL 5áÙïkworker/7:0kworker/0:1#7«Üï!Ô³Üï">¶Üï|"âïahci Ø2âïÁüÁõ©‹à‡îØF²ÿbÊ™H޲4âïÈ7[!ÊúÈ7ø€²4âïuhci_hcd:usb3 A<âï|=âïeth1 zBâï#é~ð#Ňð!/ŠðyŽðltt-kconsumerd2¨’ðltt-kconsumerd2x"Ô–ð!ú—ð"ð±¡ðkworker/0:1ltt-kconsumerd2ü¹ð¾ðöËÀð±Âðö€@ŽK=¿4ÄðSÆðHŽK=¿ŠÎð”ÐðÔÿð’ð€-V ðH‰0 ltt-kconsumerd/&ð?(ðp4-ð2/ðÝps<ðÝw>ðö´@ðØCð°Ä@ ÿÿÿÿÿÿÿÿªPðltt-kconsumerd2 ¾ q¤M 2\ðltt-kconsumerd2kworker/0:1#ØdBð! lBð"qnBð#8uð#¼Cuð!«Euð"—Guð!‡Huð"Muð#Ô¨ð!A ¨ð"Q"¨ð#ÞñÚð#ŸúÚð!¯üÚð"5þÚð!(ÿÚð"ÄÛð#Î ñ!ÁÝ ñ"\ß ñ#h«@ñ! µ@ñ"6·@ñ[$Fñahci 5Fñ¦6Fñuhci_hcd:usb3 2;Fñmò#?ò!v?ò"ü?ò!æ ?ò"L ?ò#7Øqò!cãqò"ïäqò#%»¤ò#¿¤ò! Á¤ò"ç¤ò!éäò"IǤò#}‘×ò!d›×ò"×ò#ðn ó#çw ó!ó} ó"å ó!Ï€ ó"Å„ ó#$U=ó!eY=ó"[=ó#$/pó#4pó!ò6pó"u8pó!b9pó"ï€3-ÿgMûoÿÿÿÿW()ýbash1'™M *)ýkworker/7:0xf.)ýbash1x²3)ý>…6)ý`^ngMûoÿÿÿÿ;8)ý>)ýà]n`^n ”?)ý˜P)ý`^ngMûoîQ)ýFT)ýtnTU)ýWX)ý°n gMûoæ\)ýbash1xra)ýf)ýà]n`^n‡g)ýÓi)ýT5-ÿ`Sn®m)ýŽo)ýTÀ5-ÿÀ5-ÿ`Snx)ýÕy)ýTÀ5-ÿÀ5-ÿ`SnQ|)ý@~)ý`^n`Sn™)ýÍ)ý à4-ÿ@4-ÿ5-ÿ¹ƒ)ý ¢…)ý à4-ÿ@4-ÿ5-ÿ"‡)ý öˆ)ý à4-ÿ@4-ÿ5-ÿRŠ)ý &Œ)ý à4-ÿ@4-ÿ5-ÿ‚)ý V)ý à4-ÿ@4-ÿ5-ÿ¬)ý }’)ý à4-ÿ@4-ÿ5-ÿÊ“)ý ˜•)ý à4-ÿ@4-ÿ5-ÿß–)ý ™)ý à4-ÿ@4-ÿ5-ÿfš)ý Óœ)ý @4-ÿ 3-ÿð4-ÿž)ý õ<*ýPD-ÿÐC-ÿò?*ý7C*ýŸmÐC-ÿýU*ýGZ*ý8 ÐiMûo1œn*ýbash1IFâMM 0q*ýbash1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÙ}+ýÈ7>cBýÈ7È1€ Ù}+ýbash1bash2M‹+ýbash2…’+ýbash2x2—+ý82ˆË+ým22ÿÿÿÿÐiMûo1]Ò+ýmmò+ýÐC-ÿ1ƒô+ýìK,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿíM,ýP,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿåR,ý¿T,ýðD-ÿpD-ÿàÿÿÿÿÿÿÿV,ý6_,ýÿTz #î>z!ì>z">z!Ë >z"D>z!7>z ">z #9Ópz!Žâpz"×äpz#¤»£z#D¾£z #£z!)Ä£z"ÏÆ£z!ÑÇ£z"ÆÌ£z!¿Í£z "‡Ò£z #•ŒÖz#ΕÖz !·šÖz"šœÖz!„Öz "åŸÖz #æg {#q {!>v {"x {!êx {"È| {cê{ahci ½ù{yû{uhci_hcd:usb3 e{¬{eth1 ‚{#+F<{# N<{ !ºT<{"|V<{!cW<{ ";[<{ #¹!o{#+o{ #K/o{!â1o{"w3o{!U4o{"\9o{!‚:o{ "‚=o{ #Œþ¡{!™ ¢{"F¢{#ÃåÔ{#çÔ{ # êÔ{!ŒìÔ{"îÔ{! ïÔ{"ôÔ{!ùôÔ{ "ûøÔ{ #¸|#Ã| !«È|"Ê|!{Ë| "ÖÍ| $]|ahci l|nm|uhci_hcd:usb3 ßq|_s|eth1 x|&z6|ahci ‰6|‚Š6|uhci_hcd:usb3 äŽ6|6|eth1 À”6|#ñ•:|#µ¡:|!R¤:|"¦:|!ò¦:|"í«:|õÚO|ahci ÎéO|<ëO|uhci_hcd:usb3 ŒïO|ýðO|eth1 ÈõO|if|ahci £f|f|uhci_hcd:usb3 f|Èf|eth1 “ f|#êqm|#tm| !*€m|"=‚m|!$ƒm| "……m| #yN |#ÏV | #¾[ |!Ñ] |"i_ |!M` |"Õe |!g | "aj | #À4Ó|#8Ó| !g<Ó|">Ó|!@?Ó| "WCÓ| # }# } #·}!c}"ï}!}"1}!$} "ˆ } #nî8}#ñ8} !ö8}"³÷8}!©ø8} "˜9} #ìÁk}#ˆÉk} #ÂÎk}!¢Ðk}"=Òk}!Ók}"§×k}!‚Øk} "Ûk} #µ ž}!ç§ž}""¬ž}#~Ñ}#ÛˆÑ}!ÇŠÑ}"ÂŒÑ}!£Ñ}"’Ñ} ÿ×}ahci ð Ø}CØ}uhci_hcd:usb3 ŸØ}ÅØ}eth1 Ø}#×b~!¯i~"(l~#û47~#4A7~!›C7~"3E7~!qF7~"_L7~#@j~!€!j~"!#j~#Ãîœ~#tùœ~!Ÿûœ~"(ýœ~!þœ~"~#’ÌÏ~!5ÙÏ~"ÛÏ~#d«#L·!¤¹"-»!¼"gÀ#²Œ5!Š“5"•5#$bh#/mh!~oh"@qh!Brh"õvh# ?›!>K›"ßL›#[Î#b)Î!Ø+Î"-Î!l.Î"à2Î#Xû€!Ø €"p €#ÉÝ3€#4â3€!¹ä3€Tì3€kworker/6:1x"Xñ3€!Šò3€"÷3€ý3€kworker/0:1kworker/6:1É 4€kworker/6:1Ž àaF± ]4€kworker/6:1kworker/0:1#P¾f€!ßÂf€"°Äf€#ú—™€#Aœ™€!ž™€"ËŸ™€!µ ™€"þ¥™€#DuÌ€!õ{Ì€"–}Ì€#¸Hÿ€#Tÿ€!_Vÿ€"ßWÿ€! Yÿ€"«^ÿ€#‰.2!û42"¨62#°e#öe!e"Fe!3e"»e#±á—!$î—""ð—#æÃÊ#–ÈÊ!ËÊ"éÌÊ!ëÍÊ"³ÒÊ#Hšý!¥ý"«¦ý#ûv0‚!ãƒ0‚"À…0‚#»\c‚#x`c‚!Rbc‚"Ûcc‚!Ådc‚"Nic‚#t/–‚!B–‚"¯C–‚#É‚#ÅÉ‚!ºÉ‚"|!É‚!f"É‚"×&É‚#õòû‚!éøû‚"–úû‚#æÅ.ƒ#¦Ð.ƒ!yÓ.ƒ" Õ.ƒ!"Ö.ƒ"3Ú.ƒ#í¢aƒ!‹­aƒ".°aƒ#?€”ƒ!”ƒ"”Ž”ƒ#5\ǃ#Íjǃ!³lǃ"ÔP"?ÖP!)×P"mÛPl0Vahci Ø?VUAVuhci_hcd:usb3 ØEVGVeth1 ±KV# £ƒ!®ƒ"°ƒ#~¶#LŒ¶!†Ž¶"¢¶!‘¶"N–¶#·bé!hé"éié#¹7Ž#ÏCŽ!»EŽ"ƒGŽ!…HŽ"rLŽ#ÄOŽ!%OŽ"»&OŽ#JòŽ#ˆýŽ!X‚Ž"‚Ž!‚Ž"H‚Ž#Ï´Ž!ÛÛ´Ž"ÓÝ´Ž#¡´çŽ#l¹çŽ!š»çŽ"&½çŽ!¾çŽ"cÂçŽ#¾‡!Õ•"Ç—#ºdM#rpM!WsM"uM!îuM"zM#A€!±N€"[P€# ³!Á(³"”+³#¥üå#·æ! æ"¹ æ!» æ"¢æ#Ø!öã"Žå#ì¶K!8ÂK"NÄK#“~#Çœ~!¤¡~"c£~!e¤~" ª~#)v±!Ý|±"x~±#^Kä#±Vä!6Yä"°Zä![ä"5`ä#M(‘!7‘"+9‘#ùJ‘#F J‘!—J‘" J‘! J‘" J‘#óè|‘! ï|‘"ñ|‘#°¾¯‘#Gʯ‘!„̯‘"vί‘!`ϯ‘"©Ô¯‘#±›â‘!}¦â‘"ð¨â‘#sy’#Ê‚’!%…’"ü†’!釒"Œ’#;UH’!bH’"ŽcH’#Ö1{’#={’!H?{’"ø@{’!ßA{’"zF{’#Á®’![®’"ÿ®’#øà’#£ûà’!€ýà’" ÿà’!öÿà’"Žá’#~È“!ÒÔ“"Ú“# ®F“#²F“!e´F“"ôµF“!á¶F“"F»F“#-‚y“!ÃŽy“"¦y“#i¬“# n¬“!bp¬“"r¬“!s¬“"dw¬“#Bß“!5Hß“"ßIß“Šä“ahci H˜ä“­™ä“uhci_hcd:usb3 Nžä“‰Ÿä“eth1 Q¤ä“#í”#=$”!³&”"{(”!h)”"…-”#ÑýD”!ÂE”"rE”#XÒw”#›Ýw”!Üáw”"ªãw”!÷äw”"öèw”#b¯ª”!ô¼ª”"û¾ª”#F•Ý”#5šÝ”!–œÝ”"Ǟݔ!ÉŸÝ”"ý¤Ý”#Àk•!y•"M{•#DPC•#yTC•!bVC•"îWC•!ÛXC•"š]C•#-v•!è2v•"•4v•#kÿ¨•#¢ ©•!â ©•"¡©•!£©•"l©•#ÃäÛ•!tëÛ•"ýìÛ•#ÅÀ–#pÄ–!Æ–"rÈ–!zÉ–ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ£Í–È7Д¡È7€€"£Í–#ŸžA–!'¤A–;«A–ltt-kconsumerd2’±A–ltt-kconsumerd2x"H¶A–ȺA–kworker/0:1ltt-kconsumerd2)íA–hóA–öøöA–bùA–ö€@ŽK=¿ûA–IýA–HŽK=¿q B–{ B–t\B–¡_B–-jB–ˆ‚0 ltt-kconsumerd0ŽB– B–<–B–F˜B–Ý,©B–ÝQ«B–öñ­B–²B–°Ä@ ÿÿÿÿÿÿÿÿ1¿B–ltt-kconsumerd2Y«kþ± ÍB–ltt-kconsumerd2kworker/0:1ºõF–ahci G–SG–uhci_hcd:usb3  G–eG–eth1 3G–#Ž{t–#´‚t–!S†t–"Þˆt–!ì‰t–"Át–#ÛP§–!áZ§–"å\§–#5Ú–#;Ú–! =Ú–"#?Ú–!+@Ú–"GEÚ–# —!? —"ø —#/ç?—!Øò?—" õ?—#*Är—#%Ïr—!§Ñr—"0Ór—!qÔr—"EÙr—#·Ÿ¥—!j®¥—"°¥—#¤|Ø—#!‡Ø—!ý‰Ø—"¶‹Ø—!¬ŒØ—"ÏØ—#MY ˜!@g ˜"öh ˜#ž7>˜#ýB>˜!LE>˜"ÛF>˜!ÑG>˜"!L>˜#q˜! q˜"Ýq˜#®ñ£˜!"ü£˜"þ£˜#¡ÍÖ˜#ÇÑÖ˜!“ØÖ˜"VÜÖ˜!IÝÖ˜"áÖ˜# « ™!°µ ™"Ï· ™ºŠ™ahci ˜—™œ™™uhci_hcd:usb3 ž™EŸ™eth1 ¤™#7‘<™#0•<™!Ê—<™"ª™<™!£š<™"ÅŸ<™#mo™!uo™"Ûvo™#0A¢™#AL¢™!ùN¢™"úP¢™!;R¢™"jV¢™#|$Õ™!@*Õ™"ê+Õ™#ùš!¦š"D š#sÖ:š#„ã:š!„æ:š"(è:š!lé:š"î:š#,³mš!µÁmš"YÃmš#Á– š#Λ š!ž š"©Ÿ š!Ÿ  š"C¥ š#“nÓš!RzÓš" |Óš#éQ›#`V›!¾X›"Z›!š[›"`› ›ahci ª, ›ý- ›uhci_hcd:usb3 ƒ2 ›ý3 ›eth1 Å8 ›#q(9›!É69›"Í89›#l›#il›!^l›" l›!(l›"l›#÷èž›! ïž›"Áðž›#½Ñ›#°ÈÑ›!êÊÑ›"ÌÑ›!ÀÍÑ›"šÒÑ›#ö™œ!F¤œ"¦œ#½v7œ#%ˆ7œ!àŠ7œ"cŒ7œ!V7œ"=‘7œ#,\jœ!Wajœ"¦cjœ#Ì8œ#…=œ!t?œ"ô@œ!çAœ"aFœ#G М!©М"¶М#)ë#×õ!Îø"Yú!Lû"6ÿ#´Ï5![Ô5"Ö5#¸£h#}®h!º°h"m²h!`³h"€·h#·›!YŒ›"iŽ›#jÎ#CnÎ!/pÎ"ÜqÎ!ÒrÎ"IwÎ#?:ž!£Fž"eHž#4ž#$4ž!õ%4ž"x'4ž!h(4ž"-4ž#ôfž!wÿfž"gž#ÌЙž#<Ý™ž!…ß™ž"Pᙞ!X♞"­æ™žÜ ¥žahci ꥞=¥žuhci_hcd:usb3 ó ¥ž1"¥žeth1 ê&¥ž#ó®Ìž!ºÌž".½Ìž#œÿž#ñ˜ÿž!òšÿž"½œÿž!Îÿž"9¢ÿž#?g2Ÿ!‚v2Ÿ")x2Ÿ#4DeŸ##SeŸ!9UeŸ"ŽWeŸ!XeŸ"‹]eŸ#Þ ˜Ÿ!¶0˜Ÿ"–2˜Ÿ#¥ýÊŸ#ù ËŸ!E ËŸ"Å ËŸ!ñËŸ"äËŸ#—ÚýŸ!’æýŸ"®èýŸ#Œ·0 !ÎÄ0 "`Æ0 #ƒœc #M¢c !W¤c "¦c ! §c "áªc Ûõh ahci 5i ‹i uhci_hcd:usb3 i F i eth1 Si #¯x– !‰€– "u‚– # NÉ #ªXÉ !ÿZÉ "»\É !Ã]É "òaÉ #¾*ü !Ð9ü "¼;ü #@/¡#-/¡!/¡"º/¡!­/¡"/¡#häa¡!éña¡"äóa¡#*Ë”¡#ðΔ¡ÁüÁõ©‹à‡îØF²ÿbÊ™HŽzÒ”¡È74ýç¬È7À€!zÒ”¡ßÙ”¡ltt-kconsumerd2vß”¡ltt-kconsumerd2x"G䔡!‚唡"ü锡­í”¡kworker/0:1ltt-kconsumerd2g •¡i•¡öð•¡•¡ö€@ŽK=¿•¡•¡HŽK=¿ï#•¡Ì%•¡]•¡¹_•¡ -kh•¡‚0 ltt-kconsumerd:~•¡¤€•¡9…•¡‡•¡ÝW”•¡Ý[–•¡öÔ˜•¡Iœ•¡°Ä@ ÿÿÿÿÿÿÿÿ“©•¡ltt-kconsumerd2mË7ÿ± µ•¡ltt-kconsumerd2kworker/0:1#¬«Ç¡!†³Ç¡"ÿµÇ¡#ß|ú¡#nˆú¡!ØŠú¡"ŽŒú¡!~ú¡"»’ú¡#Ô`-¢!ãf-¢"Àh-¢#q4`¢#w@`¢!oB`¢"FD`¢!3E`¢"LJ`¢#n“¢!«“¢"I“¢Y­–¢uhci_hcd:usb4 f²–¢ì³–¢eth0#›¹–¢ к–¢! ½–¢"åÞ–¢#|ðÅ¢# ýÅ¢!àÿÅ¢"}Æ¢!pÆ¢"ÄÆ¢#%Ëø¢!×ø¢"™Ùø¢Ã!þ¢ahci 0þ¢e1þ¢uhci_hcd:usb3 î5þ¢M7þ¢eth1 `<þ¢#Fª+£#F¶+£!¶¸+£"~º+£!λ+£")Á+£#R‡^£!Ò’^£"¦”^£#ža‘£#?m‘£!.o‘£"ºp‘£!ªq‘£"„v‘£#¦@Ä£!`MÄ£"²OÄ£#9÷£#K'÷£!©)÷£"M+÷£!=,÷£"”2÷£#‰*¤!}*¤"Q *¤#ðÔ\¤#Òá\¤!lä\¤"7æ\¤!$ç\¤"†ë\¤#×±¤!¾¤"5À¤#tŽÂ¤!šÂ¤"pœÂ¤#Ómõ¤#wõ¤!üxõ¤"Ízõ¤!½{õ¤"ìõ¤#1H(¥!W(¥"œX(¥#Ã,[¥#Ì2[¥!»4[¥"6[¥!”7[¥"Ò;[¥#ÏŽ¥!¢Ž¥"»Ž¥#£ÞÀ¥!îÀ¥"ÌïÀ¥#ŽÆó¥#0Êó¥!OÌó¥"ÞÍó¥!ÈÎó¥"ŒÔó¥#’ &¦!6¨&¦" ª&¦#Ä|Y¦#‚Y¦!äƒY¦"j…Y¦!W†Y¦"ΊY¦#2RŒ¦!â`Œ¦"€bŒ¦#}9¿¦#÷=¿¦!ã?¿¦"nB¿¦!pC¿¦"ZG¿¦#£ ò¦!(ò¦"Ãò¦#wè$§#¿ò$§!ùô$§"|ö$§!f÷$§"%ü$§#ÆW§!MÐW§"ÒW§#F£Š§#㮊§!t±Š§"³Š§!5´Š§"²¸Š§§ahci |'§í(§uhci_hcd:usb3 Ç-§/§eth1 Ð3§#\½§!_Œ½§"䎽§#dð§#Þið§!Nlð§"@nð§!Boð§"1tð§#ï8#¨!D#¨"oF#¨#‡V¨!#$V¨"&V¨#õˆ¨#¹‰¨!“‰¨"@‰¨!0‰¨"U ‰¨#‘Ò»¨!໨"­á»¨#£´î¨#ϸî¨!'»î¨"=½î¨!B¾î¨"ÚÂî¨#Öˆ!©!\—!©"ä™!©#ÅeT©#NqT©!FsT©"ÞtT©!ÈuT©"êzT©#'K‡©!ÛQ‡©"ˆS‡©#\&º©#´+º©!*.º©"Â/º©!÷0º©"‘6º©#ýì©!0 í©"7 í©#0âª#yçª!eéª"èêª!Õëª"ïïª#¶Rª!ˆÂRª"’ÄRª#윅ª#ê¡…ª!E¤…ª"‹¦…ª!Ч…ª"4¬…ª#1q¸ª!Ë}¸ª"Û¸ª#5Tëª#hZëª!]ëª"ô^ëª!ö_ëª"Idëª#4)«!'6«"8«#«Q«#ÆQ«!²Q«">Q«!.Q«" Q«#샫!Öòƒ«"›ôƒ«#´¿¶«#¥Ë¶«!îͶ«"¶Ï¶«!Ѷ«"’Õ¶«#é«! «é«"®¬é«#Þz¬#À„¬!‡¬"鈬!뉬"Aެ­À¬uhci_hcd:usb4 xŬ¶Æ¬eth0#S̬ Xͬ!õϬ"¡ó¬07¬ahci !7¬a"7¬uhci_hcd:usb3 '7¬I(7¬eth1 ó,7¬#&YO¬!+fO¬"¶hO¬#¿3‚¬#Æ>‚¬!-A‚¬"ÚB‚¬!ßC‚¬"J‚¬#ĵ¬!§µ¬"]µ¬#¾÷ç¬ÁüÁõ©‹à‡îØF²ÿbÊ™HŽêûç¬È7Hn¸È7Ѐ#êûç¬!u謵è¬ltt-kconsumerd2Ç è¬ltt-kconsumerd2x"wè¬!—è¬"áè¬âè¬kworker/0:1ltt-kconsumerd2‹<è¬Ã@è¬öeDè¬9Fè¬ö€@ŽK=¿¿G謥Iè¬HŽK=¿‹Tè¬_Vè¬ãŒè¬†è¬0-Œ˜è¬˜‚0 ltt-kconsumerd&­è¬?¯è¬ =´è¬¶è¬Ý ½Áè¬ÝÐÃè¬ö=Æè¬©É謰Ä@ ÿÿÿÿÿÿÿÿÖè¬ltt-kconsumerd2RËj² Màè¬ltt-kconsumerd2kworker/0:1#õË­!xÙ­"ÓÛ­#á®M­#‡´M­!‘¶M­" ¸M­!¹M­"e¾M­#÷‹€­!F‘€­"á’€­# `³­#ál³­!Bo³­"q³­!r³­"w³­#dEæ­!¿Jæ­"Læ­#¼®#Ç$®!¼&®"`(®!b)®"X-®®u®ahci jƒ®ê„®uhci_hcd:usb3 ‚‰®‹®eth1 Ö®#¨ýK®!”L®"wL®#ûÓ~®#ôÝ~®!Rà~®"â~®!òâ~®"6ç~®#°±®!8½±®"ë¾±®#ä®#(™ä®!œä®"™ä®!Ëžä®"£ä®#Îi¯!fx¯"z¯#nGJ¯!ãSJ¯"ÛUJ¯#½,}¯#ñ1}¯!×3}¯" 6}¯! 7}¯"§<}¯#Ñ °¯!ª°¯"ü°¯#'Ýâ¯!éâ¯"ìâ¯#ÃÁ°#ư!PȰ"Ùɰ!ÆÊ°"[ϰ#ª–H°!u¥H°"§H°#b~{°#.‚{°!}„{°"?†{°!/‡{°"9Œ{°#¿X®°!m_®°" a®°#@-á°#¶;á°!>á°"Ù?á°!Û@á°"æDá°# ±!±"0±#çF±#òF±!äôF±"göF±!œ÷F±"AûF±gSL±ahci Ù_L±AaL±uhci_hcd:usb3 ñeL±5gL±eth1 ßkL±#WÆy±!êÕy±"Øy±#°¡¬±#C¬¬±!¿®¬±"œ°¬±!Œ±¬±"ö¶¬±#ˆ}ß±!͇߱"n‰ß±#>]²#Šh²!ik²"øl²!åm²"tr²#ã7E²!ÝCE²"¥EE²#Nx²#À!x²!Í#x²"\%x²!I&x²"â,x²#Äûª²!¤«²"E«²#¦Íݲ#òØÝ²!ùÚݲ"ñÜݲ!ÛÝݲ"Lâݲ#yª³!ì¹³"ü»³èϳahci ØÜ³.Þ³uhci_hcd:usb3 ¥â³ä³eth1 ½è³#¬ˆC³#¤”C³!—C³"$™C³!ešC³"¬žC³#-dv³! sv³"suv³#ÅK©³#ÐO©³!ÅQ©³"KS©³!5T©³"ÄX©³#íܳ!¨,ܳ"|.ܳ#·´#V ´!i ´"õ´!â´"S´#z×A´!,ãA´"“åA´#½t´#Át´!ÆÃt´"…Åt´!ŠÆt´"ÑÊt´#Ò›§´!X §´"ù¡§´#ïmÚ´#zÚ´!S|Ú´"Ü}Ú´!Æ~Ú´"³‚Ú´#$U µ!‘Z µ"z\ µ#0@µ#ü4@µ!Ò7@µ"g9@µ!®:@µ"—?@µ#d sµ!Æsµ"gsµ#?᥵#¹î¥µ!ñ¥µ"Êò¥µ!±ó¥µ" ø¥µ#3¾Øµ!RÍØµ" ÏØµ#ˆ› ¶#æ§ ¶!Aª ¶"ë« ¶!í¬ ¶"…± ¶#v>¶!æ„>¶"«†>¶#Tq¶#„`q¶!*cq¶"Ñdq¶!Öeq¶"skq¶# 2¤¶!\=¤¶"?¤¶è“­¶ahci W ­¶¤¡­¶uhci_hcd:usb3 0¦­¶˧­¶eth1 “¬­¶#×¶#S×¶!o×¶"Ä×¶!Ì ×¶"Í%×¶#ë ·!‘ú ·"2ü ·#ÑÇ<·#Ó<·!¦Õ<·")×<·!Ø<·"Ý<·#7¦o·!(³o·"}µo·#!Œ¢·##¢·!K’¢·"È“¢·!•¢·" ™¢·#\^Õ·!|kÕ·"ƒmÕ·#Í<¸#H¸!5J¸"²K¸!ŸL¸"¼P¸#';¸!!%;¸" ';¸#.öm¸#šÿm¸!Ln¸"Þn¸ÁüÁõ©‹à‡îØF²ÿbÊ™HŽn¸È7Κ(ÃÈ7ø€!n¸"q n¸#tÓ ¸!Zá ¸jæ ¸ltt-kconsumerd2sì ¸ltt-kconsumerd2x"ðð ¸°ô ¸kworker/0:1ltt-kconsumerd2¥¡¸t¡¸ö顸½¡¸ö€@ŽK=¿L¡¸,!¡¸HŽK=¿:+¡¸-¡¸ä_¡¸{b¡¸@-*k¡¸ ‚0 ltt-kconsumerd–€¡¸¦‚¡¸0›‡¡¸«‰¡¸Ý0‘”¡¸Ý•–¡¸ö™¡¸kœ¡¸°Ä@ ÿÿÿÿÿÿÿÿŨ¡¸ltt-kconsumerd2³¾Á² jµ¡¸ltt-kconsumerd2kworker/0:1/3¦¸ahci m@¦¸ÌA¦¸uhci_hcd:usb3 aF¦¸¢G¦¸eth1 ÙL¦¸#ô¸Ó¸# ¾Ó¸!þÀÓ¸"8ÃÓ¸!OÄÓ¸"ËÉÓ¸#⓹!O™¹" ›¹#Hn9¹#Ãt9¹!«w9¹"Uy9¹!Bz9¹"”9¹#nOl¹!üTl¹"ôVl¹#Ë!Ÿ¹#C/Ÿ¹!1Ÿ¹"Ç2Ÿ¹!±3Ÿ¹"ª7Ÿ¹#/Ò¹!{ Ò¹"s Ò¹#Zݺ#4èº!€êº"Kìº!8íº"Íñº#D¸7º!Æ7º"ÃÇ7º#~˜jº#ç¢jº!·¥jº"I§jº!3¨jº"ž¬jº# rº!b}º" º#Rк#÷[к!R^к"`к!Oaк"Ÿeк#é,»!ª6»"Ì8»#°6»#H6»!U6»"P6»!=6»"ó6»#åh»!Dòh»"œôh»Jn»ahci Ý+n»H-n»uhci_hcd:usb3 þ1n»<3n»eth1 à7n»#üÌ›»#XÑ›»!:Ô›»"Ö›»!õÖ›»"ÛÛ›»#ŸÎ»!›«Î»´°Î»kworker/6:1x"ԴλϹλkworker/0:1kworker/6:1€ÆÎ»kworker/6:14Q½I± nÏλkworker/6:1kworker/0:1#—}¼#@‰¼!ž‹¼"r¼!h޼"‡“¼#ÈY4¼!¼b4¼"we4¼#@g¼#Dg¼!-Fg¼"þGg¼!ëHg¼"«Lg¼#{š¼! !š¼"#š¼#²øÌ¼#Pý̼!9ÿ̼"¿Í¼!¯ͼ"Éͼ#óÔÿ¼!áÚÿ¼"‚Üÿ¼#À¨2½!¾´2½"e¶2½#Lˆe½#Œ“e½!ç•e½"g—e½!W˜e½"¿œe½#…b˜½!Ïl˜½"an˜½øÊš½uhci_hcd:usb4 ŠÏš½ Ñš½eth0#+ך½ 9Øš½!LÚš½"cæš½# @˽#¶L˽!eO˽"Q˽!R˽" V˽#Iþ½!U(þ½"z*þ½#]1¾#Ò1¾!Í 1¾"n 1¾!p 1¾"´1¾#óÕc¾!pác¾" ãc¾#ž´–¾#Ô¾–¾!hÁ–¾"3Ö¾!5Ä–¾"6É–¾#¦É¾!÷œÉ¾"¼žÉ¾#ñvü¾#¢zü¾!š|ü¾"~ü¾!ü¾"M„ü¾#PJ/¿!¶W/¿"`Y/¿#×/b¿#?4b¿!O6b¿" 8b¿!9b¿"–=b¿#Ó •¿!m•¿"•¿#¯ßÇ¿#+ïÇ¿!zñÇ¿"3óÇ¿!5ôÇ¿"ÙøÇ¿#€¼ú¿!³Éú¿"ÌËú¿#±™-À#‹¥-À!×§-À"c©-À!’ª-À"5°-À®ÐDÀahci )ÝDÀ£ÞDÀuhci_hcd:usb3 _ãDÀ²äDÀeth1 ÅéDÀ#<€`À!c†`À"‹ˆ`À#"S“À#i]“À!Ç_“À"na“À!sb“À"ªg“À#+1ÆÀ!m>ÆÀ" @ÆÀ#Å ùÀ#îùÀ!”ùÀ"_ùÀ!dùÀ"†$ùÀ#œé+Á!Vö+Á"ñ÷+Á#ÐÈ^Á#³Ô^Á!•×^Á"?Ù^Á!AÚ^Á"ß^Á#­‘Á!沑Á"–´‘Á#€ÄÁ#¸ÄÁ!ÄÁ"¥‘ÄÁ!Ý’ÄÁ"·—ÄÁ#Ã\÷Á!~k÷Á"m÷Á#AB*Â#šF*Â!=I*Â"ÏJ*Â!¼K*Â"@O*Â#!]Â!&&]Â"¾']Â#düÂ#åÿÂ!ÝÂ"‡Â!tÂ"ÁÂ#=ÐÂÂ!ÛÂÂ"ÝÂÂ#F®õÂ#´¶õÂ!T¹õÂ"ѺõÂ!¾»õÂ"ä¿õÂ#œŠ(Ã!—(ÃÁüÁõ©‹à‡îØF²ÿbÊ™Hއ™(ÃÈ7q€áÎÈ7Ѐ"‡™(Ã#…r[Ã#v[Ã!|x[Ãé}[Ãltt-kconsumerd2Yƒ[Ãltt-kconsumerd2x"߇[Ã!óˆ[Ã"([ÃÇ[Ãkworker/0:1ltt-kconsumerd2±[Ãè´[Ãö¸[Ãι[Ãö€@ŽK=¿N»[ÃI½[ÃHŽK=¿°È[ÊÊ[Ã6ý[ÃÙÿ[ÃP-Ö\è‚0 ltt-kconsumerd\Ã: \Ã@–$\Ãs&\ÃÝ@e1\ÃÝ«3\Ãö6\Ã9\ðÄ@ ÿÿÿÿÿÿÿÿ~E\Ãltt-kconsumerd2–ó„² øO\Ãltt-kconsumerd2kworker/0:1©`Ãahci î½`Ãh¿`Ãuhci_hcd:usb3 BÄ`äÅ`Ãeth1 oÊ`Ã#vNŽÃ!“UŽÃ"ZXŽÃ#| ÁÃ#Æ-ÁÃ!¨0ÁÃ"ˆ2ÁÃ!u3ÁÃ"„9ÁÃ#2ýóÃ!uôÃ"ˆ ôÃ#?æ&Ä#Oë&Ä!ªí&Ä"áï&Ä!Ñð&Ä"Bõ&Ä#ʶYÄ!NÄYÄ"[ÆYÄNj`Äahci ìw`Ä`y`Äuhci_hcd:usb3 ò}`Äf`Äeth1 "„`Ä#È“ŒÄ#÷ ŒÄ!X£ŒÄ"¥ŒÄ!L¦ŒÄ"#«ŒÄ#.z¿Ä!(€¿Ä"Þ¿Ä#QMòÄ#”VòÄ!7YòÄ"½ZòÄ!ª[òÄ"â_òÄ#ž3%Å!b9%Å"B;%Å#?XÅ#¥XÅ!XÅ"àXÅ!âXÅ"‚XÅ#ÄãŠÅ!©ðŠÅ"¹òŠÅ#T½Å!â˽Å" νÅ#¼žðÅ#3©ðÅ!éªðÅ"r¬ðÅ!_­ðÅ"¬±ðÅ#Qz#Æ!5Š#Æ"Œ#Æ#%WVÆ#bVÆ!eVÆ"ÝfVÆ!ÊgVÆ"äkVÆ#7‰Æ!ûA‰Æ"¥C‰Æ#­¼Æ#ƼÆ!K!¼Æ"Ô"¼Æ!Á#¼Æ"S(¼Æ#­íîÆ!¤úîÆ"9üîÆ#–Ê!Ç#qÕ!Ç!À×!Ç"RÙ!Ç!rÚ!Ç"žÞ!Ç#¤©TÇ!^¶TÇ">¸TÇ#1„‡Ç#”‡Ç!"–‡Ç"ä—‡Ç!㘇Ç"✇Çê“’Çahci G ’ÇÓ¡’Çuhci_hcd:usb3 b¦’Ç §’Çeth1 Œ¬’Ç#êcºÇ!£oºÇ"˜qºÇ#¦>íÇ! KíÇ"þLíÇ#Å* È#†- È!á/ È"Ž1 È!2 È"!8 È#™÷RÈ!SÈ"¤SÈ#XÔ…È#0ß…È!(á…È"çâ…È!Ôã…È"Ûè…È#\¸¸È!¿¸È"®À¸È#ÜëÈ#S˜ëÈ!šëÈ"^œëÈ!KëÈ"àëÈ#ÍjÉ!±zÉ"¯|É#¡GQÉ#üSQÉ!÷UQÉ"ËWQÉ!¨YQÉ" ^QÉ#$„É!61„É"3„É#/·É#/ ·É!´·É"R·É!B·É"‚·É# ÞéÉ!¹èéÉ"ÉêéÉ#¼¼Ê#^ÇÊ!°ÉÊ"cËÊ!PÌÊ"OÐÊ#¶—OÊ!>¦OÊ"è§OÊ#^u‚Ê!‚Ê"®‚‚Ê#¨TµÊ# `µÊ!ûbµÊ"œdµÊ!žeµÊ"jµÊ#D.èÊ!9èÊ";èÊ# Ë#™Ë!fË"ïË!-Ë"Ë#ˆñMË!…÷MË"\ùMË#Í€Ë#˜Ñ€Ë!¢Ó€Ë""Õ€Ë!Ö€Ë",Ú€Ë#±¡³Ë!Ù¯³Ë"ȱ³Ë#`~æË#yŠæË!<æË"ãŽæË!ÐæË"O•æË#=[Ì!FhÌ"üiÌ#+:LÌ#™ELÌ!íGLÌ"ILÌ!¢JLÌ"ÑNLÌ#þÌ! !Ì"·"Ì#Oõ±Ì#§²Ì!²Ì"¬²Ì!«²Ì" ²Ì#®ÎäÌ!êÛäÌ"¦ÝäÌ#ɲÍ#À¸Í!ǺÍ"G¼Í!v½Í"«ÁÍ#¼ŠJÍ! ™JÍ"¸šJÍ#8e}Í#œq}Í!t}Í"v}Í!3Ïltt-kconsumerd2kworker/0:1#a1GÏ!Â9GÏ")Ô#rÄ>Ô!XÆ>Ô" È>Ô!õÈ>Ô"5Î>Ô#Q˜qÔ!3¥qÔ"ì¦qÔè|Ôahci œô|Ôö|Ôuhci_hcd:usb3 ®ú|Ô!ü|Ôeth1 à}Ô#Es¤Ô#”|¤Ô!6€¤Ô"7‚¤Ô!fƒ¤Ô"Oˆ¤Ô#R×Ô!û]×Ô"´_×Ô#69 Õ#Y= Õ!ÍÚ"»?ÍÚ!«@ÍÚ"ìDÍÚÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚÛÈ74ö¸æÈ7Ѐ#ÚÛ!·Û'Ûltt-kconsumerd2G.Ûltt-kconsumerd2x"ß2ÛÆ6Ûkworker/0:1ltt-kconsumerd2ÈaÛ±fÛöjÛÇkÛö€@ŽK=¿,mÛoÛHŽK=¿á{ÛÐ}Û¸ÛúÛp-äÃÛ¸‚0 ltt-kconsumerd‘ÚÛ­ÜÛ`xáÛ…ãÛÝ`ÈîÛÝáðÛö<óÛöÛ°Ä@ ÿÿÿÿÿÿÿÿùÛltt-kconsumerd2ãÖ$²  Ûltt-kconsumerd2kworker/0:1¡pÛahci  }Û Ûuhci_hcd:usb3 ăÛ…Ûeth1 î‰Û#Dô2Û#»ø2Û!ëû2Û"4þ2Û!0ÿ2Û"+3Û#ˆÏeÛ!=ÕeÛ"ÛÖeÛ#$¤˜Û#º®˜Û!±˜Û"¡²˜Û!г˜Û"¸˜Û#ÓËÛ!´ËÛ"a‘ËÛ#__þÛ#_iþÛ!®kþÛ"åmþÛ!çnþÛ"(sþÛ#-B1Ü!£J1Ü"JL1Ü#TdÜ#Þ&dÜ!ú(dÜ"€*dÜ!m+dÜ"/dÜ#Êý–Ü!ã—Ü"À—Ü#ÑÉÜ#°ÜÉÜ!ßÉÜ"áÉÜ!âÉÜ"CæÉÜ#®üÜ!¬»üÜ"†½üÜ#’/Ý#P˜/Ý!`š/Ý"Ý›/Ý!Çœ/Ý"~ /Ý#„ibÝ!)wbÝ"ÇxbÝ#(F•Ý#:R•Ý!†T•Ý"‡V•Ý!tW•Ý"ˆ[•Ý#N!ÈÝ!.ÈÝ"y0ÈÝ#9ÿúÝ#V ûÝ!ûÝ"ÍûÝ!·ûÝ"¥ûÝ#öÚ-Þ!§ç-Þ",ê-Þ#b»`Þ#LÆ`Þ!ËÈ`Þ"œÊ`Þ!žË`Þ"Ï`Þ#ž“Þ!û£“Þ"±¥“Þ#¸sÆÞ!·~ÆÞ"Á€ÆÞ#YùÞ# ]ùÞ!\_ùÞ"aùÞ!bùÞ"LfùÞ#4+,ß!ª7,ß"~9,ß#_ß#4_ß!3_ß"¼_ß!©_ß"®_߯›eßahci ‡¨eßø©eßuhci_hcd:usb3 o®eß­¯eßeth1 `´eß#áå‘ß!ªò‘ß"«ô‘ß#^ËÄß#`ÏÄß!3ÒÄß"¶ÓÄß!âÔÄß" ÙÄß#ž÷ß!„­÷ß"j¯÷ß#~ƒ*à#Uˆ*à!SŠ*à"Œ*à! *à"Б*à##X]à!Žh]à"#j]à#/5à#D?à!3Aà"³Bà! Cà"±Gà‹ àahci  › àóœ àuhci_hcd:usb3 …¡ à®¢ àeth1 d§ à#›Ãà!©!Ãà"ƒ#Ãà#³îõà#-ùõà!füõà"þõà!ÿõà"éöà#£Ì(á!ÖÙ(á"°Û(á#`¨[á#¶[á!~¸[á"º[á!ñº[á"}¿[á›qáahci n§qáͨqáuhci_hcd:usb3 X­qá“®qáeth1 a³qá#Ÿ‡Žá!b•Žá"—Žá#ŠkÁá#°oÁá!ÃqÁá"CsÁá!-tÁá"bxÁá#Ó>ôá!îKôá"ŒMôá#'â#•('â!Ÿ*'â"L,'â!9-'â"C2'â#ÛZâ!ÊZâ"tZâ#‰ÖŒâ#ÀâŒâ!3åŒâ"°æŒâ! çŒâ"êëŒâ#·½¿â!7¿â"Éÿâ#¤òâ#Õ™òâ!@žòâ"ßòâ!­ òâ"¥òâ#…l%ã!ív%ã"—x%ã#ýIXã#%SXã!”VXã"MXXã!7YXã"]Xã#'‹ã!Â0‹ã"x2‹ã#…¾ã#×¾ã!Ò¾ã"v¾ã!x¾ã"þ¾ã#5ßðã!Yëðã"íðã#½#ä#ïÆ#ä!5É#ä"ÊÊ#ä!½Ë#ä"­Ï#ä#Ö˜Vä!h¤Vä"¦Vä#by‰ä#]…‰ä!¦‡‰ä"•‰‰ä!—Љä"Œ‰ä#‚R¼ä!Ï_¼ä"|a¼ä#n8ïä#Ê<ïä!ª>ïä"c@ïä!SAïä"—Eïä#* "å!«"å":"å#õTå#{øTå!ñúTå"nüTå!XýTå"„Uå#gȇå!æ×‡å"ŸÙ‡å#¡¢ºå#®ºå![°ºå" ²ºå!ø²ºå"붺å#3€íå!&Žíå"µíå#h æ#ƒk æ!{m æ"o æ!÷o æ"•t æ#±BSæ!rHSæ"jJSæ#ˆæ!+"†æ" $†æÁüÁõ©‹à‡îØF²ÿbÊ™HŽóô¸æÈ7RþëÈ7P~€#óô¸æ#@¹æ!ï¹æK ¹æltt-kconsumerd2ú¹æltt-kconsumerd2x"¹æ!7¹æ"?¹æ¹ækworker/0:1ltt-kconsumerd2‹2¹æ6¹æöN9¹æF;¹æö€@ŽK=¿À<¹æ >¹æHŽK=¿¼F¹æ±H¹ægw¹æïy¹æ€-_‚¹æÀˆ0 ltt-kconsumerd˜¹æ š¹æpôž¹æû ¹æÝp «¹æÝ­¹æö;¯¹æ²¹æ°Ä@ ÿÿÿÿÿÿÿÿ5¾¹æltt-kconsumerd2±!Õ² ®É¹æltt-kconsumerd2kworker/0:1#Ýëæ!ñãëæ"Xæëæ#„¬ç#•·ç!,ºç"K¼ç!;½ç"cÂç#e‰Qç!—Qç"e™Qç#¢l„ç#øp„ç!är„ç"¦t„ç!«u„ç"òy„ç#K·ç!¢P·ç"+R·ç#æ êç#Ô)êç!˜,êç"?.êç!,/êç"Ú2êç#®üè!«è"p è#ˆÙOè#>äOè!2çOè"¯èOè!ŸéOè"†íOè#BÁ‚è!ÍÆ‚è"\È‚è#!“µè#žµè!ÜŸµè"†¡µè!‹¢µè"§µè#ûxèè!€èè"¼èè#nSé#Xé!þYé"º[é!¿\é"Í`éÝ¿*éuhci_hcd:usb4 ½Ä*éÆ*éeth0#ËË*é ÇÌ*é!ÑÎ*é"ûï*é#W3Né!9Né" ;Né#mé#¾é!Ué"’é!”é"=é#bã³é!ó³é"õ³é#´Âæé#ÆÏæé!Òæé"àÓæé!âÔæé"Ùæéƒ‹íéahci Ęíéšíéuhci_hcd:usb3 ¢žíéìŸíéeth1 ¢¤íé#©§ê!Ù­ê"³¯ê#¬„Lê#NˆLê!jŠLê">ŒLê!CLê"„‘Lê#=_ê!–fê":hê#_3²ê#³<²ê!>²ê" @²ê!÷@²ê"ÏD²ê#Cåê!¦åê"nåê# íë#}úë!Wüë"àýë!Íþë"·ë# ÊJë!¸ÖJë"¹ØJë#ª}ë#vµ}ë!¸}ë"5º}ë!"»}ë"ÑÀ}ë#»ƒ°ë!¦°ë"t‘°ë#ìfãë#Ækãë!»mãë"Doãë!1pãë"ŠtãëjTûëuhci_hcd:usb4 áXûë"Zûëeth0#2_ûë 7`ûë!&bûëŠyûësshdf(Ü~ûësshdf(x"8‰ûëyûëkworker/0:1sshdf(é§ûëE¬ûë𢴀ÿp£´€ÿô®ûëò°ûëp£´€ÿ²ûë¹ûëàc´€ÿ@Áûë0Üûë@ù¨ª2 ù¨ª2=êûë›ìûë𢴀ÿp£´€ÿoîûëFðûëp£´€ÿ¢ñûëNôûë Eªª2 þûësshdf(ˆ€S]± œüëkworker/6:1x’üësshdf(xÿ üë$ üë Tࢴ€ÿ@£´€ÿüëüë@ù¨ª2 ù¨ª2x!üësshdf(X#«=]± ü$üësshdf(kworker/6:1;üëkworker/6:1gˆÔL± ÖFüëkworker/6:1kworker/0:1‰ôýësshdf(xÁûýëkworker/0:1sshdf(*þëÖþë𢴀ÿp£´€ÿ×þëÁüÁõ©‹à‡îØF²ÿbÊ™HŽþëÈ7Ó†ÍøÈ7À€þëp£´€ÿ¼þë>þëàb´€ÿ@s%þëX:þë@ù¨ª2 ù¨ª2rAþë‚Cþë𢴀ÿp£´€ÿ/EþëëFþëp£´€ÿ2HþëæKþ단ª2@elþë@Ìqþë@ù¨ª2 ù¨ª2F|þësshdf(ŠÃÇ]± î…þësshdf(kworker/0:1#°Gì![Nì",_ì#úIì!^&Iì"w(Iì#rø{ì#|ì!Š|ì"( |ì!! |ì"Þ|ì#¼Ý®ì!ã®ì"Êä®ì#“°áì#(¼áì!ª¾áì"'Àáì!Ááì"fÆáì#{í!„œí"Iží#~sGí#]yGí!ß{Gí"e}Gí!R~Gí"‰ƒGí#ñGzí!¹Rzí"]Tzí#+­í#÷.­í!m1­í"ê2­í!Ñ3­í"9­í#Éàí!àí"Éàíõåíahci ÿæímæíuhci_hcd:usb3  æíX æíeth1 æí#[àî#Ãêî!Ùìî"Ôîî!Áïî"ôî#öÂEî!ZËEî"eÏEî#3—xî#q¢xî!!§xî"°¨xî!©xî",®xî#:t«î!b«î"ú€«î#üPÞî#éZÞî!^Þî"À_Þî!Å`Þî"ådÞî#Ç-ï!L<ï"ç=ï#d Dï#õDï!,Dï"¯Dï!ŸDï"ÚDï#ëèvï!ãóvï"½õvï#)Ä©ï#3Щï!Ò©ï"ŸÓ©ï!ŒÔ©ï"YÚ©ï#v«Üï!'²Üï"š´Üï# ~ð#‹ð!’ð"Ÿð!‰ð"w–ð#ÇZBð!ÏgBð"ÕjBðIoGðahci „Gð{…Gðuhci_hcd:usb3 ŠGðB‹Gðeth1 þGð#<9uð#Auð!ìCuð"Fuð! Guð"}Luð#h¨ð!U!¨ð";#¨ð#ñÚð#«ýÚð!]Ûð"ÝÛð!ÇÛð"çÛð#Î ñ!ÒÛ ñ"ôÝ ñ#¬@ñ#Z´@ñ!’¸@ñ"-º@ñ! »@ñ"”¿@ñ#»‡sñ!Æ”sñ"—sñ#†d¦ñ#·o¦ñ!Ûr¦ñ"[t¦ñ!Eu¦ñ"Vy¦ñ#IÙñ!ËNÙñ"{PÙñ# ò#q+ ò! . ò" / ò!0 ò"×4 ò#û>ò!8?ò"Ð?ò#,Úqò#Tæqò!‚èqò"Sêqò!=ëqò"“ïqò#¬´¤ò!6¿¤ò"ÝÀ¤ò#™×ò#é×ò!çŸ×ò"d¡×ò!Q¢×ò"G¦×ò#%p ó!'} ó"æ~ ó#.K=ó#žV=ó!ÞX=ó"dZ=ó!N[=ó"¼_=ó#L.pó!I4pó"í5pó#£ó#Ô£ó!£ó"è£ó!ê£ó"'£ó#áÕó!UíÕó"öîÕó#óÇô#‰Ëô!lÍô"æÎô!ÖÏô"zÔô#ñ£;ô!(©;ô"Õª;ô#+xnô#œ…nô!v‡nô"w‰nô!gŠnô"9Žnô#êT¡ô!Ãc¡ô"me¡ôDª§ôahci S¶§ôÁ·§ôuhci_hcd:usb3 P¼§ô޽§ôeth1 D§ô#*2Ôô#<>Ôô!‘@Ôô"VBÔô!FCÔô"‡GÔô#£õ!1õ"äõ#:ì9õ#âø9õ!mû9õ"êü9õ!Ôý9õ"9:õ#ÔÒlõ!ŒØlõ"0Úlõ#¡®Ÿõ#—²Ÿõ!¤´Ÿõ"!¶Ÿõ!·Ÿõ"O»Ÿõ#íÒõ!9Òõ"ÅŽÒõ#µ^ö#gjö!àlö"nö!woö"Ùsö#ËD8ö!KI8ö"K8ö#}kö#7%kö!Â'kö"B)kö!/*kö"ý.kö#xõö!tžö"Bžö#ÒÐö#‰ÝÐö!ÈàÐö"râÐö!tãÐö"QèÐö#ê®÷!â½÷"¿÷#Ê‹6÷!•6÷"j—6÷#ti÷#ƒwi÷!çyi÷Õi÷kworker/6:1x"ƒi÷!è„i÷"n‰i÷Ái÷kworker/0:1kworker/6:1™i÷kworker/6:1*²ïL± “£i÷kworker/6:1kworker/0:1#æLœ÷!­Rœ÷"{Tœ÷#o"Ï÷#‹-Ï÷!40Ï÷"e2Ï÷!U3Ï÷"Å8Ï÷#7ÿø!‰ ø"-ø#¨ä4ø#ôé4ø!æë4ø"½í4ø!¿î4ø"0ó4ø#Ù¿gø!–Ægø"jÈgø#ž•šø#A¡šø!¢£šø".¥šø!¦šø" «šø#|Íø!—ƒÍøÁüÁõ©‹à‡îØF²ÿbÊ™Hޤ…ÍøÈ7ØBýÈ7€M€"¤…Íø#LXù#Ó[ù!Ñ]ùubùltt-kconsumerd2¬gùltt-kconsumerd2x"ºkù!Ålù"oqùŒuùkworker/0:1ltt-kconsumerd2Û•ù$›ùöÞžùÍ ùö€@ŽK=¿e¢ùÛ¤ùHŽK=¿x°ùˆ²ùêùÕìù -ÞõùЈ0 ltt-kconsumerd ù1ùÿùùÝ#ùÝ!%ùöm'ù?+ù°Ä@ ÿÿÿÿÿÿÿÿ8ùltt-kconsumerd2ýѧ² ±Cùltt-kconsumerd2kworker/0:1Çmùahci {ù‹|ùuhci_hcd:usb3 Aù—‚ùeth1 _‡ù#€53ù!-<3ù" >3ù# fù!“fù"÷fù#áå˜ù#øð˜ù!çò˜ù"…ô˜ù!õ˜ù":ú˜ù#ÉÄËù!™ÑËù":ÓËù#fŸþù#¦ªþù!­þù"V¯þù!C°þù"€µþù#O|1ú!˜Š1ú"‡Œ1ú#&Ydú#Bgdú!«jdú"Uldú!Emdú"Ûpdú#ä5—ú!û@—ú"­B—ú×¥œúahci %²œú™³œúuhci_hcd:usb3 ¸œúE¹œúeth1 ¾œú#ÖÊú#t Êú!"Êú"‹$Êú!x%Êú"*Êú#£ïüú!¶þüú"ºýú#ŒÍ/û#gØ/û!ÔÚ/û"‡Ü/û!tÝ/û"„â/û# ªbû!Û¶bû" ¸bû#™•û#i”•û!Ù–•û"S˜•û!@™•û"ö•û#µeÈû!ŽqÈû"zsÈû#^Iûû#=Nûû!°Pûû"-Rûû!Sûû"FWûûžzüahci ¿†üˆüuhci_hcd:usb3 ŒŒüÐüeth1 ƒ’ü#Ú.ü!›+.ü"o-.ü#åaü#øaü! aü" aü! aü"jaü#’ß“ü!;å“ü"÷æ“ü#³Æü#½Æü!ÀÆü"ÄÁÆü!°ÂÆü"rÇÆü#ùü!sŸùü".¡ùü#øv,ý#–{,ý!>~,ý"»,ý!¨€,ý"[…,ý?ýahci ¼›?ý?ýuhci_hcd:usb3 t¡?ý¢?ýeth1 b§?ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽšÚiÉ7‰ŸÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/test/metadata0000755000175000017500000007000011616325072020015 00000000000000WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; } := uint16_t; typealias integer { size = 32; align = 8; signed = false; } := uint32_t; typealias integer { size = 64; align = 8; signed = false; } := uint64_t; typealias integer { size = 5; align = 1; signed = false; } := uint5_t; typealias integer { size = 27; align = 1; signed = false; } := uint27_t; trace { major = 0; minor = 1; uuid = "f5a98be0-87ee-d846-b2ff-621fca99488e"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; struct packet_context { uint64_t timestamp_begin; uint64_t timestamp_end; uint32_t events_discarded; uint32_t content_size; uint32_t packet_size; uint32_t cpu_id; }; struct event_header_compact { enum : uint5_t { compact = 0 ... 30, extended = 31 } id; variant { struct { uint27_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); struct event_header_large { enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id; variant { struct { uint32_t timestamp; } compact; struct { uint32_t id; uint64_t timestamp; } extended; } v; } align(8); stream { id = 0; event.header := struct event_header_large; packet.context := struct packet_context; }; event { name = block_rq_remap; id = 52; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_remap; id = 51; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } old_dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } old_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_split; id = 50; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } new_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_unplug; id = 49; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } nr_rq; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_plug; id = 48; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_sleeprq; id = 47; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_getrq; id = 46; stream_id = 0; fields WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€:= struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_queue; id = 45; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_frontmerge; id = 44; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_backmerge; id = 43; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_bio_complete; id = 42; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } error; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; }; }; event { name = block_bio_bounce; id = 41; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; }; }; event { name = block_rq_issue; id = 40; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_insert; id = 39; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = noneWÑuõ©‹à‡îØF²ÿbÊ™HŽ€€; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } bytes; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_complete; id = 38; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_requeue; id = 37; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = block_rq_abort; id = 36; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } dev; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } sector; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } nr_sector; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errors; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } rwbs; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } __cmd_length; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } cmd[ __cmd_length ]; }; }; event { name = softirq_raise; id = 35; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_exit; id = 34; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = softirq_entry; id = 33; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } vec; }; }; event { name = irq_handler_exit; id = 32; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = irq_handler_entry; id = 31; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq; string name; }; }; event { name = kvm_async_pf_completed; id = 30; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } pfn; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_ready; id = 29; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } WÑuõ©‹à‡îØF²ÿbÊ™HŽ€€gva; }; }; event { name = kvm_async_pf_not_present; id = 28; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } token; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; }; }; event { name = kvm_async_pf_doublefault; id = 27; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_try_async_get_page; id = 26; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; }; }; event { name = kvm_age_page; id = 25; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } hva; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gfn; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } referenced; }; }; event { name = kvm_fpu; id = 24; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } load; }; }; event { name = kvm_mmio; id = 23; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } type; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } len; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } gpa; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } val; }; }; event { name = kvm_ack_irq; id = 22; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } irqchip; integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } pin; }; }; event { name = kvm_msi_set_irq; id = 21; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } address; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } data; }; }; event { name = kvm_ioapic_set_irq; id = 20; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } e; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } pin; integer { size = 8; align = 8; signed = 0; encoding = none; base = 10; } coalesced; }; }; event { name = kvm_set_irq; id = 19; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } gsi; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } level; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } irq_source_id; }; }; event { name = kvm_userspace_exit; id = 18; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 0; encoding = none; base = 10; } reason; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } errno; }; }; event { name = sched_pi_setprio; id = 17; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } oldprio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } newprio; }; }; event { name = sched_stat_runtime; id = 16; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } runtime; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } vruntime; }; }; event { name = sched_stat_iowait; id = 15; stream_id = 0; fields := struct { integWÑuõ©‹à‡îØF²ÿbÊ™HŽ€€er { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_sleep; id = 14; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_stat_wait; id = 13; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } delay; }; }; event { name = sched_process_fork; id = 12; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } parent_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } parent_tid; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } child_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } child_tid; }; }; event { name = sched_process_wait; id = 11; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_wait_task; id = 10; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_exit; id = 9; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_process_free; id = 8; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; }; }; event { name = sched_migrate_task; id = 7; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } orig_cpu; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } dest_cpu; }; }; event { name = sched_switch; id = 6; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } prev_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prev_prio; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } prev_state; integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } next_comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } next_tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } next_prio; }; }; event { name = sched_wakeup_new; id = 5; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = WÑuõ©‹à‡îØF²ÿbÊ™HŽ 9€UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_wakeup; id = 4; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } prio; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } success; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } target_cpu; }; }; event { name = sched_kthread_stop_ret; id = 3; stream_id = 0; fields := struct { integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sched_kthread_stop; id = 2; stream_id = 0; fields := struct { integer { size = 8; align = 8; signed = 1; encoding = UTF8; base = 10; } comm[16]; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } tid; }; }; event { name = sys_exit; id = 1; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } ret; }; }; event { name = sys_enter; id = 0; stream_id = 0; fields := struct { integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } id; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } args[6]; }; }; WÑuõ©‹à‡îØF²ÿbÊ™HŽ(€babeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_50000755000175000017500000043000011616325072020151 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽdNÈ70ýuzÈ7°€ÿÿJc¯yÈ7×l¯y.`-:Ÿ[‚¯yltt-kconsumerd2ˆ¯y.ª“¯y.0-:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ饯y.ư¯y.:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ嵯y.0¿¯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ‹Ê¯y.LЯy.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ9Ú¯y.î߯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ9õ¯y.3û¯y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ8°y. °y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:Ÿ›°y.°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸË#°y.‰)°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸÍ0°y.6°y.Ð:Ÿðÿÿÿÿÿÿÿ€„¥:ŸÝC°y.ïF°yCö€„¥:ŸN°yltt-sessiond2%è nõEMå\°yltt-sessiond2kworker/0:1#·CØy#yEØy #HØy!¾KØy"ÐQØy!ÉRØy"T[Øy!/\Øy "HaØy #Ý z#8" z !¡( z" - z!. z "-3 z #ùõ=z#Çþ=z!>z"Æ>z!¼>z">z#ÚÑpz#ÞÓpz !ÂÞpz"ýâpz!óãpz ´épzltt-sessiond2x"6ïpz ûópzkworker/0:1ltt-sessiond2 úpz[ýpz. P>:Ÿ €„¥:ŸŸqz.R qz  €„¥:Ÿ%qz[ qz°>:Ÿÿÿÿÿÿÿÿÿ€„¥:Ÿµ&qzltt-sessiond2§=3FMÜ2qzltt-sessiond2kworker/0:1 szbash1x5"szkworker/0:1bash1,Fsz=2ZszÐC-ÿPC-ÿ]sz¢`szÿT¿Ï€#žz#‚žz°žË=¿ÿÿÿÿÿÿÿÿ€¥‡žzEŠžz/PžË=¿€M‘žz/™“žz°žË=¿ÿÿÿÿÿÿÿÿ€ù–žz™žz/žË=¿€×¢žz/0¹žzƒ@AÿÍ€ûížzúñžzÊàCf>¿Í€ïùžzÊÿûžz !f>¿Í€®Ÿz Ÿz°žË=¿ÿÿÿÿÿÿÿÿ€eŸzo Ÿz/žË=¿€sŸz/¡ Ÿz˜b@AÿÍ€¿MŸz¼PŸzÊàCf>¿Í€pWŸzÊqYŸz !f>¿Í€-^Ÿz[`Ÿz°žË=¿ÿÿÿÿÿÿÿÿ€¥dŸzâfŸz/žË=¿€qŸz/ÌsŸzÊàCf>¿€àCf>¿2vŸzÊõÿÿÿÿÿÿÿ²ŠŸzxÔ@AÿÍ€J¹Ÿzw¼ŸzÊàCf>¿Í€ßzÊ>ÅŸz !f>¿Í€ÊŸzsÌŸz°žË=¿ÿÿÿÿÿÿÿÿ€ÞПzÁüÁõ©‹à‡îØF²ÿbÊ™HŽQÓŸzÈ7w½ |È7è~€QÓŸz/žË=¿€4àŸz/ôŸzˆ“@AÿÍ€Ì  zü# zÊàCf>¿Í€ž* zÊŸ, z !f>¿Í€¦1 zì3 z°žË=¿ÿÿÿÿÿÿÿÿ€]8 z…: z/žË=¿€ŸD z/]_ z¤@AÿÍ€A zk“ zÊàCf>¿Í€û™ zÊœ z !f>¿Í€ý  z(£ z°žË=¿ÿÿÿÿÿÿÿÿ€l§ zj© z/žË=¿€ · z/qÀ zH´@AÿÍ€Šì z¨ï zÊàCf>¿Í€ ö zÊ ø z !f>¿Í€øü z&ÿ z°žË=¿ÿÿÿÿÿÿÿÿ€a¡z\¡z/žË=¿€©¡z/Q$¡zˆfAAÿÍ€~Q¡z ¢T¡zÊàCf>¿Í€[¡zÊ]¡z !f>¿Í€ïa¡z#d¡z°žË=¿ÿÿÿÿÿÿÿÿ€mh¡zqj¡z/žË=¿€t¡z/r‡¡z¸ä@AÿÍ€·¡z"´º¡zÊàCf>¿Í€,Á¡zÊ3áz !f>¿Í€@È¡z§Ê¡z°žË=¿ÿÿÿÿÿÿÿÿ€óÏ¡zltt-kconsumerd2¶—(;M%Ú¡zltt-kconsumerd2kworker/0:1#⯣z#M¸£z #T½£z!óÀ£z"Ç£z! È£z"Ô£z!ôÔ£z " Ù£z #/ŒÖz!Ø”Öz",›Öz#½i {#Ds {!Wu {"9{ {!P| {"ކ {#Ö{!b{&w%{€ºüw(Õ-{ltt-kconsumerd2p2{ltt-kconsumerd2xG{kworker/5:0/&x"íQ{ÁV{kworker/0:1kworker/5:0/&2^{kworker/5:0/&Ç3 þL2a{kworker/5:0/&ltt-kconsumerd2¨œ{u¥{-5¸{€0 ltt-kconsumerdòÇ{ltt-kconsumerd2ºi³]¯M²Ñ{ltt-kconsumerd2kworker/0:1ïw"{ahci "‡"{êˆ"{uhci_hcd:usb3 ¯"{†"{eth1 ?”"{#ÉN<{#µP<{ !IV<{"Ê\<{!Ø]<{ "€a<{ #¶!o{#)o{ #˜-o{!“/o{"S9o{!X:o{"öDo{!éEo{ "¹Ho{ #+ ¢{!P¢{"c¢{#ÛÔ{#ÔàÔ{ #ËæÔ{!ÌèÔ{"úíÔ{!äîÔ{"ZúÔ{!5ûÔ{ ^Õ{lttng2"9 Õ{ #ˆÁ|#£Ä| !qÉ|"®Î|!•Ï| "#Ò| IX |ltt-kconsumerd2xq] |kworker/0:1ltt-kconsumerd2c |ltt-kconsumerd2è ›i¯Mák |md1_raid1¥n |ltt-kconsumerd2y u¯MÝr |ltt-kconsumerd2md1_raid1Ý~ |md1_raid1l¯£MÒ€ |ltt-kconsumerd2xCŽ |md1_raid1\ ´Mã |md1_raid1ltt-kconsumerd2Ÿ |md1_raid1¯ |Å´ |öT¹ |ÁüÁõ©‹à‡îØF²ÿbÊ™H޼ |È7%ô#|È7À€¼ |öÆ |ÜÇ |ö€@ŽK=¿DÉ |6Ë |HŽK=¿Ô |òÕ |² |ˆ |-y |@€0 ltt-kconsumerdí% |K( |ö‘* |›, |ö™B |dD |ö€@ŽK=¿±E |‚G |HŽK=¿úM |ÔO |s} | € |-Z‡ |€€0 ltt-kconsumerd±– |©˜ |ö¶š |w |°Ä@ ÿÿÿÿÿÿÿÿú­ |©° |öq² |0´ |ö€@ŽK=¿€µ |Q· |HŽK=¿®½ |‚¿ |žú |,ý |-H|€0 ltt-kconsumerde|`|¬|ltt-kconsumerd2Ž-±M&|ltt-kconsumerd2kworker/0:1#µ„|!†|&ö‹|€º|x*"E |#9¬|!†­|&ú±|€º|x*a½|ltt-kconsumerd2x">Ñ|ÍÕ|kworker/0:1ltt-kconsumerd2 ß|Îæ|Ý™ý|Ýšÿ|öõ||ö  |e |ö€@ŽK=¿²|ƒ|HŽK=¿| |C|–E|-ŽM|H€0 ltt-kconsumerd–]|ˆ_|#d|ltt-kconsumerd2^§‹ª±Mül|ltt-kconsumerd2kworker/0:1#NH|! J|&†O|€ú|x*"»_|#œo|!q|&Át|€ú|x*ú}|ltt-kconsumerd2x"¥|+’|kworker/0:1ltt-kconsumerd2š||Ý»©|Ý«|ö&®|B°|ösÄ|’Æ|ö€@ŽK=¿-È| Ê|HŽK=¿Ñ|FÓ|lþ||-¼|ˆ€0 ltt-kconsumerdi|¸|Ã|ltt-kconsumerd2Z¢åL²M6(|ltt-kconsumerd2kworker/0:1#CÇ#|!üÈ#|& Í#|€:}x*åÜ#|ahci#åè#| ¹ê#|<ì#|uhci_hcd:usb3 àð#|ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÆò#|È7l37|È7ø€Æò#|eth1 ãù#|"Ø$|!þ$|&ª$|€:}x*ƒ$|ltt-kconsumerd2x"ã$|‡"$|kworker/0:1ltt-kconsumerd2©*$|û,$|ÝZ7$|ÝO9$|ö¡;$|J>$|°Ä@ ÿÿÿÿÿÿÿÿXK$|ÝM$|ö™O$|RQ$|ö€@ŽK=¿œR$||T$|HŽK=¿ó[$|â]$|É…$|rˆ$| -‘$|€0 ltt-kconsumerd $| ¢$|ñ¥$|ltt-kconsumerd2˜ìä²MÖ®$|ltt-kconsumerd2kworker/0:1#Ö)|!Ø)|&ÎÜ)|€Â|x*"ôì)|¹*|md1_raid1x÷¾*|kworker/0:1md1_raid13±Å*|€ }x€P€0 -HÈ*|€ }xmd1_raid1.+Ð*|€ }xmd1_raid10ôÓ*|md1_raid13Ö*|€ }x€P€0 -)Ø*|€ }xmd1_raid1.ýÜ*|€ }xmd1_raid1'+â*|€ }xmd1_raid11Âç*|md1_raid1(úë*|€ }xmd1_raid1'Óú*|€ }xmd1_raid11Nþ*|md1_raid1(@+|€ }xmd1_raid1t +|md1_raid1òR_$Mì+|md1_raid1kworker/0:1#Ñ%0|!o'0|&ó*0|€}x*"-90|#‚M0|!ÃN0|&!Q0|€}x*I\0|ltt-kconsumerd26`0|ltt-kconsumerd2x"¼m0|ýq0|kworker/0:1ltt-kconsumerd2ƒ|0|Õ~0|ÝŠ0|Ý"Œ0|öÝŽ0| ‘0|öæ£0|·¥0|ö€@ŽK=¿ §0| ©0|HŽK=¿f±0|L³0|¯Ý0|sà0| -.é0|€0 ltt-kconsumerd­ô0|md1_raid13ü0|7þ0|1|ltt-kconsumerd2u¢ª.´M¦ 1|ltt-kconsumerd2kworker/0:1#¸Q6|!’S6|&6X6|€B}x*"@i6|#›Œ6|!Ž6|&Ì‘6|€B}x*›6|ltt-kconsumerd2x")ª6|®6|kworker/0:1ltt-kconsumerd2¶6|ö¸6|ÝÂ6|ݽÄ6|ö<Ç6|Ê6|°Ä@ ÿÿÿÿÿÿÿÿb×6|Ú6|öÜ6|ûÝ6|ö€@ŽK=¿Zß6|Cá6|HŽK=¿ é6|3ë6|A7|Ø7|0-ñ7|€0 ltt-kconsumerdŒ+7|«-7| ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ%27|È7¹LP|È7~€%27|ltt-kconsumerd22—ÜÅ´MÆ<7|ltt-kconsumerd2kworker/0:1#ž:|#Ì¢:|!¼¦:|"™®:|!ȯ:|"\»:|#ó$<|!=&<|&{*<|€Ê|x*"4;<|»ª<|ahci#²µ<| n·<|î¸<|uhci_hcd:usb3 }½<|ô¾<|eth1 žÃ<|!üÅ<|&uÈ<|€Ê|x*_Ò<|ltt-kconsumerd2x"éá<|læ<|kworker/0:1ltt-kconsumerd2ï<|‘ñ<|Ý ôú<|Ýæü<|ö&ÿ<|W=|öz=|9 =|ö€@ŽK=¿ =|~ =|HŽK=¿Ë=|¥=|g<=|û>=|0-+H=|X€0 ltt-kconsumerdÃX=|âZ=| «^=|ltt-kconsumerd2ÜŒ¸RµM6g=|ltt-kconsumerd2kworker/0:1#>tB|!EvB|&ËzB|€ }x*"b‰B|Ô½C|md1_raid1x5ÃC|kworker/0:1md1_raid13ŒÉC|€R}x€˜€0 -MÌC|€R}xmd1_raid1.kÒC|€R}xmd1_raid10%ÖC|md1_raid13#ØC|€R}x€˜€0 -?ÚC|€R}xmd1_raid1..ßC|€R}xmd1_raid1'ÀãC|€R}xmd1_raid11ÁèC|md1_raid1(–ìC|€R}xmd1_raid1'ŒùC|€R}xmd1_raid11gýC|md1_raid1(8ÿC|€R}xmd1_raid1y D|md1_raid1¤L±ÇMD|md1_raid1kworker/0:1#XÇH|!óÈH|&hÌH|€J}x*"cÚH|#çZI|!j\I|&X_I|€J}x*ÛiI|ltt-kconsumerd2ÈmI|ltt-kconsumerd2x"ð{I|£€I|kworker/0:1ltt-kconsumerd2’‹I|>ŽI|Ý ©˜I|ÝìšI|öÔI|Å I|°Ä@ ÿÿÿÿÿÿÿÿì¯I|’²I|öW´I|(¶I|ö€@ŽK=¿{·I|a¹I|HŽK=¿qÁI|fÃI|vìI| ïI|@-†÷I| €0 ltt-kconsumerd/J|md1_raid1» J|¹ J|0ÐJ|ltt-kconsumerd2}£5öµMJ|ltt-kconsumerd2kworker/0:1#O O|!bO|&¬O|€Ò|x*"o#O|#*îO|!€ïO|&4óO|€Ò|x*üO|ltt-kconsumerd2x"Î P|P|kworker/0:1ltt-kconsumerd2øP|’P|Ý0Œ"P|ÝÆ$P|ö3'P|ˆ)P|ö½P|ö€@ŽK=¿Õ?P|»AP|HŽK=¿IP|ÁüÁõ©‹à‡îØF²ÿbÊ™HŽoKP|È7þ¤}È7x~€oKP|sP|´uP|@-d}P| €0 ltt-kconsumerdYŽP|KP|0”P|ltt-kconsumerd2 ˜Õ޶M œP|ltt-kconsumerd2kworker/0:1#Ô4U|!¢6U|&";U|€}x*"{KU|:ÓU|ahci##ÞU| ßßU|táU|uhci_hcd:usb3 îåU|JçU|eth1 ìU|!RîU|& ñU|€}x*".V|#–ôY|!éõY|&øY|€R}x*"ÎZ|Ve[|md1_raid1xçj[|kworker/0:1md1_raid13q[|€â|x€(€0 -os[|€â|xmd1_raid1.±y[|€â|xmd1_raid108}[|md1_raid13[|€â|x€(€0 -[|€â|xmd1_raid1.í…[|€â|xmd1_raid1'yŠ[|€â|xmd1_raid11G[|md1_raid1(ø’[|€â|xmd1_raid1'f [|€â|xmd1_raid11ð£[|md1_raid1(»¥[|€â|xmd1_raid1M°[|md1_raid1ÌK³íMZ¸[|md1_raid1kworker/0:1#,þ^|!_|&ù_|€Ú|x*"_|#Fë_|!rì_|&ï_|€Ú|x*•ù_|ltt-kconsumerd2Cý_|ltt-kconsumerd2x"º `|§`|kworker/0:1ltt-kconsumerd2ô`|—`|Ý@>&`|ÝN(`|ö”*`|Â,`|öo4`|C6`|ö€@ŽK=¿œ7`|Ç9`|HŽK=¿ B`|öC`|fm`|p`|@-Çx`|`€0 ltt-kconsumerd¾„`|md1_raid1kŒ`|ÆŽ`|0ø’`|ä”`|Ý03`|Ý=Ÿ`|öÑ¡`|­¤`|°Ä@ ÿÿÿÿÿÿÿÿ±²`|ltt-kconsumerd2×µ¬D·Mu»`|ltt-kconsumerd2kworker/0:1#4*e|!ù+e|&ˆ0e|€Z}x*"Ì@e|#Pf|!¬f|&if|€Z}x*"«/f|#sÙi|!ÛÚi|&–Ýi|€â|x*"Yçi| ƒj|ahci#cŽj| þj|o‘j|uhci_hcd:usb3 –j|W—j|eth1 œj|!Pžj|& j|€â|x*"!¯j|#LXm|!·Ym|&_]m|€}x*Fjm|kworker/5:0/&x#³rm|#ÿzm| "„†m|!ª‡m|"wm|!”Žm| ")“m| ˜m|kworker/0:1kworker/5:0/& Ÿm|kworker/5:0/&Ó JMlªm|kworker/5:0/&kworker/0:1#“O |#‘U | # X |!}Z |" a |!Ÿb |"£m |!Šn | "œq | #Ä3Ó|!y9Ó|"T=Ó|#±}#­}!«}"q}!}",%}#jå8}! ñ8}"ñõ8}#ªÁk}#€Èk} #vÌk}!JÎk}"îÒk}!äÓk}"XÞk}!?ßk} "xåk} #Æžž}!‚¬ž}"±°ž}#5Ĥ}!¾Å¤}&E̤}€z}x* à¤}kworker/5:0/&x"âé¤}>î¤}kworker/0:1kworker/5:0/&Âô¤}kworker/5:0/&¨'`MÁüÁõ©‹à‡îØF²ÿbÊ™HŽŸü¤}È7w¯7È7°€Ÿü¤}kworker/5:0/&kworker/0:1#¼;©}!c=©}&B©}€z}x*M_©}kworker/5:0/&x"h©}7l©}kworker/0:1kworker/5:0/&r©}kworker/5:0/&†­sM…x©}kworker/5:0/&kworker/0:1#A}Ñ}#ÿ…Ñ}!ÛˆÑ}»Ñ}ltt-kconsumerd2ЖÑ}ltt-kconsumerd2x"ežÑ}!‚ŸÑ}"y¨Ñ}0¬Ñ}kworker/0:1ltt-kconsumerd2ÓÕÑ}õÚÑ}ö+ÞÑ}àÑ}ö€@ŽK=¿sáÑ}tãÑ}HŽK=¿tïÑ}KñÑ}¿%Ò}b(Ò}`-Þ0Ò}0€0 ltt-kconsumerdCÒ}?EÒ}P.JÒ} LÒ}ÝPÔUÒ}ݱWÒ}öÓYÒ}]Ò}°Ä@ ÿÿÿÿÿÿÿÿxiÒ}ôkÒ}öŸxÒ}azÒ}ö€@ŽK=¿Ø{Ò}¾}Ò}HŽK=¿ê„Ò}džÒ}p¬Ò}"¯Ò}P-W¶Ò}h€0 ltt-kconsumerd«ÅÒ}*ÈÒ}@ÅÌÒ}“ÎÒ}Ý@ØÒ}ÝÚÒ}ö”ÜÒ}+ßÒ}°Ä@ ÿÿÿÿÿÿÿÿëÒ}ltt-kconsumerd2‹U7š¸MFôÒ}ltt-kconsumerd2kworker/0:1#é×}!ûê×}&Pð×}€ê|x*" Ø}#>Ø}!©Ø}&œØ}€ê|x*"C'Ø}#×(Ü}!*Ü}&K-Ü}€"}x*!9Ü}kworker/5:0/&xà@Ü}ahci#LÜ} ñMÜ}zOÜ}uhci_hcd:usb3 !TÜ}†UÜ}eth1 EZÜ}"€aÜ}!¦bÜ}&ødÜ}€"}x*"kyÜ}²}Ü}kworker/0:1kworker/5:0/&ÿ„Ü}kworker/5:0/&’LÉËMƇÜ}kworker/5:1b(x¿ŽÜ}kworker/5:0/&À ‰ÕM;‘Ü}kworker/5:0/&kworker/5:1b(`–Ü}kworker/5:1b(V†M[žÜ}kworker/5:1b(kworker/0:1#>b~!ºg~"l~#d57~#y>7~!A7~"ÒH7~!ãI7~"oT7~#fj~!ˆj~"™#j~#Mïœ~#éùœ~!äûœ~"Èÿœ~!¾~"¡ ~#ÌÏ~!nÖÏ~"»ÚÏ~#ú¨#˜³!êµ""º!$»"ðÄ#à…5!{5"b”5#óbh#Ùkh!Ñmh"úqh!ürh"é|h# ?›!ãH›"“M›#/Î#J&Î!Q(Î"z,Î!µ-Î")8Î#0ù€!€" €#?Ý3€#eá3€!Ïã3€"¤ç3€!—è3€"Pó3€#²f€!~½f€"Áf€#ñŽ™€#˜™€! š™€"ž™€! Ÿ™€"©™€#érÌ€!‡wÌ€çzÌ€kworker/5:1b(x"tÌ€{†Ì€kworker/0:1kworker/5:1b(•Ì€kworker/5:1b(µB¡M´žÌ€kworker/5:1b(kworker/0:1#uOÿ€#íRÿ€!±Uÿ€"­Yÿ€!¦Zÿ€"þbÿ€#ê&2!Ù22"ð62#c‡7!ãˆ7&•Ž7€º}x*¤ 7kworker/5:1b(x"k©7ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ ®7È7&ya„È7 € ®7kworker/0:1kworker/5:1b(ç¶7kworker/5:1b(‹͸MÚ½7kworker/5:1b(kworker/0:1#ã e#î e!ae8eltt-kconsumerd24eltt-kconsumerd2x"Å$e!î%e"ç/e4ekworker/0:1ltt-kconsumerd2ª_eeeönheTjeö€@ŽK=¿¹keœmeHŽK=¿Vze3|eÕ¯e~²ep- »e8€0 ltt-kconsumerd÷ÌeFÏe`¥Óe‚ÕeÝ`?ßeÝ(áeö>ãeVæe°Ä@ ÿÿÿÿÿÿÿÿyóeltt-kconsumerd2mפq¹Mýeltt-kconsumerd2kworker/0:1# j!n!j#Å'j&“,j€ò|x*Á–‚!Ù@–‚"ùD–‚!þE–‚"–P–‚#à ɂ!<É‚"ûÉ‚#ñéû‚#îóû‚!%öû‚"ýùû‚!íúû‚"Úü‚#ÅÅ.ƒ!hÏ.ƒ"ÃÔ.ƒúZ/ƒmd1_raid1x»_/ƒkworker/0:1md1_raid13™f/ƒ€*}x€p€0 -'i/ƒ€*}xmd1_raid1.†p/ƒ€*}xmd1_raid10=t/ƒmd1_raid13wv/ƒ€*}x€p€0 -x/ƒ€*}xmd1_raid1.n|/ƒ€*}xmd1_raid1'`/ƒ€*}xmd1_raid11o‡/ƒmd1_raid1(H/ƒ€*}xmd1_raid1';/ƒ€*}xmd1_raid11:¡/ƒmd1_raid1(C¤/ƒ€*}xmd1_raid1¢±/ƒmd1_raid1iW¼ý Mè¹/ƒmd1_raid1kworker/0:1#&ä3ƒ!ëå3ƒ&ê3ƒ€*}x*)ù3ƒkworker/5:0/&x"–4ƒÚ4ƒkworker/0:1kworker/5:0/&#O 4ƒ!® 4ƒ&S4ƒ€*}x*8#4ƒkworker/5:0/&Ò*£‡M'%4ƒkworker/5:1b(x"1-4ƒ 34ƒkworker/5:0/& ®—M†54ƒkworker/5:0/&kworker/5:1b(94ƒkworker/5:1b(~í—MZ@4ƒkworker/5:1b(kworker/0:1#Ù¤aƒ#–®aƒ!Û±aƒ"H·aƒ!M¸aƒ"TÀaƒ#ž”ƒ!ˆŽ”ƒ"í•”ƒ#ø\ǃ#Æhǃ!ßjǃ" oǃ! pǃ" xǃ#Ó9úƒ!ÖEúƒ"ÌIúƒ#“-„#t"-„!$-„"à(-„!â)-„"þ1-„#ó_„!vû_„"Wÿ_„CVa„md1_raid1xk[a„kworker/0:1md1_raid13Zca„€ú}x€@0 -Çea„€ú}xmd1_raid1.¯ka„€ú}xmd1_raid10oa„md1_raid134qa„€ú}x€@0 -sa„€ú}xmd1_raid1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄwa„È7žG†È7˜€.Äwa„€ú}xmd1_raid1'þ~a„€ú}xmd1_raid11>„a„md1_raid1(»ˆa„€ú}xmd1_raid1'—a„€ú}xmd1_raid11›a„md1_raid1(‘a„€ú}xmd1_raid1>«a„md1_raid1ßV›T M·a„md1_raid1kworker/0:1#?f„! f„& f„€ú}x*’f„kworker/5:1b(x"ð$f„4)f„kworker/0:1kworker/5:1b(#5.f„!©/f„&ë2f„€ú}x*"¸Jf„Pf„kworker/5:1b(24ÌMíQf„kworker/5:0/&xXf„kworker/5:1b(@_ÔMÒZf„kworker/5:1b(kworker/5:0/&°^f„kworker/5:0/&«YžM1ef„kworker/5:0/&kworker/0:1#Ñ’„#ߨ’„!ÍÛ’„gá’„ltt-kconsumerd2åä’„ltt-kconsumerd2x"­ì’„!èí’„""ö’„ú’„kworker/0:1ltt-kconsumerd2k“„Ä“„ö0'“„)“„ö€@ŽK=¿Ÿ*“„”,“„HŽK=¿I8“„G:“„ °u“„qx“„ -ð€“„€0 ltt-kconsumerdI‹“„md1_raid1§““„Û•“„öo˜“„£š“„ö}œ“„Bž“„ö€@ŽK=¿›Ÿ“„{¡“„HŽK=¿s©“„S«“„†Õ“„Ø“„€-©ß“„À0 ltt-kconsumerd5ó“„<õ“„pyú“„Sü“„Ýp”„Ýü”„ö' ”„Z ”„°Ä@ ÿÿÿÿÿÿÿÿ°”„ltt-kconsumerd2ë4¦ºMY#”„ltt-kconsumerd2kworker/0:1æb™„ahci#“m™„ [o™„Ãp™„uhci_hcd:usb3 @u™„¥v™„eth1 L{™„!~™„&[™„€:~x*"é’™„#c™„!²ž™„&\£™„€:~x*"-´™„#5ö„!v÷„&šú„€z~x*õ ž„kworker/5:0/&x"¶ž„lž„kworker/0:1kworker/5:0/&Ÿž„kworker/5:0/&²A M%'ž„kworker/5:0/&kworker/0:1#Ú´Å„!ֻń"ªÀÅ„#@Šø„!õ•ø„"ï›ø„#Sn+…#Yq+…!6s+…"Ûv+…!Èw+…";ƒ+…#qI^…!ÑO^…"ŽS^…#«&‘…#B)‘…!I+‘…"r/‘…!w0‘…"$;‘…#'ýÃ…!ç Ä…"ÎÄ…#Úö…#èãö…!Ôåö…"aéö…!fêö…"‡öö…#O­†!¯†&¾³†€ú~x*"Ɔ#‘Ô†!çÕ†&LÚ†€ú~x*"-ó†#qí†!úî†&!ò†€:x*"þ†#¢†!ø†&݆€:x*"Í)†žá†ahci#2í† îî†wð†uhci_hcd:usb3 îô†8ö†eth1 âú†!ý†&ùþ†€2}x*ç †kworker/5:0/&x#“†"_†!š†&i†€2}x*"§8†!=†kworker/0:1kworker/5:0/&ØC†kworker/5:0/&k7¬×MÁüÁõ©‹à‡îØF²ÿbÊ™HŽF†È7S2^ŠÈ7ð€F†kworker/5:1b(xEO†kworker/5:0/&v "ãMÓQ†kworker/5:0/&kworker/5:1b(¨U†kworker/5:1b(x’Mm]†kworker/5:1b(kworker/0:1#˼)†!Ã)†¨Ê)†ltt-kconsumerd2àÎ)†ltt-kconsumerd2x"]Ö)†®Ù)†kworker/0:1ltt-kconsumerd2£*†§*†ö *†“ *†ö€@ŽK=¿õ *†ä*†HŽK=¿\*†H*†àR*†}U*†-Þ]*†È0 ltt-kconsumerd9o*†aq*†€ùu*† x*†Ý€·*†Ý¾ƒ*†öÑ…*†éˆ*†°Ä@ ÿÿÿÿÿÿÿÿµ•*†ltt-kconsumerd2>ÇÍm»M*¡*†ltt-kconsumerd2kworker/0:1#¢÷.†!jù.†&þ.†€‚~x*A/†kworker/5:1b(x"v/†"/†kworker/0:1kworker/5:1b((/†kworker/5:1b(½ŠhM//†kworker/5:1b(kworker/0:1#g•\†#1ž\†! ¡\†"¥\†!¡¦\†"+³\†#¬p†!Q{†"¢†#ÙL†#ˆU†!wW†"[†!\†"^g†#•2õ†!Ï7õ†"à;õ†#(‡# (‡!‘(‡"(‡!(‡" #(‡#ïãZ‡!CîZ‡"ròZ‡#9À‡#¸Ë‡!³Í‡"dч!WÒ‡"ˆÝ‡#ûœÀ‡!ô©À‡"´­À‡#Ûyó‡#Y„ó‡!-†ó‡")Šó‡!4‹ó‡"ô”ó‡#W&ˆ!.`&ˆ"Wd&ˆ#:4Yˆ#=Yˆ!ô>Yˆ"öBYˆ!æCYˆ"WNYˆ#WŒˆ!hŒˆ"v"Œˆ#½í¾ˆ#hø¾ˆ!Tú¾ˆ"hþ¾ˆ!Uÿ¾ˆ" ¿ˆ#…Êñˆ![Öñˆ"Úñˆ#:¨$‰#‰³$‰!ðµ$‰"ȹ$‰!»º$‰"ˆÃ$‰#¨‹W‰!ãW‰"‚“W‰#ghЉ#älЉ!ÓnЉ"sЉ!õsЉ"^}Љ#K“‰!¼”‰& š‰€‚}x*^­‰kworker/5:1b(x"ô¶‰#載!‰¾‰&ñ‰€‚}x*"|à‰™ä‰kworker/0:1kworker/5:1b(êê‰kworker/5:1b(Ó>]§Mëì‰kworker/5:0/&xîò‰kworker/5:1b(I¦¯MCõ‰kworker/5:1b(kworker/5:0/&ù‰kworker/5:0/&ëXMÎÿ‰kworker/5:0/&kworker/0:1#(?½‰!îI½‰"pO½‰#ð‰!è$ð‰"S,ð‰#Lþ"Š##Š!#Š"Ø#Š!Å #Š"¦#Š#ÔUŠ!†àUŠ"=äUŠȬVŠmd1_raid1xf±VŠkworker/0:1md1_raid13¸VŠ€zx€À‚0 -“ºVŠ€zxmd1_raid1.ÁVŠ€zxmd1_raid10ßÄVŠmd1_raid13 ÇVŠ€zx€À‚0 -)ÉVŠ€zxmd1_raid1.ªÌVŠ€zxmd1_raid1'0ÑVŠ€zxmd1_raid11 ×VŠmd1_raid1(dÜVŠ€zxmd1_raid1'ÇëVŠ€zxmd1_raid11ÞïVŠmd1_raid1(~òVŠ€zxmd1_raid1ýWŠmd1_raid1U_ÂMp WŠmd1_raid1kworker/0:1#Û[Š!m[Š&T![Š€zx* 0[Škworker/5:0/&x"X8[Ѝ<[Škworker/0:1kworker/5:0/&$B[Škworker/5:0/&lMùH[Škworker/5:0/&kworker/0:1#/^ŠÁüÁõ©‹à‡îØF²ÿbÊ™HŽè0^ŠÈ7:ÖQÈ7`€!è0^Š&7^Š€zx*—J^Škworker/5:0/&x"€R^ŠV^Škworker/0:1kworker/5:0/& \^Škworker/5:0/&Z\~MÙb^Škworker/5:0/&kworker/0:1#¶²ˆŠ#ºˆŠ!¿ˆŠ·ÃˆŠltt-kconsumerd2MLjŠltt-kconsumerd2x" ÎˆŠ!ÀψŠ"¤ÙˆŠs݈Škworker/0:1ltt-kconsumerd2[õˆŠWùˆŠöiüˆŠFþˆŠö€@ŽK=¿«ÿˆŠš‰ŠHŽK=¿à ‰ŠÌ ‰ŠX4‰Š 7‰Š -ž?‰ŠÐ0 ltt-kconsumerd4I‰Šmd1_raid1tQ‰Š~S‰ŠéW‰ŠêY‰ŠÝ«b‰ŠÝ d‰Šö¼f‰Š¤i‰Š°Ä@ ÿÿÿÿÿÿÿÿÂu‰Šltt-kconsumerd2º®‡¼MP~‰Šltt-kconsumerd2kworker/0:1d™Šahci#M¤Š ̬Š@®Šuhci_hcd:usb3 Õ²Š1´Šeth1 ︊!¼»Š&¬¿Š€Š~x*ÞÏŠkworker/5:0/&x&äÛŠ€Š~x*"œðŠ4õŠkworker/0:1kworker/5:0/&XûŠkworker/5:0/&^,å-MeýŠkworker/5:1b(x›ŽŠkworker/5:0/&sX6MŽŠkworker/5:0/&kworker/5:1b(Â ŽŠkworker/5:1b('®M‹ŽŠkworker/5:1b(kworker/0:1#p˜»Š!‚ž»Š"_£»Š#ÙjîŠ#BtîŠ!—vîŠ"ó}îŠ!îŠ"4ˆîŠ#íH!‹!òS!‹"!X!‹#,$T‹#j/T‹!t1T‹"@5T‹!36T‹"?T‹#°dY‹!„¯@„Ý fJ„ÝFL„öPN„Q„°Ä@ ÿÿÿÿÿÿÿÿ€]„ltt-kconsumerd2£¤*Á¼M¿i„ltt-kconsumerd2kworker/0:1#® ˆ!”¢ˆ&Y§ˆ€’~x*kworker/5:0/&x+¿ˆahci#þʈ Ï̈^Έuhci_hcd:usb3 êÒˆ4Ôˆeth1 íØˆ"$áˆ!Gâˆ&›åˆ€’~x*"ãúˆBÿˆkworker/0:1kworker/5:0/&™‰kworker/5:0/&tOžõM¾‰kworker/5:1b(xQ‰kworker/5:0/&ÜzþMމkworker/5:0/&kworker/5:1b(l‰kworker/5:1b(-W¬M¿‰kworker/5:1b(kworker/0:1#€¶# ж!¶"7’¶!N“¶"Ÿœ¶#s[é!sgé"né#g?Ž#ÉCŽ!¾EŽ"çIŽ!éJŽ"FTŽ#óOŽ!R OŽ"Š$OŽ#êñŽ#ûŽ!‚ýŽ"N‚Ž!P‚Ž"† ‚Ž#GдŽ!,Ù´Ž"ÅÜ´Ž#ÿªçŽ#гçŽ!|µçŽ"ð¹çŽ!àºçŽ"4ÄçŽ#å‡!¹“"—#YeM#¾oM!ßrM" wM! xM"}€M#êA€!5L€"šP€#è³#+³!>-³"ì0³!Ö1³"…:³#dûå!Oæ"; æ#Ø#Já!0ã";ç!+è"˜ð#ë´K!¦ÀK"ÉÄK#C’~!¹›~"< ~#ôn±#Lw±!}y±"F}±!6~±"놱#”Kä!ßUä"\Zä#©”é!M–é&Gœé€~x*€®ékworker/5:1b(x"à·é3¼ékworker/0:1kworker/5:1b(Âékworker/5:1b(‡ÞÁMbÉékworker/5:1b(kworker/0:1#)‘#`1‘!*4‘"s9‘!u:‘"EC‘#ÑJ‘!<J‘"ŸJ‘«µJ‘md1_raid1x@ºJ‘kworker/0:1md1_raid13©ÀJ‘€Šx€Ð‚0 -(ÃJ‘€Šxmd1_raid1.åÉJ‘€Šxmd1_raid10HÍJ‘md1_raid13:ÏJ‘€Šx€Ð‚0 -DÑJ‘€Šxmd1_raid1.³ÔJ‘€Šxmd1_raid1'ÙJ‘€Šxmd1_raid11©ÞJ‘md1_raid1(ÔãJ‘€Šxmd1_raid1'7ðJ‘€Šxmd1_raid119ôJ‘md1_raid1(6÷J‘€Šxmd1_raid16K‘md1_raid16NOMÁüÁõ©‹à‡îØF²ÿbÊ™HŽ‘ K‘È7!Àª”È7ð€‘ K‘md1_raid1kworker/0:1#û!O‘!´#O‘&‰'O‘€Šx*Ì5O‘kworker/5:1b(x"9>O‘zBO‘kworker/0:1kworker/5:1b(5HO‘kworker/5:1b(V4ÕMªNO‘kworker/5:1b(kworker/0:1#›TO‘!VO‘&WYO‘€Šx*OmO‘kworker/5:1b(x"ÞtO‘ìxO‘kworker/0:1kworker/5:1b(~O‘kworker/5:1b(‚¶æMe„O‘kworker/5:1b(kworker/0:1#Ùç|‘#ì|‘!Gï|‘Ðó|‘ltt-kconsumerd2c÷|‘ltt-kconsumerd2x"•þ|‘!Êÿ|‘"] }‘ö }‘kworker/0:1ltt-kconsumerd2î#}‘'}‘ö*}‘ò+}‘ö€@ŽK=¿B-}‘./}‘HŽK=¿¹7}‘®9}‘V}‘)‚}‘À-ðŠ}‘è0 ltt-kconsumerdƒ”}‘md1_raid1óœ}‘ Ÿ}‘°õ£}‘ê¥}‘ݰ)¯}‘ݱ}‘ö4³}‘4¶}‘°Ä@ ÿÿÿÿÿÿÿÿ‹Â}‘ltt-kconsumerd2|˦Œ½MòÊ}‘ltt-kconsumerd2kworker/0:1#îö‘!×ø‘#+ÿ‘&Ó‚‘€¢~x*Û‚‘kworker/5:1b(x"‚‘!K‚‘&$‚‘€¢~x*"—8‚‘P=‚‘kworker/0:1kworker/5:1b(SC‚‘kworker/5:1b(M1ó¢M]E‚‘kworker/5:0/&xK‚‘kworker/5:1b(dW«M¸M‚‘kworker/5:1b(kworker/5:0/&fQ‚‘kworker/5:0/&ß…wMkX‚‘kworker/5:0/&kworker/0:1#%ȯ‘!Íί‘"%Ô¯‘#Ÿ›â‘#}©â‘!i«â‘"g³â‘!¥´â‘"½½â‘#†x’!ƒ’"5‡’#¶UH’#pcH’!(fH’"jH’!kH’"ÃsH’#B2{’!ù<{’"ª@{’#É®’!{®’""®’#ìà’#ò÷à’!)úà’"þýà’!îþà’"J á’#É“!³Ò“" Ú“#U¬F“#â¯F“!ø±F“"¶F“!·F“"<ÂF“#*‚y“!@y“"‘y“#Ÿ_¬“#Dj¬“!rl¬“"hp¬“!Xq¬“"¾z¬“#¶;ß“!ËEß“" Iß“#ç›ä“!^ä“&U£ä“€Š}x*¨¶ä“kworker/5:0/&x#ìÀä“"Åä“!MÆä“&CÊä“€Š}x*"/æä“mêä“kworker/0:1kworker/5:0/&Xðä“kworker/5:0/&;‰²Mtòä“kworker/5:1b(xhøä“kworker/5:0/&FϺMºúä“kworker/5:0/&kworker/5:1b(wþä“kworker/5:1b(r±Mˆå“kworker/5:1b(kworker/0:1#ì ”#¦$”!!(”"v-”!.”"8”#<üD”!ÔE”"'E”#jÒw”!ãÝw”"$âw”®K}”ahci#îV}” ÂX}”HZ}”uhci_hcd:usb3 é^}”6`}”eth1 ïd}”!Mg}”&¿j}”€B~x*Â|}”kworker/5:1b(x#ˆƒ}”"9Š}”!•‹}”&}”€B~x*"«}”S¯}”kworker/0:1kworker/5:1b()µ}”kworker/5:1b(W9ÉêM!·}”kworker/5:0/&x½}”kworker/5:1b(âòMR¿}”kworker/5:1b(kworker/5:0/& Ã}”kworker/5:0/& ØÀMÃÉ}”kworker/5:0/&kworker/0:1#·ª”#몔ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÅ¾ª”È7êf¦—È7ø~€!žª”"sѪ”!~Òª”"Dܪ”Üa«”md1_raid1x¶f«”kworker/0:1md1_raid13(m«”€ª~x€ð0 -¶o«”€ª~xmd1_raid1.Âu«”€ª~xmd1_raid10[y«”md1_raid13h{«”€ª~x€ð0 -“}«”€ª~xmd1_raid1.2«”€ª~xmd1_raid1'…«”€ª~xmd1_raid11ƒŠ«”md1_raid1(jŽ«”€ª~xmd1_raid1'÷𫔀ª~xmd1_raid11cž«”md1_raid1(. «”€ª~xmd1_raid1C¬«”md1_raid1 KÿjMM´«”md1_raid1kworker/0:1Ì«”md1_raid1xfÑ«”kworker/0:1md1_raid13ôÖ«”€’x€Ø‚0 -+Ù«”€’xmd1_raid1.jß«”€’xmd1_raid10yâ«”md1_raid13Aä«”€’x€Ø‚0 -`æ«”€’xmd1_raid1.½é«”€’xmd1_raid1'Âí«”€’xmd1_raid11ò«”md1_raid1(Kõ«”€’xmd1_raid1'𬔀’xmd1_raid11>¬”md1_raid1(?¬”€’xmd1_raid1J¬”md1_raid1FDE¯M÷¬”md1_raid1kworker/0:1#¦z±”!D|±”&€±”€ª~x*"Å”±”#¨_µ”!+aµ”&Keµ”€’x*ðqµ”kworker/5:0/&x"*zµ”G~µ”kworker/0:1kworker/5:0/&)„µ”kworker/5:0/&ç¿ÓM㊵”kworker/5:0/&kworker/0:1#ÓÙµ”!PÛµ”&qÞµ”€’x*±ïµ”kworker/5:0/&x"‚÷µ”‡ûµ”kworker/0:1kworker/5:0/&è¶”kworker/5:0/&¬kåM`¶”kworker/5:0/&kworker/0:1#þ”Ý”!þšÝ”"®ŸÝ”#zi•!ds•"­{•#@GC•#(QC•!’SC•"…WC•!uXC•"+cC•##v•!ô/v•"´3v•#>ÿ¨•# ©•!ò ©•"ý©•!ÿ©•"ô©•#—ãÛ•!éÛ•"!íÛ•#Ò¿–#ÈÖ!Æ–":Ê–!<Ë–"¹Õ–#L–A–!éŸA–"ߣA–m‡B–md1_raid1x’ŒB–kworker/0:1md1_raid13O•B–€Bx€ˆ‚0 -¡—B–€Bxmd1_raid1.VB–€Bxmd1_raid10Ú B–md1_raid13£B–€Bx€ˆ‚0 -á¥B–€Bxmd1_raid1.5©B–€Bxmd1_raid1'“®B–€Bxmd1_raid11î³B–md1_raid1(û¸B–€Bxmd1_raid1'JÇB–€Bxmd1_raid111ËB–md1_raid1(@ÎB–€Bxmd1_raid1/ÜB–md1_raid1ßV$M­èB–md1_raid1kworker/0:1#ð G–! G–&3G–€Bx*D G–kworker/5:0/&x")G–X-G–kworker/0:1kworker/5:0/&#õ2G–!T4G–&ñ6G–€Bx*‘NG–kworker/5:0/&/MqPG–kworker/5:1b(x"ôWG–»]G–kworker/5:0/&<½#M‚`G–kworker/5:0/&kworker/5:1b(6dG–kworker/5:1b(cùM“jG–kworker/5:1b(kworker/0:1#ïzt–#9t–!ôt–"»‡t–!Èt–"¼’t–#/Q§–!\§–"fc§–#×,Ú–#À8Ú–!Á:Ú–"?Ú–!@Ú–" JÚ–#3 —!q —"( —#¥æ?—!Xñ?—"`õ?—#zÅr—#kÑr—!¨Ór—"×r—!|Ør—"¦ár—#ÉŸ¥—!Ä«¥—"ö¯¥—‘_¦—md1_raid1xÁüÁõ©‹à‡îØF²ÿbÊ™HŽ…e¦—È7zÑ™È78€…e¦—kworker/0:1md1_raid13q¦—€Ê}x€0 -ƒs¦—€Ê}xmd1_raid1.)y¦—€Ê}xmd1_raid10³|¦—md1_raid13>¦—€Ê}x€0 -¦—€Ê}xmd1_raid1.䄦—€Ê}xmd1_raid1' ‰¦—€Ê}xmd1_raid111¦—md1_raid1(Ó¦—€Ê}xmd1_raid1'°¥¦—€Ê}xmd1_raid11'ª¦—md1_raid1(­¦—€Ê}xmd1_raid1Ù»¦—md1_raid1}^¡dMÖǦ—md1_raid1kworker/0:1w§—md1_raid1x6§—kworker/0:1md1_raid13+$§—€²~x€ø0 -n&§—€²~xmd1_raid1.¨+§—€²~xmd1_raid10­/§—md1_raid13b2§—€²~x€ø0 -~4§—€²~xmd1_raid1.58§—€²~xmd1_raid1''=§—€²~xmd1_raid11€A§—md1_raid1(ÈD§—€²~xmd1_raid1'hP§—€²~xmd1_raid11õS§—md1_raid1(öU§—€²~xmd1_raid1c§—md1_raid1åM†²Mk§—md1_raid1kworker/0:17*¬—ahci#I3¬— 5¬—¸6¬—uhci_hcd:usb3 P;¬—©<¬—eth1 VA¬—!D¬—&,G¬—€Ê}x*"+W¬—#ua¬—!Úb¬—&Ae¬—€Ê}x*" {¬—#·°—!p¸°—&X»°—€²~x*½Ñ°—kworker/5:1b(x"šÙ°—Þ°—kworker/0:1kworker/5:1b(;ä°—kworker/5:1b(M° Møê°—kworker/5:1b(kworker/0:1#T„Ø—#ÿ‡Ø—!·ŠØ—"rØ—!w‘Ø—"ô›Ø—#ÚY ˜!^d ˜"Uj ˜#"8>˜#Õ@>˜!TC>˜"MG>˜!OH>˜"þP>˜#²q˜!àq˜" #q˜#ð£˜#…ü£˜!Xÿ£˜"ý¤˜!í¤˜"%¤˜#2ÍÖ˜!ÞØÖ˜"áÞÖ˜šï™bash1xìô™kworker/0:1bash1÷ ™€™°n gMûo"™bash1¹4Û™)M_$™kworker/5:1b(x‹(™bash1x×-™R7™à]n`^n¶9™A<™T5-ÿ`Sn^@™GB™TÀ5-ÿÀ5-ÿ`SnwJ™BL™TÀ5-ÿÀ5-ÿ`Sn¾N™Q™`^n`Sn¢R™HU™ à4-ÿ@4-ÿ5-ÿˆW™ zY™ à4-ÿ@4-ÿ5-ÿôZ™ Ñ\™ à4-ÿ@4-ÿ5-ÿ!^™ û_™ à4-ÿ@4-ÿ5-ÿTa™ .c™ à4-ÿ@4-ÿ5-ÿ®d™ ˆf™ à4-ÿ@4-ÿ5-ÿÞg™ µi™ à4-ÿ@4-ÿ5-ÿk™ Nm™ à4-ÿ@4-ÿ5-ÿ§n™ Dq™ @4-ÿ 3-ÿð4-ÿ—r™ X„™¨qnr…™LJ™ PD-ÿ°C-ÿE-ÿ ‰™ ”Æ™°5-ÿ05-ÿ‰È™Ê™ÿT5-ÿäÍ™ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ Ð™È7.p2ŸÈ7Ѐ Й05-ÿnÔ™´Ö™ @4-ÿ 3-ÿð4-ÿIØ™ #§« ™µ ™bash1Ñž++M#· ™!D» ™"’Í ™!ŽÎ ™"tÐ ™r ™à]n`^n² ™ï ™T05-ÿù ™Ä ™T05-ÿì ™ ™TÐ4-ÿà5-ÿ5 ™ñ ™TÀ4-ÿà5-ÿj ™2 ™Tð4-ÿð4-ÿà5-ÿž! ™W# ™Tð4-ÿð4-ÿà5-ÿÁ% ™"( ™`^ngMûo) ™î+ ™@XnÀWngMûoY- ™º/ ™  2-ÿ2-ÿð3-ÿd1 ™ ¹3 ™  2-ÿ2-ÿð3-ÿ5 ™ é6 ™ 4-ÿp3-ÿÀ4-ÿB8 ™ d: ™  2-ÿ2-ÿð3-ÿ¥; ™ …= ™ 4-ÿp3-ÿÀ4-ÿØ> ™ Ä@ ™ p3-ÿÐ2-ÿÀ4-ÿB ™ *D ™  2-ÿ2-ÿð3-ÿzE ™ WG ™ 4-ÿp3-ÿÀ4-ÿªH ™ ±J ™  2-ÿ2-ÿð3-ÿ@L ™ ;N ™ 4-ÿp3-ÿÀ4-ÿŽO ™ ›Q ™  2-ÿ2-ÿð3-ÿëR ™ ÈT ™ 4-ÿp3-ÿÀ4-ÿV ™ ÔW ™ÀWnÀ4-ÿY ™+[ ™  2-ÿ2-ÿð3-ÿŠ\ ™ _ ™à]n`^nt` ™ut ™°n$gMûoÿÿÿÿë| ™bash1x‹‚ ™$… ™`^ngMûoÿÿÿÿ]† ™yˆ ™tngMûo‰ ™«Œ ™ï5-ÿgMûo˜ ™bash1©ãG,MËœ ™bash1kworker/5:1b(v± ™kworker/5:1b(ø¨&M¸À ™kworker/5:1b(kworker/0:1ZŒ™ahci Åœ™rž™uhci_hcd:usb3 F£™¤™eth1 :©™#4Ž<™!•<™";œ<™#¨co™!ªno™"¨so™#åG¢™!©M¢™"ƒR¢™#Õ™!/&Õ™"j*Õ™#«ùš!°š"£ š#eß:š!äã:š" è:š#¶³mš!¾mš"ØÂmš#ò š!—™ š"! š#ËlÓš!ßzÓš"À~Óš#tQ›! V›"íY›¸n›ahci +}›œ~›uhci_hcd:usb3 ƒ›Ò„›eth1 y‰›#0'9›!¸59›"&:9›#[l›!ôl›"l›#ªàž›!Xëž›"zïž›# ½Ñ›!ÈÑ›"‹ÌÑ›#8šœ!¹£œ"ާœ#5w7œ!‚7œ"z‡7œ#'Tjœ!^jœ"@cjœ#D0œ!È9œ"Ä=œ#> М!lМ"М#«ñ!÷"û#RÇ5!yÑ5"Õ5#ªh!ï®h"ʲh#‹€›!BŽ›"D’›# ^Î!kÎ"NoÎ#E:ž!EDž"GHž#W4ž!©#4ž"Õ'4ž#ìófž!ýfž"ëgž#>Ñ™ž!Eà™ž"j䙞#…°Ìž!x»Ìž"@ÀÌžyØÑžahci çÑžuèÑžuhci_hcd:usb3 æìÑžîÑžeth1 ÑòÑž##‹ÿž!¿”ÿž"s›ÿžÁüÁõ©‹à‡îØF²ÿbÊ™HŽÏg2ŸÈ7{â‘¢È7P~€#Ïg2Ÿ!w2ŸÒ}2Ÿltt-kconsumerd20ƒ2Ÿltt-kconsumerd2x"4‹2ŸëŽ2Ÿkworker/0:1ltt-kconsumerd2Ôº2Ÿ\À2ŸöÄ2ŸäÅ2Ÿö€@ŽK=¿pÇ2ŸŒÉ2ŸHŽK=¿ÐÖ2ŸàØ2ŸÃ3Ÿ«"3Ÿ-¶+3Ÿ‚0 ltt-kconsumerd|D3ŸéF3Ÿð±K3Ÿ²M3ŸÝðË[3ŸÝÛ]3Ÿö*`3Ÿíc3Ÿ°Ä@ ÿÿÿÿÿÿÿÿ¼p3Ÿltt-kconsumerd2>îäz¾M ~3Ÿltt-kconsumerd2kworker/0:1#žMeŸ!îTeŸ" ZeŸ#ð)˜Ÿ!r/˜Ÿ"ò3˜Ÿ#ÔËŸ!# ËŸ"Ñ ËŸ#$ÛýŸ!œèýŸ"VìýŸ#S·0 !Á0 "¹Ç0 #èšc !]¡c "5¥c #£q– !~– "Þ‚– #wNÉ !†XÉ "\É #4ü !õ8ü "=ü …Z¡ahci Vk¡Ðl¡uhci_hcd:usb3 qq¡¸r¡eth1 hw¡# /¡!V/¡"/¡#(åa¡!ða¡"qôa¡#Á”¡!Í”¡"Ñ”¡#žÇ¡!ð©Ç¡"µ®Ç¡#M{ú¡!)ˆú¡" Œú¡#BX-¢!²a-¢">f-¢#¹4`¢!??`¢"äB`¢Óý¢bash1x¢kworker/0:1bash1&¢¢¢°n gMûoæ&¢bash1,H;,M5)¢kworker/5:1b(x=-¢bash1xJ2¢è8¢à]n`^n;¢€=¢T5-ÿ`SnRA¢>C¢TÀ5-ÿÀ5-ÿ`Sn»J¢‰L¢TÀ5-ÿÀ5-ÿ`SnO¢ Q¢`^n`Sn€R¢·T¢ à4-ÿ@4-ÿ5-ÿjV¢ SX¢ à4-ÿ@4-ÿ5-ÿµY¢ ’[¢ à4-ÿ@4-ÿ5-ÿî\¢ Ë^¢ à4-ÿ@4-ÿ5-ÿ'`¢ b¢ à4-ÿ@4-ÿ5-ÿ{c¢ Xe¢ à4-ÿ@4-ÿ5-ÿ«f¢ …h¢ à4-ÿ@4-ÿ5-ÿÒi¢ Ák¢ à4-ÿ@4-ÿ5-ÿm¢ o¢ @4-ÿ 3-ÿð4-ÿÑp¢ z¢¨qn0{¢|}¢ PD-ÿ°C-ÿE-ÿØ~¢ ±´¢°5-ÿ05-ÿˆ¶¢ƒ¸¢ÿT5-ÿž»¢ƽ¢05-ÿ"¿¢kÁ¢ @4-ÿ 3-ÿð4-ÿ â Б¢à]n`^n_Ñ‘¢iÓ‘¢T05-ÿÕ‘¢ØÖ‘¢T05-ÿÍØ‘¢ÝÚ‘¢TÐ4-ÿà5-ÿÅÝ‘¢ÁüÁõ©‹à‡îØF²ÿbÊ™HŽá‘¢È7 š¢È7ø€á‘¢TÀ4-ÿà5-ÿŒæ‘¢Qè‘¢Tð4-ÿð4-ÿà5-ÿî‘¢Rð‘¢Tð4-ÿð4-ÿà5-ÿÂò‘¢#õ‘¢`^ngMûo‘ö‘¢qø‘¢@XnÀWngMûoßù‘¢7ü‘¢  2-ÿ2-ÿð3-ÿÉý‘¢ ’¢  2-ÿ2-ÿð3-ÿ_’¢ Q’¢ 4-ÿp3-ÿÀ4-ÿ°’¢ Ï’¢  2-ÿ2-ÿð3-ÿ’¢ í ’¢ 4-ÿp3-ÿÀ4-ÿ= ’¢ , ’¢ p3-ÿÐ2-ÿÀ4-ÿs’¢ ’¢  2-ÿ2-ÿð3-ÿå’¢ ¿’¢ 4-ÿp3-ÿÀ4-ÿ’¢ ’¢  2-ÿ2-ÿð3-ÿ`’¢ =’¢ 4-ÿp3-ÿÀ4-ÿ’¢ ”’¢  2-ÿ2-ÿð3-ÿØ’¢ µ ’¢ 4-ÿp3-ÿÀ4-ÿÿ!’¢ Á#’¢ÀWnÀ4-ÿ %’¢ '’¢  2-ÿ2-ÿð3-ÿh(’¢ á*’¢à]n`^nF,’¢+>’¢°n$gMûoÿÿÿÿÍD’¢bash1xFJ’¢$¡L’¢`^ngMûoÿÿÿÿ÷M’¢P’¢tngMûo*Q’¢ÊS’¢ï5-ÿgMûoòX’¢bash1á1)m.M\’¢bash1kworker/5:1b(€p’¢kworker/5:1b(ëÏwMÑ|’¢kworker/5:1b(kworker/0:1#g“¢!"“¢)“¢ltt-kconsumerd2Z.“¢ltt-kconsumerd2x"7“¢¤;“¢kworker/0:1ltt-kconsumerd2Tg“¢m“¢öÞy“¢Ð{“¢ö€@ŽK=¿•}“¢ü“¢HŽK=¿@“¢_“¢~Ó“¢?Ö“¢`-ß“¢ð€0 ltt-kconsumerdú“¢%ü“¢P ”¢”¢ÝP“”¢Ý ”¢ö ”¢1”¢ö¼”¢~”¢ö€@ŽK=¿È”¢¤!”¢HŽK=¿Ð+”¢È-”¢AZ”¢,]”¢-µd”¢‚0 ltt-kconsumerdÍy”¢R|”¢Ò€”¢£‚”¢ÝB”¢ÝL‘”¢ö•“”¢—”¢°Ä@ ÿÿÿÿÿÿÿÿ¦”¢ltt-kconsumerd2Px4ó¿MO²”¢ltt-kconsumerd2kworker/0:1(ú™¢ahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽá š¢È70[¬È7(~€ á š¢¹š¢uhci_hcd:usb3 <š¢‰š¢eth1 6š¢#¹ïÅ¢!výÅ¢§Æ¢ltt-kconsumerd2x"¾ Æ¢›Æ¢kworker/0:1ltt-kconsumerd2_"Æ¢‰%Æ¢öÉ'Æ¢‘)Æ¢ö€@ŽK=¿ù*Æ¢Ö,Æ¢HŽK=¿Ú4Æ¢Õ6Æ¢¥`Æ¢cÆ¢ -ilÆ¢‚0 ltt-kconsumerdˆ†Æ¢›ˆÆ¢ЌƢ•ŽÆ¢ÝbšÆ¢ÝWœÆ¢ö‘žÆ¢7¡Æ¢°Ä@ ÿÿÿÿÿÿÿÿ4­Æ¢ltt-kconsumerd2*«^žÀMg¹Æ¢ltt-kconsumerd2kworker/0:1#½Óø¢!wÚø¢"#àø¢#c¨+£!Z±+£"!·+£Ó¹0£ahci eÊ0£ÊË0£uhci_hcd:usb3 _Ð0£¦Ñ0£eth1 YÖ0£#¨…^£!-’^£"%—^£#wa‘£!Çi‘£"_n‘£#á>Ä£!lGÄ£"yOÄ£#9÷£!I&÷£"ö*÷£#+ÿ)¤! *¤"*¤#áÔ\¤!Èß\¤"ýã\¤#α¤!÷»¤"翤#$¤!ª›Â¤"CŸÂ¤#Àkõ¤!6xõ¤"8|õ¤#CH(¥!ªS(¥"7W(¥#m%[¥!M0[¥"ì3[¥#YŽ¥!µ Ž¥"/Ž¥#!ßÀ¥!wêÀ¥"SðÀ¥#D¼ó¥!Æó¥"Êó¥#º˜&¦!Æ¢&¦"Ѧ&¦#»uY¦!Y¦"ŸƒY¦#RŒ¦!·^Œ¦"˜bŒ¦#¿0¿¦!Ý<¿¦"Ö@¿¦# ò¦!ãò¦"!ò¦#Ué$§!ô$§"œ÷$§#]ÅW§!åÑW§"ÀÕW§#\¢Š§!ɭЧ"¶±Š§#½§!"н§"[½§îÀ§ahci ˆÏ§óЧuhci_hcd:usb3 vÕ§¥Ö§eth1 [Û§#Fbð§#ùfð§!ið§"ìmð§!înð§"zð§#¶8#¨!úB#¨"}G#¨#zV¨#ä#V¨!T&V¨"ƒ*V¨!p+V¨"¬4V¨#üˆ¨!"¬‰¨#>Ñ»¨#Ý»¨!Oß»¨"$㻨!&仨"Pí»¨#P³î¨!»·î¨"r»î¨#Óˆ!©#”!©!Š–!©"Ëš!©!¸›!©"©¤!©#ÂeT©!UpT©"tT©#8I‡©#N‡©!øO‡©"ÇS‡©!´T‡©"^‡©#ú©!Ì(º©",º©#²üì©#¯í©!sí©"Q í©!Y í©"fí©#Ùª!äª"èª#æµRª#×¾Rª!ÃÀRª"zÄRª!|ÅRª"4ÎRª#I“…ª!8Ÿ…ª"“¤…ª#Pw¸ª#ûz¸ª!Û|¸ª"ª€¸ª!—¸ª" ‹¸ª#¯Lëª!êVëª"ÎZëª#%)«#93«!5«"$9«!:«"‰C«#1Q«!Q«"íQ«#É탫#ûñƒ«!êóƒ«"é÷ƒ«!Ùøƒ«"ê„«#®¿¶«!õɶ«"ζ«#ùœé«!F¨é«"·¬é«å÷¬bash1x þ¬kworker/0:1bash1e¬ó¬°n gMûo!¬bash1,9™.M#¬kworker/5:1b(xC'¬bash1xq,¬F3¬à]n`^n\5¬Ï7¬T5-ÿ`Sn•;¬„=¬TÀ5-ÿÀ5-ÿ`Sn@E¬G¬TÀ5-ÿÀ5-ÿ`Sn™I¬©K¬`^n`Sn,M¬oO¬ à4-ÿ@4-ÿ5-ÿ"Q¬ S¬ à4-ÿ@4-ÿ5-ÿˆT¬ hV¬ à4-ÿ@4-ÿ5-ÿÁW¬ ÁüÁõ©‹à‡îØF²ÿbÊ™HŽZ¬È7Ñô¬È7ЀZ¬ à4-ÿ@4-ÿ5-ÿå]¬ Ë_¬ à4-ÿ@4-ÿ5-ÿ$}¯#+.}¯!¿0}¯"5}¯!)6}¯"7@}¯#Ó°¯!é °¯"®°¯#Ýâ¯#†çâ¯![ëâ¯"Eïâ¯!Aðâ¯"÷â¯#¦À°!òŰ"Çɰ#˜H°#F¤H°!é¦H°"ñªH°!ä«H°"ѵH°#&t{°!›~{°"Á‚{°#îP®°#Z®°!.\®°"`®°!a®°"Éi®°#þ5á°!·:á°"•>á°#Ë ±#9±!%±"f±!q±"ì#±#sçF±ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ]ôF±È7¥–”¶È7ð~€!]ôF±DþF±ltt-kconsumerd2çG±ltt-kconsumerd2x"” G±uG±kworker/0:1ltt-kconsumerd2b:G± ?G±ö“BG±^DG±ö€@ŽK=¿öEG±HG±HŽK=¿™TG±‹VG±’G±‰”G±P-ÿœG±0‚0 ltt-kconsumerdØ·G±ºG±@P¾G±WÀG±Ý@tÍG±Ý„ÏG±öÜÑG±îÔG±°Ä@ ÿÿÿÿÿÿÿÿ†âG±ltt-kconsumerd2øßþÖÃM+ïG±ltt-kconsumerd2kworker/0:1#ïÍy±#NÒy±!QÕy±"‹Úy±!ÞÛy±"Uæy±;±ahci L%±À&±uhci_hcd:usb3 …+±Æ,±eth1 y1±#•¡¬±!€®¬±"T³¬±# ‡ß±#»Šß±!¼Œß±"aß±!Q‘ß±"œß±#ÂZ²!1j²"3n²#n7E²!´BE²"ÑFE²#xx²#X x²!¡"x²"s&x²!l'x²"Ó/x²#Ïðª²!­ýª²"«²#¾Íݲ#H×ݲ!XÙݲ"GÞݲ!Rßݲ"5çݲ#šª³!¿¶³"¼³#݇C³#F’C³!;”C³"™C³!šC³"M£C³øâH³ahci òH³óH³uhci_hcd:usb3 ï÷H³fùH³eth1 %þH³#üdv³!Npv³"Êuv³#A©³#¯L©³!‰N©³" R©³!ýR©³"Ø_©³#ܳ!z'ܳ"ú+ܳ#ü´#W´!¾ ´"í ´!ã´"´#e×A´!|äA´"ÛèA´#´t´#½t´!¯¿t´"œÃt´!ŒÄt´"ƒÍt´#†™§´!“ž§´"†¢§´#ìmÚ´#lxÚ´!zÚ´"~Ú´!†Ú´"qˆÚ´# T µ!hY µ"R] µ#ê'@µ#x1@µ!ú3@µ"J8@µ!=9@µ"ÏC@µ#h sµ!Ísµ"usµ#É᥵#uí¥µ!šï¥µ"Kó¥µ!Dô¥µ"ßþ¥µ#–¾Øµ!åÊØµ"ÞÎØµ#X› ¶#¦ ¶!¨ ¶"ñ« ¶!ä¬ ¶"¸ ¶#x>¶!Ñ>¶"Á…>¶#“Tq¶#ò^q¶!Daq¶"aeq¶!lfq¶" oq¶Ù”¶bash1xÍ”¶kworker/0:1bash1e)”¶//”¶°n gMûoX9”¶bash1[,jä0M;”¶kworker/5:1b(xÁ?”¶bash1x"E”¶ÇK”¶à]n`^nàM”¶PP”¶T5-ÿ`Sn1T”¶V”¶TÀ5-ÿÀ5-ÿ`Sn3^”¶`”¶TÀ5-ÿÀ5-ÿ`Sn§b”¶³d”¶`^n`Snf”¶—h”¶ à4-ÿ@4-ÿ5-ÿSj”¶ Hl”¶ à4-ÿ@4-ÿ5-ÿÚm”¶ ·o”¶ à4-ÿ@4-ÿ5-ÿdq”¶ ƒs”¶ à4-ÿ@4-ÿ5-ÿu”¶ "w”¶ à4-ÿ@4-ÿ5-ÿ¥x”¶ Êz”¶ à4-ÿ@4-ÿ5-ÿÅ|”¶ ð~”¶ à4-ÿ@4-ÿ5-ÿv€”¶ Œ‚”¶ à4-ÿ@4-ÿ5-ÿ„”¶ †”¶ @4-ÿ 3-ÿð4-ÿˆ”¶ •‘”¶¨qnµ’”¶ÁüÁõ©‹à‡îØF²ÿbÊ™HŽj•”¶È7F¥¶È7@~€j•”¶ PD-ÿ°C-ÿE-ÿš”¶ ¥Ï”¶°5-ÿ05-ÿ…Ñ”¶ŒÓ”¶ÿT5-ÿÝÖ”¶´Ø”¶05-ÿ:Ú”¶zÜ”¶ @4-ÿ 3-ÿð4-ÿúÝ”¶ ŠÙ•¶à]n`^n Û•¶Ý•¶T05-ÿÇÞ•¶•à•¶T05-ÿ·â•¶»ä•¶TÐ4-ÿà5-ÿÄç•¶£ê•¶TÀ4-ÿà5-ÿFí•¶ ï•¶Tð4-ÿð4-ÿà5-ÿeõ•¶`÷•¶Tð4-ÿð4-ÿà5-ÿôù•¶Iü•¶`^ngMûo½ý•¶£ÿ•¶@XnÀWngMûoS–¶Ì–¶  2-ÿ2-ÿð3-ÿj–¶ ž–¶  2-ÿ2-ÿð3-ÿ –¶ ø –¶ 4-ÿp3-ÿÀ4-ÿ„ –¶ Ù–¶  2-ÿ2-ÿð3-ÿD–¶ !–¶ 4-ÿp3-ÿÀ4-ÿ›–¶ Š–¶ p3-ÿÐ2-ÿÀ4-ÿ –¶ )–¶  2-ÿ2-ÿð3-ÿ|–¶ Y–¶ 4-ÿp3-ÿÀ4-ÿ©–¶ °–¶  2-ÿ2-ÿð3-ÿ!!–¶ þ"–¶ 4-ÿp3-ÿÀ4-ÿN$–¶ X&–¶  2-ÿ2-ÿð3-ÿÀ'–¶ š)–¶ 4-ÿp3-ÿÀ4-ÿ+–¶ Ê,–¶ÀWnÀ4-ÿV.–¶Ÿ0–¶  2-ÿ2-ÿð3-ÿ2–¶ à4–¶à]n`^nE6–¶RG–¶°n$gMûoÿÿÿÿHN–¶bash1xT–¶$IV–¶`^ngMûoÿÿÿÿáW–¶¥¶i@¥¶ö!C¥¶ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ7E¥¶È7ØYÀÈ7h€7E¥¶ö€@ŽK=¿ÊH¥¶°J¥¶HŽK=¿dT¥¶AV¥¶‚¥¶‹„¥¶`-Ž¥¶8‚0 ltt-kconsumerd¤¥¶ô¥¥¶Pÿ©¥¶Í«¥¶ÝP¸¶¥¶Ý¡¸¥¶öÒº¥¶}¾¥¶°Ä@ ÿÿÿÿÿÿÿÿ~É¥¶åË¥¶ö˜Í¥¶TÏ¥¶ö€@ŽK=¿¤Ð¥¶uÒ¥¶HŽK=¿)Ù¥¶Û¥¶·¦¶K ¦¶p-Ù¦¶@„0 ltt-kconsumerd\*¦¶f,¦¶`ß1¦¶ltt-kconsumerd2.å,¼ÅMf>¦¶ltt-kconsumerd2kworker/0:1ôæ±¶ahci ÷±¶yø±¶uhci_hcd:usb3 ý±¶Rþ±¶eth1 ü²¶#+×¶#³×¶!Ú×¶" %×¶!$&×¶"D0×¶#|ô ·!Ïø ·"õü ·#IÏ<·#WÓ<·!CÕ<·"Ù<·!Ú<·"ã<·#§o·!‹°o·">µo·#‚¢·#‡Œ¢·!¬Ž¢·"“’¢·!†“¢·"g¢·#õ^Õ·!rlÕ·"YpÕ·#&;¸#F¸!H¸"WL¸!GM¸"ãV¸#!;¸!#;¸"Ý&;¸#úöm¸#¿n¸!ón¸"æn¸!Ùn¸"Ån¸#6Ò ¸!¿ß ¸"ýã ¸# ¯Ó¸#ó¹Ó¸!¼Ó¸"ÎÀÓ¸!ÄÁÓ¸")ÌÓ¸#ò‹¹!à•¹"9š¹#Ïh9¹#óq9¹!Zt9¹"8x9¹!%y9¹"iƒ9¹#ýDl¹!'Ql¹"Vl¹#O"Ÿ¹#Ø*Ÿ¹!ë,Ÿ¹"ê0Ÿ¹!à1Ÿ¹" ;Ÿ¹#Ìÿѹ!ÃÒ¹" Ò¹#=ܺ#~éº!ìº"öïº!ìðº"€ùº#P¸7º!ÜÃ7º"È7º#–•jº#½¢jº!¥jº"´¨jº!¤©jº";²jº#ûqº! |º"怺#=Oк!ÙXк"­]к#,»#m4»!T8»"e<»!p=»"HG»’ð »ahci ÿ »… »uhci_hcd:usb3 ð »+ »eth1 Þ »#º6»!I6»"Š6»# æh»#ñh»!óh»"øh»!ùh»"%i»#½Â›»!·Ì›»"üÒ›»#¦Î»#ɪλ!¾¬Î»"N°Î»!A±Î»"_½Î»#S|¼!˜ˆ¼"ù¼ahci è¼> ¼uhci_hcd:usb3 © ¼ä¼eth1 ©¼#þY4¼#Sb4¼!§e4¼"ÿj4¼!l4¼""x4¼#‚5g¼!x@g¼ÏFg¼kworker/5:1b(x"Ng¼ëQg¼kworker/0:1kworker/5:1b(_g¼kworker/5:1b(Y…ºMÇig¼kworker/5:1b(kworker/0:1#š¼#š¼!Ž š¼"Y%š¼!U&š¼"Ä/š¼#G÷̼!åû̼"œÿ̼#Óÿ¼#¢×ÿ¼!‹Ùÿ¼"ÕÝÿ¼!àÞÿ¼"¶çÿ¼#¤©2½!ö²2½"ï¶2½#Qe½#°“e½!À•e½"Å™e½!Кe½"¤e½#'c˜½!o˜½"Ær˜½#°?˽# K˽!pM˽"6Q˽!>R˽":\˽#Uþ½!_'þ½"5-þ½#1¾#1¾!å 1¾"ÿ 1¾! 1¾"ë1¾#ÉÕc¾!ºßc¾"³ãc¾#r³–¾#‡½–¾!Ê¿–¾"óÖ¾!ûÄ–¾"kЖ¾#ûɾ!ɾ"ՠɾ#_lü¾#§uü¾!wü¾"ª{ü¾!|ü¾"q‡ü¾#¥I/¿!aU/¿"îX/¿#Þ%b¿#5/b¿!<1b¿"P5b¿!F6b¿"3@b¿#Q•¿!é •¿"6•¿#WàÇ¿#ëéÇ¿! ìÇ¿"»ïÇ¿!«ðÇ¿"«üÇ¿#=½ú¿!¬Êú¿"`Îú¿à Àuhci_hcd:usb4 I%À“&Àeth0#ã-À ô.À!þ0ÀÁüÁõ©‹à‡îØF²ÿbÊ™HŽ©XÀÈ7¬“‡ÇÈ7ð€©XÀsshdf(2`Àsshdf(x" mÀMrÀkworker/0:1sshdf(Í—ÀÜÀ𢴀ÿp£´€ÿÁ À¹¢Àp£´€ÿN¤À‰®Ààc´€ÿ@×¹À0êâÀ@ù¨ª2 ù¨ª2KñÀ©óÀ𢴀ÿp£´€ÿ}õÀT÷Àp£´€ÿ°øÀnûÀ Eªª2r Àsshdf(m§N"Më Àkworker/5:1b(xÉ Àsshdf(xW ÀH À@ù¨ª2 ù¨ª2¹" Àsshdf(¨¼i"M‹& Àsshdf(kworker/5:1b(”2 Àbash1o9 Àkworker/5:1b(ÓXÒMÔC Àkworker/5:1b(kworker/0:1;Ÿ"Àsshdf(x¤"Àkworker/0:1sshdf(J±"Àí³"À𢴀ÿp£´€ÿîµ"À°·"Àp£´€ÿú¸"À¦»"Ààb´€ÿ@Ä"À&•á"À@ù¨ª2 ù¨ª2¸è"Àãê"À𢴀ÿp£´€ÿ“ì"ÀUî"Àp£´€ÿœï"Àó"À‹¨ª2P'#ÀP #À@ù¨ª2 ù¨ª2)#Àsshdf(3Šïó"M\2#Àsshdf(kworker/0:1#¦¢-À#9¦-À!±©-À";¿-À!@À-À"TÊ-À?IÀahci q-IÀß.IÀuhci_hcd:usb3 q3IÀ¾4IÀeth1 t9IÀ#¢}`À!w„`À"T‰`À#S“À#]“À!:_“À"*c“À!;d“À"o“À#J0ÆÀ!Š<ÆÀ"æ@ÆÀ#U ùÀ#ùÀ!9ùÀ"ùÀ!ùÀ"­*ùÀ#®é+Á!æó+Á"ñ÷+Á#´Æ^Á#ïÑ^Á!ÞÓ^Á"ï×^Á!ýØ^Á" ã^Á#¾ª‘Á!_¯‘Á"d³‘Á#€ÄÁ#ÍŠÄÁ!àŒÄÁ"ÙÄÁ!Ì‘ÄÁ""œÄÁ#†]÷Á!=èÊ#zË#0Ë!.Ë"œ Ë!!Ë"f)Ë#ÏèMË!5óMË"p÷MË#’Ë€Ë#¯Ï€Ë!§Ñ€Ë"šÕ€Ë!Ö€Ë"u߀Ë#½¡³Ë!M®³Ë"C²³Ë#Ï~æË#¢‹æË!öæË"ò‘æË!å’æË"SæË#å[Ì!˜gÌ"mÌ# 8LÌ#°@LÌ!¿CLÌ"«GLÌ!›HLÌ"~SLÌ#gÌ!ÀÌ"($Ì#Iü±Ì#)²Ì!!²Ì"ƒ²Ì!y²Ì" ²Ì#·ÎäÌ!üØäÌ"žÜäÌ#Ç«Í#ÕµÍ!÷·Í"ÿ»Í!ï¼Í"cÇÍ#+’JÍ!\—JÍ"H›JÍ#e}Í#Úo}Í!ÿq}Í"Ùv}Í!Ìw}Í"©‚}Í#íJ°Í!µÍ@µÍuhci_hcd:usb3 ¢DµÍFFµÍeth1 üJµÍ#8ãÍ#)ãÍ!Y+ãÍ"µ/ãÍ!®0ãÍ"é:ãÍ#«ûÎ!üÎ"é Î#yØHÎ#áHÎ!EãHÎ"\çHÎ!jèHÎ".ñHÎ#Úµ{Î!ÄÂ{Î"ÃÆ{Î#)’®Î#›®Î!%®Î"Ä ®Î!º¡®Î"R«®Î#ooáÎ!ãzáÎ"©~áÎ##LÏ!VÏ" ZÏ# )GÏ#ë4GÏ!g7GÏ"¦Ó#·ÿØÓ!Š ÙÓ"’ ÙÓ#0Ý Ô!Wç Ô"»ì Ô#ò¹>Ô#êÄ>Ô!œÇ>Ô"nË>Ô!vÌ>Ô"9Ö>Ô#¤–qÔ!£qÔ"ò¦qÔ#s¤Ô#V~¤Ô!–€¤Ô"7…¤Ô!'†¤Ô"̤Ô#§P×Ô!2]×Ô"Â`×Ô#- Õ#¾8 Õ!Ú: Õ"~? Õ!Œ@ Õ"šJ Õ#š =Õ!;=Õ""=Õ#qæoÕ#ðoÕ!÷ñoÕ"xõoÕ!ªöoÕ":pÕ#œÃ¢Õ!Ü΢Õ"Ó¢Õ#  ÕÕ#W­ÕÕ!v¯ÕÕ"³ÕÕ!ö³ÕÕ"ݼÕÕ#g}Ö!”‡Ö"‹ÖŽ· Öahci "Æ ÖTÇ Öuhci_hcd:usb3 ³Ë ÖÖÌ Öeth1 }Ñ Ö#uZ;Ö#+c;Ö!Me;Ö"åi;Ö!Ûj;Ö" s;Ö#ï6nÖ!ÔBnÖ"ÁFnÖ#_¡Ö#î¡Ö!õ ¡Ö"£$¡Ö!“%¡Ö"i.¡Ö#ÃðÓÖ!+üÓÖ"ÓÿÓÖ#…Í×#\Ø×!{Ú×"#Þ×!ß×"3é×#Ë©9×!a´9×" ¸9×#.l×#î’l×!U•l×"ë˜l×!ö™l×"Þ¢l×#€cŸ×!ªmŸ×"*rŸ×#,AÒ×#4NÒ×!JPÒ×"TÒ×!UÒ×"Í]Ò×#fØ!&Ø"0*Ø#sú7Ø#Ü8Ø![8Ø"ü8Ø!ï 8Ø"Ã8Ø#‰×jØ!)ãjØ"IçjØ#[¼Ø#ÐÂØ!LÅØ"ëÈØ!ÞÉØ"eÓØ#ñÐØ!ÐØ"-¡ÐØ#NmÙ#xÙ!HzÙ"Ø}Ù!Ë~Ù"‡Ù#@J6Ù!ÇS6Ù"‡W6Ù#š'iÙ#ï3iÙ!6iÙ"õ9iÙ!;iÙ"TDiÙ#ØœÙ!œÙ"$œÙ#áÎÙ#ÈëÎÙ!´íÎÙ"GñÎÙ!:òÎÙ"âûÎÙ#ë½Ú!ÚÉÚ"ÜÍÚ#Ñš4Ú#ú¨4Ú! «4Ú"®4Ú!¯4Ú"ê¸4Ú#=wgÚ!gÚ"W…gÚ#˜TšÚ#Ô]šÚ!ð_šÚ"àcšÚ!îdšÚ"mšÚ#ç0ÍÚ!»9ÍÚ"]=ÍÚ#Û#Û!Û"Û! Û"©)Û#Ôê2Û!4õ2Û"äù2Û#ZÍeÛ# ÒeÛ!›ÔeÛ"…ØeÛ!{ÙeÛ"¯áeÛ#Ÿ¤˜Û!˜¯˜Û"a³˜Û#ÖËÛ#\ËÛ!EËÛ"“ËÛ!+”ËÛ"‘ËÛ#¼_þÛ!öhþÛ"mþÛ#;1Ü#'E1Ü!UG1Ü"ôá!äIôá"§Môá#'â#Ý%'â!G('â"1,'â!-'â"Í5'â#ÉøYâ!˜Zâ"XZâ#ÏÕŒâ#nàŒâ!ÃâŒâ"ææŒâ!èçŒâ"ôðŒâ#m²¿â!V¾¿â"Qÿâ#îŽòâ!s˜òâ".žòâ#Cl%ã#’w%ã!‡y%ã"q}%ã!a~%ã"I‡%ã#tKXã!¶XXã"ë\Xã#i%‹ã#1‹ã!Œ3‹ã"^7‹ã!Q8‹ã"ºA‹ã#‚¾ã!É ¾ã"¾ã#éðã#ríðã!²ïðã"“óðã!}ôðã"\ýðã#b¼#ä!‚Ç#ä"6Ë#ä#{™Vä#ÿ£Vä!¦Vä"Þ©Vä!˪Vä"Ú³Vä#x‰ä!ªƒ‰ä"j‡‰ä#‚R¼ä#½\¼ä!$_¼ä"ùb¼ä!ãc¼ä"4m¼ä#­/ïä!:ïä"Ò=ïä#Ý "å#Ü"å!È"å" "å! "å"("å#ëèTå!öTå"úTå#Ƈå# Ï‡å!pÒ‡å"½Ö‡å!­×‡å"߇å#[ªºå!箺å"ò²ºå#díå!a‰íå"Žíå#°\ æ#cg æ!|i æ"Wm æ!An æ"¶w æ#9Sæ!DSæ"âGSæ#£†æ#*#†æ!%†æ"6)†æ!#*†æ"z3†æ#¿ò¸æ!¯¹æ"K¹æÎ.¾æahci QH¾æÑI¾æuhci_hcd:usb3 BN¾ætO¾æeth1 T¾æ# Ðëæ#HÛëæ!pÝëæ"Þáëæ!Èâëæ"½íëæ#“¬ç!Ò¶ç"»ç#J‰Qç#•Qç!"—Qç"{›Qç!hœQç"ï¥Qç#~f„ç!dq„ç" u„ç#ûB·ç#ÂK·ç!ØM·ç"ÂQ·ç!¯R·ç"Z\·ç#e êç! -êç"{1êç#üè#«è!‚è"´ è!ž è"2è#‚ÙOè!‡éOè"VíOè#¶‚è!ÍÀ‚è"´Ä‚è#W“µè#Áœµè!%Ÿµè"£µè!¤µè"“¬µè#apèè!‡zèè"~èè#«Ré#3Xé!"Zé"3^é!5_é"5hé#`*Né!É3Né"‹8Née[éahci ðr[éOt[éuhci_hcd:usb3 Ãx[é z[éeth1 Ï~[é#?é#Àé!é"/é!4é"î!é#;ã³é!kì³é"úð³é#jÁæé#kÍæé!xÏæé"wÓæé!jÔæé" Þæé%zòéahci ó‡òéF‰òéuhci_hcd:usb3 Ìòé òéeth1 À“òé#¥ê!âªê"k¯ê#7Lê#C‡Lê!>‰Lê"àŒLê!ÍLê"É—Lê#Wê!9cê"Ggê#\3²ê#M<²ê!Z>²ê"nB²ê!XC²ê"L²ê#§åê!àåê"Äåê#ØíëÁüÁõ©‹à‡îØF²ÿbÊ™HŽëøëÈ7k&ÚïÈ7à€#ëøë!€ýë7ëltt-kconsumerd2 ëltt-kconsumerd2x"Pë!dë"‚ë{ ëkworker/0:1ltt-kconsumerd2ËJëPëöžSë`Uëö€@ŽK=¿¿Vë–XëHŽK=¿ídëÜfë/¡ëº£ëÐ-¬ëp„0 ltt-kconsumerdÄëLÆëÀWÊë(ÌëÝÀ°×ëÝ~Ùëö²ÛëÓÞë°Ä@ ÿÿÿÿÿÿÿÿêëëltt-kconsumerd2gãáæÊMqõëltt-kconsumerd2kworker/0:1#-ÑJë!í×Jë"WÝJë#j¨}ë#Cµ}ë!§·}ë"*¼}ë!½}ë"óÅ}ë#„°ë!ðë"'“°ë#˜`ãë#>iãë!Bkãë"¶oãë!©pãë"[yãëŠÅìuhci_hcd:usb4 ŽÊìÛËìeth0#«Ñì °Òì!Õì"±þì# Dì!Jì"Oì#£Iì!$Iì")Iì#ø{ì#|ì!J|ì"% |ì! |ì"m|ì#¥Ü®ì!Dã®ì"1ç®ì#P±áì#fºáì!X¼áì"ú¿áì!ðÀáì"©Ëáì#Ôí!s›í"Ÿí#ïqGí#vGí!øwGí"¯{Gí!Ÿ|Gí"b†Gí#ÞHzí!…Szí"“Wzí#8*­í#©.­í!¼0­í"R4­í!H5­í"?­í#>àí!Áàí"oàí#Yßî#©éî!˜ëî"Þðî!Ññî"åûî#ܺEî!eÆEî"6ËEî#ÿ—xî#j xî!W¤xî"_¨xî!O©xî"´xî#4t«î!u~«î"‰‚«î#áPÞî!ÞYÞî"I^Þî#Ç-ï#':ï!µ<ï"eAï!^Bï":Kï# Dï!Dï"ÍDï#×çvï#Éòvï!Äôvï"Ìøvï!¿ùvï"àwï#ìÄ©ï!WЩï"†Ý©ïÎÖïuhci_hcd:usb4 ¾ÒÖïÔÖïeth0#ÙÖï ÚÖï!0ÜÖï¿òÖïsshdf(SøÖïsshdf(x"j×ïÀ×ïkworker/0:1sshdf(é(×ï.×ï𢴀ÿp£´€ÿó0×ïë2×ïp£´€ÿz4×ï|;×ïàc´€ÿ@ûC×ï0‚_×ï@ù¨ª2 ù¨ª2„l×ïÐn×ï𢴀ÿp£´€ÿªp×ï„r×ïp£´€ÿãs×ï}v×ï Eªª2×ïsshdf(HŠËc%M‘ƒ×ïkworker/5:1b(xc‡×ïsshdf(xÖŒ×ïìŽ×ï Tࢴ€ÿ@£´€ÿ“×ïv˜×ï@ù¨ª2 ù¨ª2Ì¢×ïsshdf(!æ„%Mž¦×ïsshdf(kworker/5:1b(Œµ×ïkworker/5:1b(¡‚ßMuÀ×ïkworker/5:1b(kworker/0:1¶ÛÙïsshdf(xüàÙïkworker/0:1sshdf(8íÙïêïÙï𢴀ÿp£´€ÿåñÙï°óÙïp£´€ÿ õÙï ÷Ùïàb´€ÿ@°ÿÙï)Úï@ù¨ª2 ù¨ª2*Úï@!Úï𢴀ÿp£´€ÿí"ÚïÁüÁõ©‹à‡îØF²ÿbÊ™HŽ%ÚïÈ7µÐËùÈ7€€%Úïp£´€ÿ˜)Úï-Úª2PmHÚïPÂMÚï@ù¨ª2 ù¨ª2ò#$?ò!d?ò"f ?ò!Y ?ò"¥?ò#`Ùqò!ùãqò"éçqò#*µ¤ò#¿½¤ò!À¤ò"æÃ¤ò!ÜĤò"'Τò#€‘×ò!,×ò"X¡×ò#¶o ó#>{ ó!*} ó" ó!‚ ó"æŠ ó#ŽK=ó!ÄW=ó"i[=ó#»(pó#ñ4pó!7pó"Ð:pó!Ø;pó"úCpó#Ì£ó!Ö£ó"£ó#/âÕó#¥ëÕó!9îÕó" òÕó!óÕó"¶ûÕó#t¾ô!ËÈô"úÌô#´›;ô#ª¥;ô!Û§;ô"Ñ«;ô!Ĭ;ô" µ;ô#Çxnô! …nô"b‰nô#U¡ô#`¡ô!|b¡ô"Éf¡ô!Ñg¡ô"Pp¡ôò¬ôahci ª¬ô¬ôuhci_hcd:usb3 €¬ô¯¬ôeth1 S¬ô#*2Ôô!Þ;Ôô"²@Ôô#õ#õ!mõ"!õ!"õ"º*õ#ûë9õ!A÷9õ"û9õ#šÐlõ#xÔlõ!mÖlõ" Úlõ!üÚlõ"Õãlõ#O¬Ÿõ!;±Ÿõ"CµŸõ#2‚Òõ#¡‹Òõ!ŽÒõ"בÒõ!Í’Òõ"ìšÒõ#Ó^ö!˜iö"Ùmö#’;8ö#ãD8ö!ÒF8ö"ÎJ8ö!ÁK8ö"T8ö#nkö!W#kö"&'kö#Zõö#æÿö!ïžö"¸žö!«žö"$žö#ZÒÐö!pÛÐö"ÃßÐö#¯÷#¶¹÷!¼÷"IÀ÷!BÁ÷"ôÉ÷#÷‹6÷!`•6÷"³™6÷#mii÷#/ti÷!ovi÷"Mzi÷!@{i÷"¬„i÷#Fœ÷!Nœ÷"(Sœ÷#H"Ï÷#i.Ï÷! 1Ï÷"á4Ï÷!×5Ï÷"5>Ï÷# ÿø!² øGøkworker/5:1b(x"ø\økworker/0:1kworker/5:1b(ö'økworker/5:1b(´@ÏMa2økworker/5:1b(kworker/0:1#*Ý4ø#è4ø!~ê4ø"—ï4ø!±ð4ø"Àù4ø#¿gø!GÄgø"ëÈgø#a–šø#ñŸšø!£šø"À¦šø!¶§šø"˰šø#)sÍø! Íø"+ƒÍø#Où#QYù!R[ù"-_ù! `ù" iù#,3ù!ù43ù"{93ù#Î fù#³fù!Õfù"fù! fù"p(fù#áå˜ù!ôñ˜ù"áõ˜ù#ÂÂËù#óÎËùÁüÁõ©‹à‡îØF²ÿbÊ™HŽËÒËùÈ7I-ýÈ7¸€!ËÒËù¢ÚËùltt-kconsumerd2vßËùltt-kconsumerd2x"ÞæËù!(èËù"­ðËùUôËùkworker/0:1ltt-kconsumerd2ºÌùî#Ìùö'Ìùæ(Ìùö€@ŽK=¿H*Ìù4,ÌùHŽK=¿¾8Ìù˜:Ìù*rÌù¦tÌùð-…}Ìù€„0 ltt-kconsumerd³—Ìù šÌùà”žÌù_ ÌùÝàq¬ÌùÝ~®Ìùö©°Ìùr´Ìù°Ä@ ÿÿÿÿÿÿÿÿÂÌùltt-kconsumerd2.㺴ÌM?ÌÌùltt-kconsumerd2kworker/0:1&Ñùahci *Ñùk+Ñùuhci_hcd:usb3 ñ/Ñù51Ñùeth1 å5Ñù#g¨þù!(°þù"¤µþù#!„1ú#gˆ1ú!"‹1ú"À1ú!Â1ú"¨›1ú#žYdú!´adú" fdú#Å6—ú#þ@—ú!C—ú"H—ú"P—ú#ZÊú!¾!Êú"Y&Êú†&Ïúahci ‰5Ïúý6Ïúuhci_hcd:usb3 n;Ïú©<Ïúeth1 bAÏú#`ðüú#ûüú!Býüú"ýú!ýú"B ýú#ÌÌ/û!×/û"¬Û/û#Ö©bû#Õ´bû!·bû"£»bû!“¼bû"'Åbû##•û!‹‘•û"M••û#akÈû#©qÈû!ªsÈû"#yÈû!(zÈû"}‚Èû#B@ûû!cJûû"pNûû#y.ü#æ(.ü!+.ü"Ü/.ü!Ï0.ü" :.ü#Ëaü!)aü"| aü#„דü#4à“ü!â“ü" æ“ü!÷æ“ü"£ï“ü#,³Æü!c¼Æü"zÀÆü#÷ùü#›ùü!ùü"¡ùü!ý¡ùü"‹ªùüN'ýuhci_hcd:usb4 ‹R'ýØS'ýeth0#`Y'ý eZ'ý!]\'ýús'ýsshdf(x"¹'ý0†'ýkworker/0:1sshdf(ÿ•'ý˜™'ý𢴀ÿp£´€ÿœ'ý ž'ýp£´€ÿ¾Ÿ'ýþ¤'ýàc´€ÿ@W¬'ý0(Ã'ý@ù¨ª2 ù¨ª2rÐ'ý¬Ò'ý𢴀ÿp£´€ÿŒÔ'ýfÖ'ýp£´€ÿË×'ýhÚ'ý Eªª2â'ýsshdf(3oq&M¯ä'ýkworker/5:1b(x™è'ýsshdf(xÍí'ýmó'ý@ù¨ª2 ù¨ª2ü'ýsshdf(-‹&M@ÿ'ýsshdf(kworker/5:1b( (ýkworker/5:1b(8ò©M~(ýkworker/5:1b(kworker/0:1#pw,ý!à~,ý"ß‚,ý'Â,ýsshdf(xÇÇ,ýkworker/0:1sshdf(#Õ,ýð×,ý𢴀ÿp£´€ÿÚ,ý¿Û,ýp£´€ÿÝ,ý<à,ýàb´€ÿ@è,ý@oþ,ý@ù¨ª2 ù¨ª2³-ýÕ-ý𢴀ÿp£´€ÿ -ý\ -ýp£´€ÿ£ -ýñ-ý‹¨ª2pQ+-ýps0-ý@ù¨ª2 ù¨ª2W:-ýsshdf(qyž'MÁüÁõ©‹à‡îØF²ÿbÊ™HŽSG-ýÈ7¨˜BýÈ7°€SG-ýsshdf(kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÜ—BýÈ7 ›ÚiÉ7À€Ü—Býahci ‚¬Bý2®Býuhci_hcd:usb3 ß²Bý5´Býeth1 ]¹Býbabeltrace-1.2.1/tests/ctf-traces/succeed/test/channel0_30000755000175000017500000020000011616325072020142 00000000000000ÁüÁõ©‹à‡îØF²ÿbÊ™HŽqÈ7.-„È7Ѐÿÿ#gBØyÈ7#ÆLØy #mQØy!ÑSØy"ÔVØy!XØy"‚]Øy!r^Øy "YbØy #¨$ z#©& z !ù* z"£, z!¢- z "m2 z #ý=z#>z!ç>z"‹>z!x>z"t >z#Úpz#mÜpz !ùàpz"Ùâpz!áãpz "Ùëpz  A{zuhci_hcd:usb4 äE{z[G{zeth0#M{z N{z!ûO{z"÷n{z#ǹ£z#¯¼£z #*À£z!²Â£z"²Å£z!¥Æ£z"…Ë£z!iÌ£z ")Уz #`—Öz#£™Öz !hžÖz"  Öz!ü Öz "J¤Öz #âq {#As { #Tu {!@w {"y {!z {"c~ {!V { "Ì { #æL<{#O<{ !²S<{"PU<{!IV<{ "\X<{ áÀb{ahci#9Ïb{ ‘Ñb{üÒb{uhci_hcd:usb3 a×b{–Øb{eth1 UÝb{!Mßb{&&ñb{€ºð0+* c{kworker/3:2+(x"}c{c{kworker/0:1kworker/3:2+(,$c{kworker/3:2+( 1ëÀ&·,c{kworker/3:2+(kworker/0:1#0,o{#v.o{ #1o{!›3o{"6o{! 7o{"eÓ| "]CÓ| #F}#p}!S}"ß}!Õ}"p}#Iï8}#Jñ8} !îõ8}"Ñ÷8}!Ðø8} "þú8} #»Ék}#˜Ëk} #ÃÍk}!ÄÏk}"×Ñk}!ÓÒk}"êÖk}!Â×k} "Úk} #‰¨ž}!x­ž}"X¯ž}#\ƒÑ}#²‡Ñ}!ž‰Ñ}"–‹Ñ}!ƒŒÑ}"’Ñ}#/_~!ýc~"Ëe~#v;7~# >7~!@7~"îA7~!ÛB7~"AF7~#©j~!†j~"' j~#köœ~#üøœ~!÷úœ~"€üœ~!yýœ~"~#¯ÔÏ~!ÔÙÏ~"iÛÏ~#`²#ô´!×¶"–¸!›¹"j½#‰‹5!“5"@’5#¤jh#/mh!Boh"qh! rh"åwh# G›!ƒK›"iM›#\#Î#€&Î!{(Î" *Î!+Î"ð.Î#€!¨€"@€#·Ú3€#<Ý3€!ß3€"Þà3€!Ëá3€"%å3€#4¼f€!ÛÀf€"‚Âf€#¬”™€#1—™€!™™€"ñš™€!ù›™€"ËŸ™€#brÌ€!wÌ€"ãxÌ€#—Qÿ€#rUÿ€!yWÿ€"Yÿ€! Zÿ€"_ÿ€#ï.2!®32"@52Ùw7ahci ]„7ž…7uhci_hcd:usb3 ô‰7‹7eth1 f7# e#Me!fe"se!œe"Œe#cè—!¦í—"}ï—#èÄÊ#‚ÇÊ!€ÉÊ"ËÊ!ÌÊ"ÎÏÊ#’¡ý!¦ýSªýkworker/3:2+(x"=®ý²ýkworker/0:1kworker/3:2+(úºýkworker/3:2+(ÎüÀ&zÂýkworker/3:2+(kworker/0:1#‚0‚#*…0‚!d‡0‚"_‰0‚!dŠ0‚" 0‚#ÖYc‚!€^c‚"*`c‚#;–‚#»=–‚!¼?–‚"A–‚!•B–‚"¾F–‚#{É‚!òÉ‚" É‚#øïû‚#‘óû‚!öû‚"Ì÷û‚!Ñøû‚"-ýû‚#Î.ƒ!àÒ.ƒ"“Ô.ƒ#®aƒ#ü±aƒ!´aƒ"p¶aƒ!r·aƒ"e»aƒ#@‹”ƒ!ᔃ"”‘”ƒ#wfǃ#jǃ!lǃ"»mǃ!¨nǃ"Îrǃ#Dúƒ!9Iúƒ"àJúƒ#p-„#!-„!Ú"-„ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ&%-„È76\äÈ7€€"&%-„!·3-„"Ë7-„#ªú_„!åþ_„š`„ltt-kconsumerd2} `„ltt-kconsumerd2x"Ó `„á`„kworker/0:1ltt-kconsumerd2‹=`„ I`„ö§P`„®R`„ö€@ŽK=¿:T`„ÐW`„HŽK=¿2n`„Bp`„Âa„  a„--0a„@0 ltt-kconsumerdH]a„`a„öÌca„®ia„°Ä@ ÿÿÿÿÿÿÿÿ‘wa„ltt-kconsumerd2Ao_×x'+‚a„ltt-kconsumerd2kworker/0:1#Ù’„#hÝ’„!’à’„"çâ’„!ä’„"è’„€‰™„ahci ¡˜™„!š™„uhci_hcd:usb3 Áž™„ ™„eth1 ¯¤™„#&·Å„!3¼Å„"g¾Å„#>•ø„#˘ø„!Þšø„"dœø„!Qø„"¢ø„#im+…!q+…"r+…#µJ^…#N^…!ÁP^…"†R^…!ŽS^…"W^…#â%‘…!‡)‘…"+‘…#CÄ…#Ü Ä…!é Ä…" Ä…!•Ä…"£Ä…#}âö…!æö…"Ÿçö…V†ahci ƒ††uhci_hcd:usb3 Œ†Ó†eth1 † †#®»)†#D¿)†!WÁ)†"IÃ)†!<Ä)†"•È)†#›\†!) \†"ú¡\†#y†#°|†!~†"€†!†"…†#êS†!_W†"ýX†#ô0õ†#“4õ†!6õ†"e8õ†!j9õ†"‡=õ†#'(‡!½(‡"g(‡#/êZ‡#³íZ‡!¨ïZ‡"CñZ‡!-òZ‡";öZ‡#Âʇ!·"MЇ#†¥À‡#4©À‡!D«À‡"è¬À‡!Ò­À‡" ²À‡#ƃó‡!n‡ó‡"‰ó‡#2_&ˆ#Ýb&ˆ!çd&ˆ"jf&ˆ!Tg&ˆ")k&ˆ#\:Yˆ!õ=Yˆ"?Yˆ#ÐŒˆ#uŒˆ!dŒˆ"ó Œˆ!û!Œˆ"&Œˆ#9ô¾ˆ!Þ÷¾ˆ"gù¾ˆ#Ññˆ#½Ôñˆ!»Öñˆ"Øñˆ!|Ùñˆ"ÀÝñˆ#Q²$‰!·$‰"̸$‰#ø‰W‰#sW‰!wW‰"‘W‰!ó‘W‰"õ•W‰#ðfЉ!ôkЉ"¿mЉ#2E½‰#òH½‰!ÏJ½‰"Ž#¬BŽ!ªDŽ"lFŽ!tGŽ" KŽ#~OŽ!…#OŽ"&%OŽ#-øŽ#çûŽ!åýŽ"ËÿŽ!¾‚Ž"Ï‚Ž#ˆ×´Ž!hÜ´Ž"NÞ´Ž#ЯçŽ#´çŽ!¶çŽ"Ë·çŽ!è¸çŽ"½çŽ#×!œ•"7—#>nM#%rM!tM"ßuM!ävM"ìzM#ëG€!æL€"ŠN€#À)³#J-³!N/³"ì0³!Ù1³";6³#`æ!^ æ" æ#ÉÝ#‰á!Ÿã"(å!æ"äé#P¿K!NÄK"×ÅK#Þ~#o ~!^¢~"ä£~!Ô¤~"!©~#t±!’y±"!{±#ÎTä#ÝWä!2ZäÁüÁõ©‹à‡îØF²ÿbÊ™HŽaäÈ7àbjœÈ7Ѐaältt-kconsumerd2çhältt-kconsumerd2x"mmä!¨nä" sä÷väkworker/0:1ltt-kconsumerd2ã–äñšäöHžä äö€@ŽK=¿~¡ä^£äHŽK=¿Ô®äðäØïäuòä-$ýäH0 ltt-kconsumerd³åÉåùåKå݃=åÝx?åö£AååDå°Ä@ ÿÿÿÿÿÿÿÿ“Qåltt-kconsumerd2Æê%Ây'^åltt-kconsumerd2kworker/0:1-ƒéahci [‘é½’éuhci_hcd:usb3 a—霘éeth1 Lé#e/‘!+6‘"V8‘## J‘#8J‘! J‘"•J‘!…J‘"‚J‘#8æ|‘!!ë|‘"ãì|‘#?ɯ‘#ͯ‘!ϯ‘"ªÐ¯‘!Íѯ‘"&Ö¯‘#Ǥâ‘!Å©â‘"Z«â‘#A~’#‚’!탒"|…’!f†’"wŠ’#h_H’!âcH’"zeH’#¢9{’#½<{’!²>{’"A@{’!+A{’"E{’#®’!v®’" ®’#nôà’#5÷à’!3ùà’"Ýúà’!Íûà’",á’#bÕ“!]Ú“"øÛ“#ÞªF“#f­F“!s¯F“"ê°F“!×±F“"aµF“#T‹y“!ày“"´‘y“#‚h¬“#Lk¬“!Mm¬“"0o¬“!5p¬“".t¬“#+Cß“!wHß“"Jß“#N”#/#”!%”"U'”!W(”"},”#ûD”!·ÿD”"XE”#ïÝw”#ûàw”!Aãw”"-åw”! æw”"1êw”?r}”ahci á~}”g€}”uhci_hcd:usb3 í„}”(†}”eth1 êŠ}”#¸ª”!мª”"ݾª”#ì”Ý”#‘˜Ý”!ªšÝ”"Üݔ!°Ý”"¢Ý”#–t•!y•"ºz•# PC•#¢RC•!¸TC•"PVC•!:WC•"H[C•#-*v•!‚/v•" 1v•#æ©•#n ©•!Z ©•"©•!9©•"©•#)âÛ•!çÛ•"¤èÛ•#¯¾–#FÁ–! Ö"Å–!ðÅ–"}É–#Ò›A–!Ž A–"h¢A–#-|t–#€t–!u‚t–"v„t–!c…t–"Št–#êW§–!Í\§–"³^§–#7Ú–#¡9Ú–!Ÿ;Ú–"1=Ú–!>Ú–"òBÚ–#: —!À —"m —#Ûï?—#Bò?—!ô?—"¥õ?—!’ö?—"=ú?—#Ìr—!íÐr—"”Òr—#Œ§¥—#«¥—!­¥—"¦®¥—!“¯¥—"³¥—kP¬—ahci 4]¬—™^¬—uhci_hcd:usb3 c¬—3d¬—eth1 æh¬—#èƒØ—!剨—""ŒØ—#8c ˜#°f ˜!¢h ˜"%j ˜!-k ˜"}o ˜#ð=>˜!»B>˜"DD>˜# q˜#3 q˜!."q˜"ó#q˜!õ$q˜"H)q˜#êú£˜!‘ÿ£˜";¤˜#=ÚÖ˜#?ÞÖ˜!1àÖ˜"óáÖ˜!øâÖ˜"²æÖ˜#² ™!޶ ™"S¸ ™˼™ahci †Ë™îÌ™uhci_hcd:usb3 >Ñ™pÒ™eth1 ×™#_<™#ø<™!ù’<™"•<™!–<™"£š<™# lo™!Åqo™"óso™#pG¢™#uK¢™!|M¢™"€O¢™!‚P¢™"U¢™#c"Õ™!í%Õ™"‘'Õ™#Äš#Wš!^ š" š! š"š#ÁÝ:š!{á:š"'ã:š#™¼mš#Àmš!Âmš" Ämš!Åmš"öÈmš#G• š!Ô˜ š"´š š#>vÓš#CzÓš!J|Óš"$~Óš!&Óš"+ƒÓš#ÊO›!uS›" U›#U/9›#i39›!X59›"Y79›![89›"-<9›#B l›!Òl›"Ál›#Bæž›#áéž›!Üëž›"âíž›!Ïîž›"Åòž›#šÃÑ›!6ÇÑ›"×ÈÑ›#TŸœ#/£œ!!¥œ"°¦œ! §œ"¢«œ#–ƒ7œ!­‡7œ"‰7œ#1Zjœ#Ä]jœ!Â_jœÁüÁõ©‹à‡îØF²ÿbÊ™HŽ¢ajœÈ7²Š§È7€€"¢ajœ!}ejœ"ijœ#œ5œ!!;œ%@œltt-kconsumerd2 Eœltt-kconsumerd2x"ÖIœŒNœkworker/0:1ltt-kconsumerd2ˆmœrœöDuœ3wœö€@ŽK=¿¤xœœzœHŽK=¿Q†œ=ˆœÖ»œd¾œ -³ÆœP0 ltt-kconsumerdÏàœýâœ>çœ9éœÝQôœÝUöœö›øœ›ûœ°Ä@ ÿÿÿÿÿÿÿÿ…žœltt-kconsumerd2ÔÄù†z'žœltt-kconsumerd2kworker/0:1¶i¢œahci 9z¢œ{¢œuhci_hcd:usb3 €¢œY¢œeth1 ú…¢œ#,М#‘М!‘М"¹М!¯ М"æ%М#Eñ!ö"ê÷#ÞÌ5#¡Ð5!œÒ5"4Ô5!`Õ5"SÙ5#@©h!í­h"š¯h#ማ#wŒ›!cŽ›"(›!3‘›"A•›#¶gÎ!OkÎ"ùlÎ#ËBž#(Fž!,Hž"¾Iž!®Jž"\Nž#}"4ž!&4ž"¨'4ž#Qûfž#êþfž!ßgž"hgž!Ugž"ägž#³Û™ž!4ß™ž"Òà™ž#к̞#Š¾Ìž!dÀÌž" ÃÌž!ôÃÌž"¢ÇÌž#a•ÿž!zšÿž"“œÿž#¤o2Ÿ#=s2Ÿ!)u2Ÿ"²v2Ÿ!¢w2Ÿ"þ{2Ÿ4¸7Ÿahci Ç7ŸŠÈ7Ÿuhci_hcd:usb3 Í7Ÿ?Î7Ÿeth1 =Ó7Ÿ#}MeŸ!ŠReŸ"gTeŸ#?,˜Ÿ#ç/˜Ÿ!Ü1˜Ÿ"à3˜Ÿ!Í4˜Ÿ"Â9˜Ÿ#ËŸ!´ ËŸ"š ËŸ#óâýŸ#¹æýŸ!ÌèýŸ"XêýŸ!EëýŸ"|ïýŸ#=Â0 !ôÅ0 "•Ç0 #c #Ö c !Ô¢c "¤c !w¥c "¾©c #Ÿy– !î~– "– #ñSÉ #«WÉ !—YÉ " [É ! \É "Ÿ`É #g6ü !è9ü "Å;ü #p /¡#r/¡!m/¡"ò/¡!6/¡"\/¡™ 4¡ahci K/4¡­04¡uhci_hcd:usb3 *54¡h64¡eth1 $;4¡#µìa¡! òa¡"¶ôa¡#6È”¡#ÀË”¡!ÇÍ”¡"JÏ”¡!@Д¡"ŠÔ”¡#¨Ç¡!&­Ç¡"T¯Ç¡#Žƒú¡#B‡ú¡!²‰ú¡"æ‹ú¡!èŒú¡"®ú¡#Zb-¢!Gf-¢" h-¢#0<`¢#@`¢!B`¢"‰C`¢!vD`¢"]H`¢#v“¢!á“¢"…!“¢ž¢ahci ó!ž¢4#ž¢uhci_hcd:usb3 x'ž¢¡(ž¢eth1 >-ž¢#ùÅ¢#ýÅ¢!5ÿÅ¢" Æ¢!öÆ¢"øÆ¢#åÒø¢!¤×ø¢"~Ùø¢#ï¯+£#¸³+£!›µ+£"Š·+£!w¸+£"ú¼+£#J^£!r’^£"s”^£#Èh‘£#nk‘£!`m‘£"^o‘£!Kp‘£"u‘£•ž–£ahci e­–£Ç®–£uhci_hcd:usb3 ,³–£L´–£eth1 P¹–£#•HÄ£!™MÄ£"jOÄ£#"÷£#U&÷£!D(÷£"?*÷£!,+÷£"7/÷£#qþ)¤!$*¤"õ*¤#Ü\¤#2ß\¤!?á\¤"Ýâ\¤!Êã\¤"¨ç\¤# º¤!¦¾¤"PÀ¤#‡—¤#-šÂ¤!CœÂ¤"í¤!òžÂ¤"¯¢Â¤# sõ¤!Çwõ¤"kyõ¤#ÀO(¥#øS(¥!íU(¥"ˆW(¥!~X(¥"S\(¥#b-[¥!Ü1[¥"¹3[¥#Í Ž¥#WŽ¥!aŽ¥"Ž¥!4Ž¥"ÖŽ¥#QìÀ¥!áïÀ¥"|ñÀ¥#GÂó¥#æÅó¥!ÞÇó¥"²Éó¥!´Êó¥"(Ïó¥#%¡&¦!x¥&¦"a§&¦#(|Y¦#¬Y¦!Y¦"ƒY¦!„Y¦"LˆY¦#%]Œ¦!±aŒ¦"@cŒ¦#ø6¿¦#©:¿¦!’<¿¦"$>¿¦!?¿¦"C¿¦#5ò¦!Áò¦"bò¦#_ï$§#ó$§!/õ$§"¸ö$§!¢÷$§"ü$§#ÿÌW§!âÑW§"tÓW§# «Š§#È®Š§!±Š§ÁüÁõ©‹à‡îØF²ÿbÊ™HŽ-¹Š§È7\3°²È7˜€-¹Š§ltt-kconsumerd2™¿Š§ltt-kconsumerd2x"^ÄŠ§!™ÅЧ":ÊŠ§iΊ§kworker/0:1ltt-kconsumerd2ñ÷ЧìüЧö(‹§‹§ö€@ŽK=¿d‹§b‹§HŽK=¿¿‹§º‹§KL‹§âN‹§0-‚W‹§X0 ltt-kconsumerdŽq‹§›s‹§ µw‹§ªy‹§Ý ¨„‹§Ý£†‹§öÚˆ‹§ï‹‹§°Ä@ ÿÿÿÿÿÿÿÿ‘˜‹§ltt-kconsumerd2ˆÚa{',£‹§ltt-kconsumerd2kworker/0:1#Œ½§!“½§"8•½§##dð§#àgð§!çið§"Ùkð§!Ælð§"šqð§TKõ§ahci Â[õ§E]õ§uhci_hcd:usb3 ×aõ§cõ§eth1 ³gõ§#w>#¨!rC#¨"ÓE#¨#' V¨#á#V¨!ß%V¨"Ô'V¨!)V¨"Â-V¨#[ûˆ¨!¨ÿˆ¨"=‰¨#"Ù»¨#¦Ü»¨!‰Þ»¨"໨!Ứ"U廨#زî¨!¿¶î¨"W¸î¨#õ‘!©#X•!©!Œ—!©"K™!©!>š!©"+ž!©#XmT©!ÀqT©"vsT©#®K‡©#wO‡©!TQ‡©"ãR‡©!ÖS‡©"œW‡©#N(º©!ƒ,º©"?.º©#í©#¹í©!¥ í©": í©!0 í©"Ûí©#Vãª!ˆçª"éª#<½Rª#ðÀRª!ñÂRª"€ÄRª!sÅRª"«ÉRª#õ™…ª!Ÿ…ª"» …ª#w¸ª#¡z¸ª!¥|¸ª"4~¸ª!*¸ª" ƒ¸ª#LUëª!lYëª"[ëª#Ù/«#o3«!X5«"7«!8«"Ê;«# Q«!WQ«"øQ«#Ê샫#9ðƒ«!òƒ«"«óƒ«!¡ôƒ«"Áøƒ«#üŶ«!ʶ«"á˶«#+¨é«#Ö«é«!­é«"¢¯é«!­°é«"”´é«#÷ƒ¬!}ˆ¬"Ь…,¬ahci æ’,¬o”,¬uhci_hcd:usb3 ò˜,¬Æš,¬eth1 sŸ,¬!ô>¬ahci Î?¬*?¬uhci_hcd:usb3 ­?¬è?¬eth1 ­ ?¬#Ã^O¬#bO¬!ÌdO¬"ÍfO¬!ÃgO¬"îlO¬#Ê:‚¬!«>‚¬"|@‚¬#¤µ¬#ûµ¬! µ¬"޵¬!à µ¬"˜$µ¬#Pöç¬!àùç¬"Ãûç¬# Ó­#ÆÖ­!âØ­"æÚ­!ßÛ­"_à­#þ¯M­!”³M­"5µM­#©‹€­#T€­!R‘€­"Þ’€­!Ô“€­"‚—€­#Pj³­!Åm³­"No³­#éAæ­#IEæ­!PGæ­"NIæ­!YJæ­"%Næ­#ù®!:$®"á%®#cýK®#L®! L®"õL®!ëL®"ð L®#cÛ~®!aà~®"Jâ~®#tº±®#ø½±®!À±®"šÁ±®!®Â±®"ãÆ±®#à•ä®!Ÿšä®"(œä®#;s¯#¶v¯!¨x¯"dz¯!o{¯"€¯#ÉRJ¯!ÁWJ¯"tYJ¯ÿO¯ahci ÃŽO¯"O¯uhci_hcd:usb3 ”O¯Ë•O¯eth1 ršO¯#Ø)}¯#z-}¯!Ÿ/}¯"2}¯! 3}¯"š7}¯#æ °¯!ÿ°¯"°¯#¿êâ¯#4îâ¯!&ðâ¯"²ñâ¯!¥òâ¯"÷â¯#¤Â°!µÆ°"’Ȱ#:¤H°#‹§H°!Ë©H°"~«H°!‰¬H°"U°H°#Hz{°!ž~{°"0€{°#©V®°#?Z®°!\®°"Ì]®°!Ú^®°"ßb®°#½7á°!æ;á°"{=á°#x±#±!±"õ±!±"ö±#¼ïF±!WôF±"þõF±#¨Ìy±#hÐy±!oÒy±"‚Ôy±!Õy±"/Ùy±#g©¬±!†®¬±"଱#Æ…ß±#_‰ß±!H‹ß±"ß±!Žß±"Y’ß±#­f²!ik²"m²#îAE²#XDE²!;FE²"ÙGE²!ÌHE²"PLE²#Ox²!§"x²"]$x²#®üª²#·ÿª²!£«²";«²!.«²"«²Ç°²ahci ²+°²-°²uhci_hcd:usb3ÁüÁõ©‹à‡îØF²ÿbÊ™HŽâ1°²È7ü˜½È7˜€ â1°²6°²eth1 ¯:°²#Ôݲ!sÙݲàݲltt-kconsumerd2æÝ²ltt-kconsumerd2x"Uëݲ‰ðݲkworker/0:1ltt-kconsumerd2wÞ²ÏÞ²ö#Þ²ß$Þ²ö€@ŽK=¿2&Þ²!(Þ²HŽK=¿Þ4Þ²Ð6Þ²@oÞ²ËqÞ²@-ÞyÞ²`0 ltt-kconsumerdí”Þ²ý–Þ²0ÏšÞ²šœÞ²Ý0ð¦Þ²Ý©Þ²öa«Þ²ö®Þ²°Ä@ ÿÿÿÿÿÿÿÿ¤»Þ²ltt-kconsumerd2©×*9|'IÈÞ²ltt-kconsumerd2kworker/0:1#·³#i»³!r¾³"£À³!®Á³"ÊÆ³#àŽC³!®“C³"X•C³#Pnv³#%rv³!/tv³"Awv³!7xv³" |v³#ËH©³!1L©³"ÒM©³#Ï&ܳ#D*ܳ!,ܳ".ܳ!/ܳ"Û2ܳ#v´!î´"î´¢´ahci €/´1´uhci_hcd:usb3 ž5´î6´eth1 ¿;´#üßA´#ÅãA´!ÕåA´"0èA´!)éA´"QîA´#j¹t´!T½t´"õ¾t´#ÿ˜§´#°œ§´!ºž§´"p §´!º¡§´"Ô¥§´# wÚ´!£zÚ´"k|Ú´#åQ µ#{U µ!ÓW µ"_Y µ!UZ µ"·^ µ#2@µ!˜5@µ"67@µ#w sµ#ïsµ!Ïsµ"‚sµ!usµ"qsµ#ý쥵!{ð¥µ"+ò¥µ#;ÆØµ#ÅÉØµ!´Ëص"”ÍØµ!¢Îص"’ÒØµ#·£ ¶!\§ ¶"!© ¶#Ö>¶#Qƒ>¶!O…>¶" ‡>¶!ˆ>¶"ý‹>¶#Í\q¶!„`q¶"bq¶#9¤¶#Ï<¤¶!¬>¤¶"A@¤¶!7A¤¶"ÍD¤¶Éïµ¶ahci Žýµ¶ÿµ¶uhci_hcd:usb3 ˆ¶¶±¶¶eth1 R ¶¶# ×¶!ë×¶"ò×¶#5ó ·#ìö ·!äø ·"gú ·!Zû ·"¿ÿ ·#ÅÎ<·!aÒ<·"ÿÓ<·#¥®o·#²o·!´o·"ãµo·!ñ¶o·"ɺo·#ªŠ¢·!1Ž¢·"â·#ÝgÕ·#škÕ·!kmÕ·"g¼!Cg¼"=Eg¼#Lš¼#lš¼!| š¼"_"š¼![#š¼"#(š¼#Áõ̼!žú̼"oü̼#‡Ôÿ¼#Øÿ¼!!Úÿ¼"­Ûÿ¼! Üÿ¼"Éàÿ¼#µ±2½!\¶2½"¸2½#©Že½#E’e½!^”e½"Þ•e½!Ñ–e½"úše½#éj˜½!„o˜½¸t˜½kworker/3:2+(x"z˜½ÿ~˜½kworker/0:1kworker/3:2+(ÁüÁõ©‹à‡îØF²ÿbÊ™HŽÚú˜½È7(¸ÈÈ7ø€Úú˜½kworker/3:2+(-‡W¥Å&S ™½kworker/3:2+(kworker/0:1#ÅI˽#ìL˽!GO˽”V˽ltt-kconsumerd2ž[˽ltt-kconsumerd2x"`˽!,a˽"ße˽¥i˽kworker/0:1ltt-kconsumerd2“˽˜Ë½ö¢›Ë½²Ë½ö€@ŽK=¿ ŸË½ë Ë½HŽK=¿{­Ë½g¯Ë½dè˽àê˽P-’ó˽h0 ltt-kconsumerdú ̽̽@Û̽©̽Ý@Ã̽ÝÁ!̽öþ#̽:'̽°Ä@ ÿÿÿÿÿÿÿÿ^3̽ltt-kconsumerd2?Øi}'Q=̽ltt-kconsumerd2kworker/0:1#†'þ½!ú.þ½"=1þ½#L1¾#¸1¾!Å1¾"Q 1¾!A 1¾"Ç1¾#pÛc¾!2àc¾"Êác¾#¯¹–¾#~½–¾!|¿–¾"€Á–¾!…–¾"Æ–¾#¶˜É¾!]ɾ"õžÉ¾#Yrü¾#ùtü¾!ñvü¾"zxü¾!myü¾"o}ü¾#ßO/¿!ÈT/¿"™V/¿#Ë,b¿#¼/b¿!´1b¿"j3b¿!o4b¿"Ú8b¿#[ •¿!J•¿"ú•¿#jéÇ¿#õëÇ¿!êíÇ¿"yïÇ¿!lðÇ¿"ôÇ¿#Æú¿!¯Êú¿"PÌú¿1À&Àuhci_hcd:usb4 óÄ&À7Æ&Àeth0#+Ì&À !Í&À!FÏ&À"+ù&À#' -À#Õ£-À!«¦-À"ñ¨-À!ó©-À"±¯-ÀÙFIÀahci mWIÀêXIÀuhci_hcd:usb3 m]IÀº^IÀeth1 mcIÀ#û{`À!‚`À"„`À#[“À#–]“À!‹_“À"Va“À![b“À"½f“À#™<ÆÀ!pAÆÀ"CÆÀ#?ùÀ#âùÀ!øùÀ"ùÀ!ƒùÀ"l#ùÀ#3ò+Á!Ýö+Á"Àø+Á#ÁÏ^Á#@Ò^Á!2Ô^Á"ÄÕ^Á!·Ö^Á"­Ú^Á#=ª‘Á!ó®‘Á"š°‘Á#‡ÄÁ#i‹ÄÁ!vÄÁ"ÄÁ!òÄÁ"?”ÄÁ#.d÷Á!Ûh÷Á"Žj÷Á# D*Â#¨G*Â!šI*Â" K*Â! L*Â"êP*Â#»]Â!}#]Â"%]Â#úÂ#ºýÂ!ÍÿÂ"kÂ!UÂ"Â#ŒÜÂÂ!áÂÂ"ÂâÂÂ#¬²õÂ#‡¶õÂ!v¸õÂ"ÿ¹õÂ!ïºõÂ"è¾õÂ#:•(Ã!ê™(Ã"š›(Ã#Ço[Ã#Ts[Ã!Uu[Ã"äv[Ã!.x[Ã"Õ|[Ã#ßKŽÃ!QŽÃ"ùRŽÃ#X)ÁÃ#`-ÁÃ!^/ÁÃ"¹1ÁÃ!Ä2ÁÃ"„6ÁÃ#NôÃ! ôÃ"À ôÃ'>ùÃahci ôLùÃkNùÃuhci_hcd:usb3 åRùÃTùÃeth1 ÍXùÃ#€ä&Ä#Rè&Ä!Úê&Ä"´ì&Ä!¶í&Ä"èñ&Ä#½YÄ!kÂYÄ"ÄYÄ#{›ŒÄ#\ŸŒÄ!E¡ŒÄ"1£ŒÄ!¤ŒÄ"z¨ŒÄ#w¿Ä!¥{¿Ä"…}¿Ä#ÀTòÄ#MXòÄ!-ZòÄ"û[òÄ!ë\òÄ"ç`òÄ#4%Å!ü8%Å"š:%Å\*Åahci ±k*Åòl*Åuhci_hcd:usb3 ã…È"1ç…È#ú¹¸È!ݾ¸ÈÁüÁõ©‹à‡îØF²ÿbÊ™HŽáÀ¸ÈÈ7ŸÇ>ÔÈ7Ѐ"áÀ¸È#˜ëÈ#ƒ›ëÈ!‡ëÈI¢ëÈltt-kconsumerd2%¨ëÈltt-kconsumerd2x"ϬëÈ!õ­ëÈ"?²ëȼ¶ëÈkworker/0:1ltt-kconsumerd2ÜÕëÈ·ÙëÈöÝëÈëÞëÈö€@ŽK=¿5àëÈâëÈHŽK=¿díëÈ>ïëÈÛ!ìÈu$ìÈ`-ý,ìÈp0 ltt-kconsumerdxHìȦJìÈP¥NìÈ£PìÈÝPEZìÈÝa\ìÈö§^ìÈ×aìȰÄ@ ÿÿÿÿÿÿÿÿ nìÈltt-kconsumerd2ÈpÙ}'‡xìÈltt-kconsumerd2kworker/0:1#esÉ!-zÉ"v|É#hQQÉ#ÝTQÉ!óVQÉ"ÖXQÉ!ÛYQÉ"g^QÉ#D-„É!Õ1„É"ô3„É#Ó·É#u ·É!v·É"·É!·É"W·É¬8¼Éahci }I¼ÉåJ¼Éuhci_hcd:usb3 §O¼É0Q¼Éeth1 (V¼É#æéÉ!,ëéÉ"líéÉ#èÁÊ#,ÆÊ!ÈÊ"ÊÊ!÷ÊÊ"˜ÏÊ#¡OÊ!ƒ¦OÊ"Z¨OÊ#~‚Ê#°€‚Ê!´‚‚Ê"g„‚Ê!]…‚Ê"‰‚Ê#ÁZµÊ!Œ_µÊ"!aµÊ# 7èÊ#&:èÊ!c<èÊ"é=èÊ!Ö>èÊ"ãCèÊ#^Ë!Ë"ÁË#NïMË#`òMË!=ôMË"ÕõMË!¿öMË"ÇúMË#{Í€Ë!Ò€Ë"½Ó€Ë#Ǭ³Ë#“°³Ë!m²³Ë"J´³Ë!Oµ³Ë"Ö¸³Ë#¾‡æË!?‹æË"ñŒæË#¤gÌ#+kÌ!mÌ"©nÌ!–oÌ"JsÌ#MCLÌ!-GLÌ"ILÌ#ÒÌ#S#Ì!3%Ì"¹&Ì!¦'Ì"<+Ì#Øú±Ì!Jþ±Ì"âÿ±Ì#Ä×äÌ#BÛäÌ!aÝäÌ"öÞäÌ!àßäÌ"?ääÌ#´Í!—·Í"P¹Í#”JÍ#¯—JÍ!¿™JÍ"E›JÍ!2œJÍ"7 JÍ#ùn}Í!‘s}Í"eu}Í#ÊI°Í#¢M°Í!”O°Í"›Q°Í!ŠR°Í"¿V°Í:µÍahci ÚµÍN‘µÍuhci_hcd:usb3 Ô•µÍu—µÍeth1 .œµÍ#ê'ãÍ!ú,ãÍ"./ãÍ#CÎ#¾Î!Ë Î"Q Î!8 Î"”Î#KÝHÎ!âHÎ"ŸãHÎ#À{Î#Ã{Î!ŽÅ{Î"Ç{Î! È{Î"ùÌ{Î#혮Î!ªœ®Î"Bž®Î#øwáÎ#¾{áÎ!ª}áÎ"láÎ!t€áÎ"O„áÎ#5VÏ!ÅYÏ"Z[Ï#2GÏ#6GÏ!H8GÏ"m:GÏ!W;GÏ"ï?GÏ#zÏ!‹zÏ")zÏ#xë¬Ï#óî¬Ï!ñð¬Ï"qò¬Ï!^ó¬Ï"~÷¬Ï#ÉßÏ!dÍßÏ"/ÏßÏ#o£Ð#Þ¦Ð!î¨Ð"¹ªÐ!Á«Ð"°Ð#ó~EÐ!ÖƒEÐ"¡…EÐ#²_xÐ#*cxÐ! exÐ"ºfxÐ!¡gxÐ"ÉkxÐ횈Ðahci Æ©ˆÐ(«ˆÐuhci_hcd:usb3 НˆÐŰˆÐeth1 uµˆÐ#™:«Ð! @«Ð"XB«ÐÉǵÐahci œÖµÐþ×µÐuhci_hcd:usb3 fܵСݵÐeth1 {âµÐ#ÄÞÐ#lÞÐ!sÞÐ"ÅÞÐ!² ÞÐ"S%ÞÐ#ÉöÑ!øúÑ"¢üÑ#ÔCÑ#–×CÑ!ÁÙCÑ"JÛCÑ!:ÜCÑ"$àCÑ#±vÑ!àµvÑ"u·vÑ#¯‹©Ñ#©Ñ!‘©Ñ"Ò’©Ñ!“©Ñ"˜©Ñ#miÜÑ!ðmÜÑ"‚oÜÑ#.BÒ#—EÒ!tGÒ"?IÒ!)JÒ"INÒ#ÔBÒ!{#BÒ":%BÒ#ûütÒ#uÒ!ûuÒ"ÉuÒ!ÎuÒ"µ uÒ#ÛÙ§Ò!Þ§Ò"8à§Ò#»¸ÚÒ#E¼ÚÒ!X¾ÚÒ"ÿ¿ÚÒ!dÁÚÒ"ÅÚÒ#¦“ Ó!k˜ Ó"?š Ó#q@Ó# u@Ó!7w@Ó"üx@Ó!z@Ó"Ó}@Ó#õOsÓ!œTsÓ"²VsÓ# +¦Ó#®.¦Ó!¦0¦Ó")2¦Ó!3¦Ó"$7¦Ó# ÙÓ!gÙÓ">ÙÓ#æ Ô#‹é Ô!¡ë Ô"Hí Ô!;î Ô"Oò Ô#›¿>Ô!„Ä>ÔÁüÁõ©‹à‡îØF²ÿbÊ™HŽsÆ>ÔÈ7¿Q•ÝÈ7à€"sÆ>Ô#õ qÔ#m¤qÔ!k¦qÔ‚­qÔltt-kconsumerd2DzqÔltt-kconsumerd2x"Œ·qÔ!µ¸qÔ"Ÿ¼qÔªÀqÔkworker/0:1ltt-kconsumerd2mëqÔƒðqÔöŸþqÔsrÔö€@ŽK=¿†rÔÃrÔHŽK=¿krÔ]rÔù^rÔarÔ€-ÖirÔH†0 ltt-kconsumerdƒrÔx…rÔp‰rÔËrÔÝpg™rÔÝe›rÔöƒžrÔº rÔö£rÔ¤rÔö€@ŽK=¿ ¦rÔé§rÔHŽK=¿¯±rÔ‰³rÔÌârÔZårÔp-€ìrÔx0 ltt-kconsumerd‰sÔsÔ`; sÔ sÔÝ`¢sÔÝysÔösÔ+sÔ°Ä@ ÿÿÿÿÿÿÿÿ5*sÔltt-kconsumerd2¹x)R'3sÔltt-kconsumerd2kworker/0:1#‹|¤Ô!Bƒ¤Ô"m…¤Ô#¿Z×Ô#1^×Ô!/`×Ô"Áa×Ô!´b×Ô"[g×Ô#7 Õ!Ù; Õ"È= Õ#¼=Õ#F=Õ!=Õ"¸=Õ!¥=Õ"•=Õ#NìoÕ!ÞïoÕ"pñoÕ#Í¢Õ#€Ð¢Õ!~Ò¢Õ" Ô¢Õ!÷Ô¢Õ"•Ù¢Õ#íªÕÕ!G®ÕÕ"°ÕÕ#B…Ö#™ˆÖ!‚ŠÖ" ŒÖ!Ö"0‘ÖãÖahci $Ö†Öuhci_hcd:usb3 ÖJÖeth1 ô"Ö#>b;Ö!±g;Ö"ˆi;Ö#C=nÖ#Ä@nÖ!¹BnÖ"´DnÖ!§EnÖ"åInÖ#¬¡Ö!> ¡Ö"Ó!¡Ö#aùÓÖ#6ýÓÖ! ÿÓÖ"ÞÔÖ!ãÔÖ"ÙÔÖ#åÖ×!€Û×"'Ý×#[±9×#ß´9×!+·9×"´¸9×!¡¹9×"*¾9×#OŒl×!öl×"²’l×#[nŸ×#–rŸ×! tŸ×",vŸ×!wŸ×"ÁzŸ×#JÒ×!ëNÒ×"€PÒ×#³"Ø#4&Ø!)(Ø"<*Ø!A+Ø"¶.Ø#[8Ø!S8Ø"f8Ø#¾ájØ#«åjØ!çjØ"GéjØ!4êjØ"„îjØ#z¾Ø!'ÃØ"ÅØ#™ÐØ#­œÐØ!ÃžÐØ"L ÐØ!9¡ÐØ"V¥ÐØ#©vÙ!V{Ù"÷|Ù#;O6Ù#¹R6Ù!®T6Ù"vV6Ù!uW6Ù">[6Ù#ó/iÙ!²4iÙ"D6iÙ#² œÙ#®œÙ!šœÙ"/œÙ!œÙ"ZœÙ# êÎÙ!³îÎÙ"TðÎÙ#ÆÚ#dÊÚ!bÌÚ"åÍÚ!ÏÎÚ"=ÓÚ#É£4Ú!<©4Ú"Ϊ4Ú#¡}gÚ#IgÚ!5ƒgÚ"Ê„gÚ!º…gÚ"Ô‰gÚ#Ú]šÚ!~bšÚ"dšÚ#¡8ÍÚ#g<ÍÚ!A>ÍÚ"è?ÍÚ!í@ÍÚ" EÍÚ#KÛ!ÈÛ"fÛ#Qð2Û#eô2Û!iö2Û"|ø2Û!‡ù2Û"Yý2Û#ÐeÛ!›ÔeÛ"ÖeÛ# ¬˜Û#¤¯˜Û!±˜Û"=³˜Û!-´˜Û"J¸˜Û#²ˆËÛ!MËÛ"9ËÛ#iþÛ#¤lþÛ!nþÛ"ppþÛ!rqþÛ"ÌtþÛ#¹C1Ü!„H1Ü"=J1Ü#ƒ!dÜ#%dÜ!'dÜ"Ó(dÜ!Õ)dÜ"•-dÜ#¬ú–Ü!\ÿ–Ü"ú—Ü#RÚÉÜ#úÝÉÜ!æßÉÜ"xáÉÜ!hâÉÜ"LæÉÜ?/ÏÜahci 3>Ïܳ?ÏÜuhci_hcd:usb3 9DÏÜtEÏÜeth1 JÏÜ#ˆµüÜ!˜ºüÜ"Þ¼üÜ#“/Ý#¦–/Ý!•˜/Ý"]š/Ý!e›/Ý"yŸ/Ý#çpbÝ!µubÝ"AwbÝ#M•ÝÁüÁõ©‹à‡îØF²ÿbÊ™HŽ“P•ÝÈ7»[éÈ7Ѐ#“P•Ý!ÚT•Ý[[•Ýltt-kconsumerd2Hb•Ýltt-kconsumerd2x"þf•Ý!$h•Ý"l•ݦp•Ýkworker/0:1ltt-kconsumerd2›•ÝõŸ•Ýö.£•Ý¥•Ýö€@ŽK=¿^¦•ÝM¨•ÝHŽK=¿õ´•Ýð¶•Ý_ö•Ýäø•Ý€-Q–ÝÀ‡0 ltt-kconsumerdÊ–ÝΖÝpâ!–ݶ#–ÝÝp™.–ÝÝŽ0–Ýö¶2–ÝU6–ݰÄ@ ÿÿÿÿÿÿÿÿ¾B–Ýltt-kconsumerd2wâ 4€'çL–Ýltt-kconsumerd2kworker/0:1#+ÈÝ!#2ÈÝ"o4ÈÝ#/ûÝ#× ûÝ!á ûÝ"ÜûÝ!ÌûÝ"ßûÝ#–æ-Þ!1ë-Þ"çì-Þ#QÁ`Þ#ÖÃ`Þ!àÅ`Þ"`Ç`Þ!PÈ`Þ"aÌ`Þ#"›“Þ!`Ÿ“Þ"û “Þ#–{ÆÞ#ÆÞ!!ÆÞ"΂ÆÞ!ЃÆÞ"®‡ÆÞ#¯WùÞ!6[ùÞ"Ñ\ùÞ#’4,ß#8,ß!:,ß"£;,ß!<,ß"ã@,ß#µ_ß!H_ß"_ß#Uð‘ß#ô‘ß! ö‘ß"í÷‘ß!Ýø‘ß"ëü‘ß#<ÉÄß!æÍÄß"uÏÄß#!§÷ß#Šª÷ß!…¬÷ß"S®÷ß!X¯÷ß"ý²÷ß#rƒ*à! ˆ*à"·‰*à#‚b]à#èe]à!ìg]à"oi]à!Yj]à"n]à#Ê:à!#?à"AàÜ’àuhci_hcd:usb4 á’àNâ’àeth0#Ùç’à Æè’à!Íê’à"ÿ’à‡Ä¦àahci DÔ¦à©Õ¦àuhci_hcd:usb3 Ú¦àUÛ¦àeth1 à¦à#kÃà#EÃà!…Ãà"ì Ãà!ß!Ãà"¼&Ãà#¥ùõà!Óþõà"×öà#ŒÒ(á#éÕ(á!ê×(á"mÙ(á!WÚ(á"tÞ(á#_°[á!'µ[á"Ѷ[á#ÍŽá#«‘Žá!—“Žá"וŽá!â–Žá"³›Žá#kÁá!+pÁá"ÀqÁá#ÃFôá#‰Jôá!™Lôá"^Nôá!`Oôá"³Sôá#ê$'â!Ž)'â"D+'â#(Zâ#”Zâ!¼Zâ"HZâ!kZâ"m Zâ#ÌÜŒâ!sáŒâ"MãŒâ#Bº¿â#Õ½¿â!â¿¿â"eÁ¿â!R¿â"cÆ¿â#Š™òâ!£žòâ"} òâ#ês%ã#ƒw%ã!™y%ã"^{%ã!i|%ã"’€%ã#×UXã!iZXã" \Xã#-‹ã#%1‹ã!&3‹ã"¬4‹ã!–5‹ã"§9‹ã#< ¾ã!õ¾ã"ƾã#>èðã#¼ëðã!Ãíðã"Lïðã!<ððã"¼ôðã#ïÃ#ä!ôÇ#ä"ŒÉ#ä#~ Vä#b¤Vä!T¦Vä"Ú§Vä!ͨVä"¬Vä#W‚‰ä!°†‰ä"Hˆ‰ä#[¼ä#è^¼ä!Ô`¼ä"`b¼ä!Mc¼ä"vg¼ä#’5ïä!]:ïä"<ïä#×"å#:"å!5"å"ë"å!Ø"å".#"å#£ñTå!MöTå"ß÷Tå#þчå#”Õ‡å!¤×‡å"-Ù‡å!Ú‡å"jÞ‡å#ö¨ºå!­ºå"䮺å#ÉŠíå#SŽíå!Wíå"Ú‘íå!Í’íå"f–íå#Xc æ!îf æ"§h æ#Ø?Sæ#VCSæ!TESæ"ÝFSæ!ÊGSæ"íKSæ#¡†æ!²"†æ"J$†æ#!ý¸æ#ƹæ!Ĺæ"k¹æ!m¹æ"{ ¹æ#ÀØëæ!ÊÝëæ" àëæ¬Èðæahci ^×ðæºØðæuhci_hcd:usb3 ÝðæBÞðæeth1 éâðæ#±ç#‚µç!È·ç"Ò¹ç!ݺç"0¿ç#¦‘Qç!ì–Qç"ê˜Qç#åk„ç#~o„ç!ˆq„ç"Ss„ç!Ut„ç"Ãx„ç#I·ç!ÄL·ç"eN·ç#ß'êç#“+êç!©-êç"q/êç!s0êç"u4êç#Æè!h è"÷ è#$ãOè#ÞæOè!ÓèOè"YêOè!FëOè"ÛïOè#ÜÀ‚è!ÌÄ‚è"dÆ‚è#›µè#þžµè!ÿ µè"Тµè!Õ£µè"ŧµè#§xèè!-}èè"È~èè#ìSé#mWé!VYé"![é!#\é"X`é#^2Né!¤7Né"N9NéH«[éahciÁüÁõ©‹à‡îØF²ÿbÊ™HŽÄ¹[éÈ74b¡ôÈ7à€ Ĺ[é~½[éuhci_hcd:usb3 ãÁ[éÃ[éeth1 ¹Ç[é#Qé#íé!!é‘éltt-kconsumerd2ò éltt-kconsumerd2x"¨%é!¶&é"‡+éh/ékworker/0:1ltt-kconsumerd2jNéBRéöUédWéö€@ŽK=¿YéñZéHŽK=¿ géiéœé  é-+¨éȇ0 ltt-kconsumerdVÂérÄé€YÈéTÊéÝ€4ÕéÝ2×éöTÙéQÜé°Ä@ ÿÿÿÿÿÿÿÿáèéltt-kconsumerd2ÛÉ{þ€'}òéltt-kconsumerd2kworker/0:1#“ë³é!qò³é"Ìô³é#ýËæé#oÏæé!mÑæé"öÒæé!àÓæé"xØæé#¥ê!+ªê">¬ê#GƒLê#цLê!ƈLê"mŠLê!r‹Lê"ûLê#Ç_ê!8dê"Üeê#É;²ê#>?²ê!9A²ê"C²ê! D²ê"«G²ê#úåê!\åê"0åê# õë#ùë!ûë"¨üë!’ýë"4ëÃaëahci IrëÌsëuhci_hcd:usb3 Oxëyëeth1 C~ë#³ÏJë!ùÔJë"ýÖJë#î²}ë#i¶}ë!g¸}ë"ê¹}ë!׺}ë"¿}ë#‰‹°ë!ð°ë"â’°ë#Ùgãë#Ekãë!Fmãë"oãë!pãë"'tãë#aBì!íFì"ŽHì—ìahci =¦ì·§ìuhci_hcd:usb3 %¬ìT­ìeth1 ²ì#¤%Iì#.)Iì!V+Iì"{-Iì!€.Iì" 2Iì#k|ì!ø|ì"œ|ì#Ú®ì#Þ®ì!óß®ì"ˆá®ì!uâ®ì"öå®ì#oºáì!ê½áì"²¿áì#^˜í#÷›í!ãí"iŸí!Y í"U¤í#VtGí!òwGí"ŠyGí#TQzí#±Tzí!²Vzí"}Xzí!Yzí"]zí#0)­í!Ï,­í"².­í#U àí#!àí!7àí"êàí!ìàí"¾àí#øèî!Ãíî"âïî#nÃEî#+ÇEî!/ÉEî"3ËEî! ÌEî"aÐEî#ª¢xî!¦xî"¨§xî#È|«î#.€«î!>‚«î"„«î!…«î"³ˆ«î#XÞî!?\Þî"×]Þî#f7ï#Þ:ï!ß<ï"k>ï!X?ï"ñBï#Dï!éDï"{Dï#¡ðvï#jôvï!eövï"øvï!ùvï"Åüvï#QÍ©ï!ªÑ©ï"NÓ©ï#¬¨Üï#¬Üï!þ­Üï"ɯÜï!˰Üï"[´ÜïÑmÞïuhci_hcd:usb4 orÞïÈsÞïeth0#€yÞï zÞï!\|Þï"YÞï#ö†ð!ÛŒð"ð#ZdBð#/hBð!BjBð" lBð!ýlBð"‰qBð#Ì?uð!*Euð"%Guð#ݨð#ñ¨ð!¹ ¨ð"´"¨ð!¤#¨ð"?(¨ð#úÚð!­þÚð"EÛð#oØ ñ#çÛ ñ!ÙÝ ñ"kß ñ!aà ñ"Bä ñ#Ÿ´@ñ!%¹@ñ"ƺ@ñ›üEñahci 7 Fñ“ Fñuhci_hcd:usb3 øFñ0Fñeth1 ×Fñ#´‘sñ#w•sñ!—sñ"™sñ!lšsñ"õžsñ#9l¦ñ!¡p¦ñ"Zr¦ñ#êGÙñ#wKÙñ!MÙñ"1OÙñ!*PÙñ"nTÙñ#†% ò!…) ò"+ ò#?ò#p?ò!w ?ò"9 ?ò!; ?ò"=?ò#uãqò!Ëçqò"¥éqò#ﺤò#y¾¤ò!†À¤ò"N¤ò!Päò"sǤò#zš×ò!”ž×ò"D ×ò#>{ ó#ž~ ó!–€ ó"^‚ ó!fƒ ó"#‡ ó#øS=ó!ÆX=ó"¦Z=ó#›0pó#14pó!D6pó"Ç7pó!±8pó"éÔô"[@Ôô#±õ#õ!õ"}õ!mõ"Ã!õ#ýõ9õ!;ú9õ"Äû9õ#Ðlõ#¯Ólõ!ŒÕlõ"Z×lõ!_Ølõ"Ülõ#«Ÿõ!…¯Ÿõ"±Ÿõ# ŠÒõ#¨Òõ!—Òõ"‘Òõ! ’Òõ"ß•Òõ#0eö!­iö"kö#°A8ö#‚E8ö!€G8ö" I8ö!óI8ö"òM8ö#ó kö!%kö"'kö#¯ýö#$žö!1žö"ížö!ïžö"¾ žö#þÚÐö!ŸßÐö"páÐö#Z¸÷#á»÷!ô½÷"†¿÷!sÀ÷"{Ä÷#–6÷!Lš6÷"ð›6÷#›qi÷#ui÷!wi÷"Žxi÷!xyi÷";}i÷#qLœ÷!Qœ÷"°Rœ÷#…*Ï÷#.Ï÷!0Ï÷"Ì1Ï÷!Ñ2Ï÷"š6Ï÷#°ø!H ø"ø#ƒå4ø#‹é4ø!žë4ø"„í4ø!wî4ø"”ò4ø#,Ágø!TÆgø"XÈgø#(šø#Ò šø!©¢šø"D¤šø!1¥šø"*©šø# {Íø!²€Íø"P‚Íø#Xù#—[ù!t]ù"6_ù! `ù" dù#ô03ù!é53ùë;3ùkworker/3:2+(x"#@3ù—D3ùkworker/0:1kworker/3:2+( R3ùkworker/3:2+(-¨ûÉ&c]3ùkworker/3:2+(kworker/0:1#¿fù#ïfù!/fù"Nfù!\fù"|"fù#bí˜ù!Bò˜ù"ïó˜ù#.ÍËù#ßÐËù!ÎÒËù"TÔËù!AÕËù"õØËù›CÑùahci ˆSÑùùTÑùuhci_hcd:usb3 mYÑùÉZÑùeth1 š_Ñù#©þù!!®þù"°þù#^ƒ1ú#3‡1ú!‰1ú"‹1ú!Œ1ú"é1ú#g`dú!¡edú"«gdú#]?—ú#ÚB—ú!ÞD—ú"‘F—ú!~G—ú"MK—ú#Êú!# Êú"Ç!ÊúŠ¢Ïúahci l±ÏúÔ²Ïúuhci_hcd:usb3 K·Ïú‰¸Ïúeth1 0½Ïú#‰øüú#üüú!5þüú"0ýú!5ýú"ýú#”Õ/û!qÚ/û"cÜ/û#³²bû#º¶bû!иbû"źbû!²»bû"Ï¿bû#œŒ•û!ã•û"“’•û#¥lÈû#VpÈû!irÈû"ItÈû!QuÈû"æyÈû#ËHûû!ÙLûû"gNûû#†%.ü#=).ü!+.ü"T-.ü!\..ü"{3.ü#Šÿ`ü!Îaü"Æaü#õß“ü#”ã“ü!ªå“ü"9ç“ü!bè“ü""ì“ü#wºÆü!÷¾Æü"˜ÀÆü#¾™ùü#3ùü!4Ÿùü"¹ ùü!¦¡ùü"l¥ùü#1t,ý!ªy,ý"E{,ýD.ýkworker/0:1bash2‹î.ýuhci_hcd:usb4 éó.ýWõ.ýeth0#û.ý ü.ý!þ.ý"/ýì~1ý;ËÒ1ý 0@dSêÿÕ1ý À@â2ýнíg ‘SêÿXg!2ýþÿÿÿÿÿÿÿ{%2ý "ÿÿÿÿ6+2ý ð hÈG2ý éígX!ìg°ÿÿÿÿÿÿÿp7hPpQ2ýþÿÿÿÿÿÿÿØj2ýl½íg°ÿÿÿÿÿÿÿp5hþw2ýíy2ýàòCêÿàòCêÿ°ÿÿÿÿÿÿÿp5h}2ýâ~2ý Ä“…2ý hO‡2ýÄÞˆ2ý«”2ýнígÄš2ýþÿÿÿÿÿÿÿ ¾2ý¾S h¾S hï÷CêÿÚÐ2ýÃÒ2ý˜ôCêÿ@ï÷Cêÿ Ú2ý@‰ë2ý0óCêÿ0óCêÿ¾S hÈ1h~í2ý2÷2ý (iøý2ý ° hJ3ý ð h0#3ý ð h#3ý h(2ÿÿÿÿ(+3ý h—.3ýÿþÿo)pÿýÿoP03ýÁüÁõ©‹à‡îØF²ÿbÊ™HŽ!;3ýÈ7¥·9ýÈ7À€!;3ýнígÿþÿop5hkE3ýþÿÿÿÿÿÿÿÏM3ýs) hs) h¿÷Cêÿ\3ý”^3ýhôCêÿ@¿÷Cêÿïc3ý@g3ýóCêÿóCêÿs) hÈ1hªi3ýÊm3ý °¯ òu3ý pËgów3ý Ìgð„3ý ‡†3ý ìg Þ3ý ìgž3ý0Ðìgÿþÿo)pÿýÿoL 3ýÒ°3ýнígÿþÿop5hæ·3ýþÿÿÿÿÿÿÿ-È3ýü& hü& h÷CêÿyÖ3ýeØ3ý8ôCêÿ@÷CêÿÝ3ý@ûá3ýÐòCêÿÐòCêÿread.so.È1hðã3ý9æ3ý "ÿÿÿÿì3ý   hQú3ý  ³!æ4ý °©gó4ý «gð14ý h4ý Ëg `œ4ý Ëgu*4ý 0Ëg 32ÿÿÿÿ124ý 0ËgGC4ýÿþÿo)pÿýÿoE4ý¼U4ýнígÿþÿop5hÇ\4ýþÿÿÿÿÿÿÿ…t4ýî· hî· h_÷CêÿЃ4ý×…4ýôCêÿ@_÷CêÿçŠ4ý@4ý òCêÿ òCêÿî· hÈ1h‘4ý›4ý 8(8{¢4ý €qgR¤4ý ‰gðç®4ý ±4ý ©gP2¾4ý ©gVÍ4ý `©g8H2ÿÿÿÿ+×4ý `©gÇé4ýÿþÿo)pÿýÿowë4ýÀ75ý "ÿÿÿÿ,>5ý h$R5ý "ÿÿÿÿîT5ý € h¦`5ý "ÿÿÿÿ^c5ý p hÕm5ýž‡ hp h"ÿÿÿÿq5ýž¼“6ý ©g@Øjsg/ªŸ6ý À6ý ËgªgñÇ6ý !7ý hk'ígö7ý Ø 7ý hÄ+k'ígØ%7ý O*7ýÚЉ hèüCêÿýCêÿk'íg‡ h@-7ýÚ2/7ýà‰ hýCêÿk'íg‡ hv07ýP27ýÊüCêÿ‰‡ h^67ýÊõÿÿÿÿÿÿÿ+H7ý °úCêÿ‡ h#J7ý L7ý !°úCêÿ‡ hhM7ý 3O7ýhûCêÿ‡ hUQ7ý«^7ýaüCêÿ‡ hòb7ýa®­8ý dðÅ`n©g`¼qgÁ¯8ý À@¿±8ý ÐBdÐBðÅ`n©g`¼qgo¶8ý ÐBà"9ý °ùCêÿ@ígÕ$9ý µ&9ý °ùCêÿ@ígÿ'9ý ¬q9ý)°n©g À@×…9ý)éˆ9ý* öCêÿn°n©g À@³9ý*þÿÿÿÿÿÿÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽF¶9ýÈ7N6>ýÈ7À€F¶9ý öCêÿ°n©g À@ÞÏ9ýšÔ9ý)ÿÿÿÿÿÿÿÿIà9ý)2â9ý*PøCêÿnÿÿÿÿÿÿÿÿÕ:ý*þÿÿÿÿÿÿÿ :ýPøCêÿÿÿÿÿÿÿÿÿ§:ýÕC:ýçõ…g¶S:ý„s:ýÀøCêÿÀøCêÿ ?v:ýØ|:ý "ÿÿÿÿ6‚:ý à h÷„:ýà h"ÿÿÿÿÙ“:ýAÔ:ýà hÌõÿÿÿÿÿÿðÍ@ U©g8×:ýÅÝ:ý°Ä@Ìõÿÿÿÿÿÿ°Ä@ U©g7á:ý&ã:ý à hÌõÿÿÿÿÿÿ°Ä@ U©g²ó:ý %/;ýl½ígp5hÃ9;ýÇ;;ýðCêÿðCêÿp5hã=;ýØ?;ý ÄPF;ý h-H;ýħI;ýÓS;ýнígÄTZ;ýþÿÿÿÿÿÿÿx;ýyC hyC hŸõCêÿŠ;ý{Œ;ýHòCêÿ@ŸõCêÿk“;ý@9˜;ýàðCêÿàðCêÿmpat.so.›;ýC¯;ý Èt º;ý Qg!¼;ý pQgð²Ç;ý Ë;ý `qg `†Õ;ý `qg¼ù;ý0Pnqgÿþÿo)pÿýÿoû;ý4 <ýнígÿþÿoÒ@N<ýþÿÿÿÿÿÿÿß<ýúD húD hÿòCêÿx+<ý‚-<ý¨ïCêÿ@ÿòCêÿ„4<ý@‹9<ý@îCêÿ@îCêÿúD hpÎ@ <<ý$C<ý Ðz!VM<ý €/gŸO<ý Ð0gð§Y<ý \<ý ÀPg @ág<ý ÀPgb}<ý àPgÐ2ÿÿÿÿ$…<ý àPg†˜<ý0ÎPgÿþÿo)pÿýÿo9š<ýTí<ý ÀPgx¹/g9“ö<ý 2 =ý `qg0QgÅ=ý &=ý hÄè÷Cêÿ0Qg!8=ý #W=ýl½ígp5hßa=ýÚc=ý ðCêÿ ðCêÿp5hÿe=ýîg=ý Äçn=ý hÁp=ýÄPr=ý}=ýнígÄ“ƒ=ýþÿÿÿÿÿÿÿŸ=ý¿> h¿> h/õCêÿ°®=ý“°=ýØñCêÿ@/õCêÿ ·=ý@ ¼=ýpðCêÿpðCêÿnss_nis.š¾=ýcÅ=ý ¸¤ ÎÏ=ý ÐgÕÑ=ý pgðÜ=ý ÑÞ=ý `/g |ç=ý `/g¸>ý0Pn/gÿþÿo)pÿýÿo’>ýi'>ýнígÿþÿo¸Ü@¿.>ýþÿÿÿÿÿÿÿÁüÁõ©‹à‡îØF²ÿbÊ™HŽ5>ýÈ7·§BýÈ7 z€5>ýôA hôA h_òCêÿxH>ý‚J>ýïCêÿ@_òCêÿQQ>ý@FV>ý íCêÿ íCêÿ_files.sÙ@›X>ýqg>ý ˆµ Rq>ý îf8s>ý ÀîfðU}>ý ›>ý °g  ©‰>ý °gˆ­>ý0H¾gÿþÿo)pÿýÿoY¯>ýûè>ý °g¨.îf7ò>ý >?ý `/g0íg+?ý >#?ý hÄx÷Cêÿ0íg¼5?ý U?ýN[Qg¶=c?ýv?ýy?ý„?ýÐøCêÿÐøCêÿ‡?ý‰?ý Äë?ý à hI“?ýÄœ”?ýÄŸ@ý à hÄ@æ@àr/g24@ý › @ýÄ@æ@àr/g2@ýJ@ýs¨ÿÿÿÿÿÿÿÓ@ýsù@ýs@æ@`n©gÈn©gm @ýs &@ýf`n©gÈn©g*'@ýf°4@ý h/lttng/cÈn©gœE@ý~@ýê@¶wŸ@ý¤Õ@ýàóCêÿàóCêÿÿÿÿÐôCêÿ8Ø@ýÚ@ý "ÿÿÿÿvß@ý à hâ@ýà h"ÿÿÿÿòð@ýÞþ@ýà h U©gÐôCêÿ“Aý›Aýë@‡ hÐôCêÿŽ Aý¤Aý à h‡ hÐôCêÿ Aý C6AýN[Qg¶š?Aý¬BAýkDAýhGAýøCêÿøCêÿxIAýgKAý ĬQAý à h}SAýÄâTAýÄpAý à hÄ0ê@™™™™™™™àr/g2Q”Aý ¯–AýÄ0ê@™™™™™™™àr/g2šAýÄžAýs¨ÿÿÿÿÿÿÿ™™™™™™™ AýsZ¢Aýsê@`n©g™™™™™™™ê@£Aýsç¥Aýf`n©g™™™™™™™ê@õ¦Aýfµ­Aý)ê@«ºAý)öÆAý*ÀúCêÿnI uäAýltt-sessiond2îéAý*;ñAý.ðúCêÿ ºBý. > Bý/ðúCêÿ3Býlttng2¬Ú'Ù”'ì$Býlttng2kworker/0:1 IBýlttng2xPBýkworker/0:1lttng2ÖUBýlttng2w žæ”'E\Býlttng2kworker/0:1ÁüÁõ©‹à‡îØF²ÿbÊ™HŽó’ÚiÉ7¼“ÚiÉ7À€babeltrace-1.2.1/tests/ctf-traces/succeed/env-warning/0000755000175000017500000000000011712335632017646 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/env-warning/dummystream0000644000175000017500000050000011561113741022050 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d¨ÿakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8ÁüÁ*d"ÐlîàŒË׳¥dxÿlibpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0ÁüÁ*d"ÐlîàŒË׳¥dàÿlibgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonÁüÁ*d"ÐlîàŒË׳¥dàÿenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4ÁüÁ*d"ÐlîàŒË׳¥dpëlibplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsbabeltrace-1.2.1/tests/ctf-traces/succeed/env-warning/metadata0000644000175000017500000000103211712335632021265 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; env { dummy = "blah"; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/succeed1/0000755000175000017500000000000011716210715017105 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/succeed1/dummystream0000644000175000017500000050000011561113354021311 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d¨ÿakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8ÁüÁ*d"ÐlîàŒË׳¥dxÿlibpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0ÁüÁ*d"ÐlîàŒË׳¥dàÿlibgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonÁüÁ*d"ÐlîàŒË׳¥dàÿenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4ÁüÁ*d"ÐlîàŒË׳¥dpëlibplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsbabeltrace-1.2.1/tests/ctf-traces/succeed/succeed1/metadata0000644000175000017500000000075011616277727020551 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/succeed3/0000755000175000017500000000000012301702604017101 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/succeed3/dummystream0000644000175000017500000050000012272477052021323 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d¨ÿakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8ÁüÁ*d"ÐlîàŒË׳¥dxÿlibpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0ÁüÁ*d"ÐlîàŒË׳¥dàÿlibgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonÁüÁ*d"ÐlîàŒË׳¥dàÿenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4ÁüÁ*d"ÐlîàŒË׳¥dpëlibplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsbabeltrace-1.2.1/tests/ctf-traces/succeed/succeed3/metadata0000644000175000017500000000106312301702604020524 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 0; minor = 1; test = "\""; test2 = "?\x20\040?"; test3 = '\n'; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; }; event { name = string; fields := struct { string str; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/0000755000175000017500000000000012304150543017215 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/channel0_10000644000175000017500000001000012304150543020757 00000000000000ÁüÁY#3äNÙ¯z¶RCºšˆ5 =“S5 €babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/channel0_20000644000175000017500000001000012304150543020760 00000000000000ÁüÁY#3äNÙ¯z¶RCºš ñ#5 E“S5 (€uÒi5 ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<`f^ ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<ÀÒ{ ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<`Ƙ ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<@°µ ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<@¾Ò ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<Öð ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2< +ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<à%+ÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2< Hÿÿÿÿþÿÿÿýÿÿÿüÿÿÿûÿÿÿúÿÿÿ (2<babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/channel0_00000644000175000017500000001000012304150543020756 00000000000000ÁüÁY#3äNÙ¯z¶RCºš‡5 \“S5 €babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/metadata0000644000175000017500000000543012304150543020642 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; } := uint16_t; typealias integer { size = 32; align = 8; signed = false; } := uint32_t; typealias integer { size = 64; align = 8; signed = false; } := uint64_t; typealias integer { size = 64; align = 8; signed = false; } := unsigned long; typealias integer { size = 5; align = 1; signed = false; } := uint5_t; typealias integer { size = 27; align = 1; signed = false; } := uint27_t; trace { major = 1; minor = 8; uuid = "59052333-e490-4ed9-af7a-b652437fba9a"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; uint32_t stream_id; }; }; env { hostname = "host"; domain = "ust"; tracer_name = "lttng-ust"; tracer_major = 2; tracer_minor = 3; }; clock { name = monotonic; uuid = "5f3ed925-9d73-4637-b8e4-02077abc8c8f"; description = "Monotonic Clock"; freq = 1000000000; /* Frequency, in Hz */ /* clock value offset from Epoch is: offset * (1/freq) */ offset = 1375437179542680815; }; typealias integer { size = 27; align = 1; signed = false; map = clock.monotonic.value; } := uint27_clock_monotonic_t; typealias integer { size = 32; align = 8; signed = false; map = clock.monotonic.value; } := uint32_clock_monotonic_t; typealias integer { size = 64; align = 8; signed = false; map = clock.monotonic.value; } := uint64_clock_monotonic_t; struct packet_context { uint64_clock_monotonic_t timestamp_begin; uint64_clock_monotonic_t timestamp_end; uint64_t content_size; uint64_t packet_size; unsigned long events_discarded; uint32_t cpu_id; }; struct event_header_compact { enum : uint5_t { compact = 0 ... 30, extended = 31 } id; variant { struct { uint27_clock_monotonic_t timestamp; } compact; struct { uint32_t id; uint64_clock_monotonic_t timestamp; } extended; } v; } align(8); struct event_header_large { enum : uint16_t { compact = 0 ... 65534, extended = 65535 } id; variant { struct { uint32_clock_monotonic_t timestamp; } compact; struct { uint32_t id; uint64_clock_monotonic_t timestamp; } extended; } v; } align(8); stream { id = 0; event.header := struct event_header_compact; packet.context := struct packet_context; }; event { name = "sequence event"; id = 0; stream_id = 0; loglevel = 1; fields := struct { integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } __seq_int_field_length; integer { size = 32; align = 8; signed = 1; encoding = none; base = 10; } _seq_int_field[ __seq_int_field_length ]; integer { size = 64; align = 8; signed = 0; encoding = none; base = 10; } __seq_long_field_length; integer { size = 64; align = 8; signed = 1; encoding = none; base = 10; } _seq_long_field[ __seq_long_field_length ]; }; }; babeltrace-1.2.1/tests/ctf-traces/succeed/sequence/channel0_30000644000175000017500000001000012304150543020761 00000000000000ÁüÁY#3äNÙ¯z¶RCºšö|+5 ”“S5 €babeltrace-1.2.1/tests/ctf-traces/succeed/warnings/0000755000175000017500000000000011710667411017244 500000000000000babeltrace-1.2.1/tests/ctf-traces/succeed/warnings/dummystream0000644000175000017500000050000011561113354021445 00000000000000ÁüÁ*d"ÐlîàŒË׳¥d¨ÿakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8ÁüÁ*d"ÐlîàŒË׳¥dxÿlibpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0ÁüÁ*d"ÐlîàŒË׳¥dàÿlibgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4libplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsakonadialsa-libaoapache2apr-util-1aptaqbankingaspellat-spiattica_kde.soAuErrorDBavahiavogadro-kalziumawkbabl-0.0bluetoothbonobobonobo-activationbrasero-0cacacgi-bincheesecliclisp-2.48colorblind-appletcommon-lispcompat-ldConsoleKitcoreutilscrt1.ocrti.ocrtn.ocruftcuneiformcupscups-pk-helperdbus-1.0debugdefault.sfxdeskbar-appletdiadirectfb-1.2-9dirmngrdpkgdrie2initrd_helperejectemacsen-commonÁüÁ*d"ÐlîàŒË׳¥dàÿenchanteogepiphany-browseretherbootevinceevolutionevolution-data-server-1.2evolution-webcalexim4farsight2-0.0fast-user-switch-appletfile-rollerfirefoxflashplugin-nonfreefreerdpgccgcjgcj-4.4-10gconvgcrt1.ogdmgedit-2gegl-0.0geocluegettextgfaxggighostscriptgimpgiogirepository-1.0git-coreglade3glib-2.0gnashgnome-appletsgnome-bluetoothgnome-disk-utilitygnome-gamesgnome-keyringgnome-netstatusgnome-panelgnome-power-managergnome-screensavergnome-sessiongnome-settings-daemongnome-settings-daemon-2.0gnome-user-sharegnome-utilsgnome-vfs-2.0gnucashgnupggnupg2gofficegold-ldgoogle-gadgetsGraphicsMagick-1.3.12graphvizgrubgrub-legacygstreamer-0.10gstreamer0.10gtk-2.0gutenprintgvfsgwenhywfarhalhamster-applethsfmodemhtdightdig_dbiceapeicedoveiceweaselImageMagick-6.6.0ispelljnijvmkconf_update_binkde4klibckrb5lapackldscriptsliba52-0.7.4.solibaa.so.1libaa.so.1.0.4libakonadi-contact.so.4libakonadi-contact.so.4.4.0libakonadi-kabc.so.4libakonadi-kabc.so.4.4.0libakonadi-kcal_next.so.4libakonadi-kcal_next.so.4.4.0libakonadi-kcal.so.4libakonadi-kcal.so.4.4.0libakonadi-kde.so.4libakonadi-kde.so.4.4.0libakonadi-kmime.so.4libakonadi-kmime.so.4.4.0libakonadi_next.so.4libakonadi_next.so.4.4.0libakonadiprivate.so.1libakonadiprivate.so.1.3.1libakonadiprotocolinternals.so.1libakonadiprotocolinternals.so.1.3.1libakonadi-xml.so.4libakonadi-xml.so.4.4.0libakregatorinterfaces.so.4libakregatorinterfaces.so.4.4.0libakregatorprivate.so.4libakregatorprivate.so.4.4.0libanalitzagui.so.4libanalitzagui.so.4.4.0libanalitza.so.4libanalitza.so.4.4.0libanl.alibanl.solibantlr.so.4libantlr.so.4.4.0libao.so.4libao.so.4.0.0libapm.so.1libapm.so.1.0.0libapr-1.so.0libapr-1.so.0.4.2libaprutil-1.so.0libaprutil-1.so.0.3.9libapt-inst.so.1.2libapt-inst.so.1.2.0libapt-pkg.so.4.10libapt-pkg.so.4.10.1libaqbanking.so.29libaqbanking.so.29.2.4libaqhbci.so.17libaqhbci.so.17.0.0libaqnone.so.29libaqnone.so.29.2.4libaqofxconnect.so.5libaqofxconnect.so.5.0.0libarchive.so.1libarchive.so.2libarchive.so.2.8.4libart_lgpl_2.so.2libart_lgpl_2.so.2.3.21libartsc.so.0libartsc.so.0.0.0libasound.so.2libasound.so.2.0.0libaspell.so.15libaspell.so.15.1.4libasprintf.alibasprintf.solibasprintf.so.0libasprintf.so.0.0.0libass.so.4libass.so.4.0.0libasyncns.so.0libasyncns.so.0.1.0libatk-1.0.alibatk-1.0.lalibatk-1.0.solibatk-1.0.so.0libatk-1.0.so.0.3009.1libatkmm-1.6.so.1libatkmm-1.6.so.1.1.0libattica.so.0libattica.so.0.1.4libaudiocdplugins.so.4libaudiocdplugins.so.4.4.0libaudiofile.so.0libaudiofile.so.0.0.2libaudio.so.2libaudio.so.2.4libavahi-client.so.3libavahi-client.so.3.2.7libavahi-common.so.3libavahi-common.so.3.5.2libavahi-core.so.7libavahi-core.so.7.0.0libavahi-glib.so.1libavahi-glib.so.1.0.2libavahi-gobject.so.0libavahi-gobject.so.0.0.2libavahi-ui.so.0libavahi-ui.so.0.1.2libavc1394.so.0libavc1394.so.0.3.0libavcall.so.0libavcall.so.0.0.0libavcodec.so.52libavcodec.so.52.97.2libavcore.so.0libavcore.so.0.14.0libavformat.so.52libavformat.so.52.87.1libavogadro-kalzium.so.0libavogadro-kalzium.so.0.9.3libavutil.so.49libavutil.so.49.15.0libavutil.so.50libavutil.so.50.33.0libbabl-0.0.so.0libbabl-0.0.so.0.22.0libbfd-2.20.1-system.20100303.solibbind9.so.60libbind9.so.60.0.4libblaslibblas.so.3gflibbluetooth.so.3libbluetooth.so.3.8.0libbonobo-2.so.0libbonobo-2.so.0.0.0libbonobo-activation.so.4libbonobo-activation.so.4.0.0libbonoboui-2.so.0libbonoboui-2.so.0.0.0libboost_date_time.so.1.42.0libboost_iostreams.so.1.42.0libboost_program_options.so.1.42.0libboost_python-py25.so.1.42.0libboost_python-py26.so.1.42.0libboost_thread.so.1.42.0libBPM.so.1libBPM.so.1.0.0libbrasero-burn.so.0libbrasero-burn.so.0.2.0libbrasero-media.so.0libbrasero-media.so.0.2.0libbrasero-utils.so.0libbrasero-utils.so.0.2.0libbrcomplpr2.solibBrokenLocale.alibBrokenLocale.solibbrscandec2.so.1libbrscandec3.solibbrscandec3.so.1libbrscandec3.so.1.0.0libbs2b.so.0libbs2b.so.0.0.0libbsd-compat.alibburn.so.4libburn.so.4.45.0libc.alibcaca.so.0libcaca++.so.0libcaca.so.0.99.17libcaca++.so.0.99.17libcairo.alibcairo.lalibcairomm-1.0.so.1libcairomm-1.0.so.1.4.0libcairo.solibcairo.so.2libcairo.so.2.10800.10libcallback.so.0libcallback.so.0.0.0libcamel-1.2.so.14libcamel-1.2.so.14.0.1libcamel-provider-1.2.so.14libcamel-provider-1.2.so.14.0.1libcanberra-0.24libcanberra-gtk.so.0libcanberra-gtk.so.0.1.6libcanberra.so.0libcanberra.so.0.2.3libcantor_config.solibcantorlibs.so.0.0.1libcantorlibs.so.1libcap-ng.so.0libcap-ng.so.0.0.0libcdaudio.so.1libcdaudio.so.1.0.0libcdda_interface.so.0libcdda_interface.so.0.10.2libcdda_paranoia.so.0libcdda_paranoia.so.0.10.2libcdio_cdda.so.0libcdio_cdda.so.0.0.5libcdio_paranoia.so.0libcdio_paranoia.so.0.0.3libcdio.so.10libcdio.so.10.0.0libcdt.so.4libcdt.so.4.0.0libcelt0.so.0libcelt0.so.0.0.0libcfitsio.so.3libcfitsio.so.3.240libcgraph.so.5libcgraph.so.5.0.0libchamplain-0.4.so.0libchamplain-0.4.so.0.3.3libchamplain-gtk-0.4.so.0libchamplain-gtk-0.4.so.0.3.3libcheese-gtk.so.18libcheese-gtk.so.18.0.0libchromeXvMCPro.solibchromeXvMCPro.so.1libchromeXvMCPro.so.1.0.0libchromeXvMC.solibchromeXvMC.so.1libchromeXvMC.so.1.0.0libcidn.solibck-connector.so.0libck-connector.so.0.0.0libcln.so.6libcln.so.6.0.1libclucene.so.0libclucene.so.0.0.0libclutter-glx-1.0.so.0libclutter-glx-1.0.so.0.200.12libclutter-gtk-0.10.so.0libclutter-gtk-0.10.so.0.0.0libc_nonshared.alibcolamd.so.2.7.1libcolorblind.so.0libcolorblind.so.0.0.1libcompoundviewer.so.4libcompoundviewer.so.4.4.0libcpufreq.so.0libcpufreq.so.0.0.0libcrmf.alibcroco-0.6.so.3libcroco-0.6.so.3.0.1libcrypt.alibcrypto.so.0.9.8libcryptsetup.solibcryptsetup.so.1libcryptsetup.so.1.0.0libcrypt.solibcryptui.so.0libcryptui.so.0.0.0libc.solibcspi.so.0libcspi.so.0.10.11libcucul.so.0libcucul++.so.0libcucul.so.0.99.17libcucul++.so.0.99.17libcupscgi.so.1libcupsdriver.so.1libcupsimage.so.2libcupsmime.so.1libcupsppdc.so.1libcups.so.2libcurl-gnutls.so.3libcurl-gnutls.so.4libcurl-gnutls.so.4.2.0libcurl.so.3libcurl.so.4libcurl.so.4.2.0libcurses.alibcurses.solibcwidget.so.3libcwidget.so.3.0.0libdaemon.so.0libdaemon.so.0.5.0libdatrie.so.1libdatrie.so.1.1.0libdb-4.6.solibdb-4.7.solibdb-4.8.solibdb_java-4.7_g.solibdb_java-4.7.solibdbus-glib-1.so.2libdbus-glib-1.so.2.1.0libdc1394.so.22libdc1394.so.22.1.4libdca.so.0libdca.so.0.0.0libdirac_decoder.so.0libdirac_decoder.so.0.1.0libdirac_encoder.so.0libdirac_encoder.so.0.1.0libdirect-1.2.so.9libdirect-1.2.so.9.0.1libdirectfb-1.2.so.9libdirectfb-1.2.so.9.0.1libdiscid.so.0libdiscid.so.0.2.1libdiscover.so.2libdiscover.so.2.0.1libdjvulibre.so.21libdjvulibre.so.21.2.0libdl.alibdl.solibdmraid.alibdmraid.solibdmx.so.1libdmx.so.1.0.0libdns.so.69libdns.so.69.1.2libdolphinprivate.so.4libdolphinprivate.so.4.4.0libdotconf-1.0.so.0libdotconf-1.0.so.0.10.4libdrm_intel.so.1libdrm_intel.so.1.0.0libdrm_nouveau.so.1libdrm_nouveau.so.1.0.0libdrm_radeon.so.1libdrm_radeon.so.1.0.0libdrm.so.2libdrm.so.2.4.0libdvdnavmini.so.4libdvdnavmini.so.4.1.3libdvdnav.so.4libdvdnav.so.4.1.3libdvdread.so.4libdvdread.so.4.1.3libdv.so.4libdv.so.4.0.3libebackend-1.2.so.0libebackend-1.2.so.0.0.1libebook-1.2.so.9libebook-1.2.so.9.3.1libecal-1.2.so.7libecal-1.2.so.7.2.2libedata-book-1.2.so.2libedata-book-1.2.so.2.4.1libedata-cal-1.2.so.7libedata-cal-1.2.so.7.0.0libedataserver-1.2.so.13libedataserver-1.2.so.13.0.1libedataserverui-1.2.so.8libedataserverui-1.2.so.8.1.1libedit.so.2libedit.so.2.11libeet.so.1libeet.so.1.3.2libeggdbus-1.so.0libeggdbus-1.so.0.0.0libegroupwise-1.2.so.13libegroupwise-1.2.so.13.0.1libeina-ver-svn-06.so.0libeina-ver-svn-06.so.0.9.9libelf-0.148.solibelf.so.1libenca.so.0libenca.so.0.5.1libenchant.so.1libenchant.so.1.6.0libepc-1.0.so.2libepc-1.0.so.2.0.0libepc-ui-1.0.so.2libepc-ui-1.0.so.2.0.0libept.so.1libept.so.1.0.4libesd.so.0libesd.so.0.2.39libespeak.so.1libespeak.so.1.1.43libevdocument.so.2libevdocument.so.2.0.0libevent-1.4.so.2libevent-1.4.so.2.1.3libevview.so.2libevview.so.2.0.0libexempi.so.3libexempi.so.3.2.1libexif.so.12libexif.so.12.3.1libexiv2.so.9libexiv2.so.9.0.0libexpat.alibexpat.lalibexpat.solibexpat.so.1libexpat.so.1.5.2libexpatw.alibexpatw.lalibexpatw.solibexpatw.so.1libexpatw.so.1.5.2libexslt.so.0libexslt.so.0.8.15libfaac.so.0libfaac.so.0.0.0libfaad.so.2libfaad.so.2.0.0libfakerootlibfam.so.0libfam.so.0.0.0libffi.so.5libffi.so.5.0.10libfftw3f.so.3libfftw3f.so.3.2.4libfftw3f_threads.so.3libfftw3f_threads.so.3.2.4libfftw3l.so.3libfftw3l.so.3.2.4libfftw3l_threads.so.3libfftw3l_threads.so.3.2.4libfftw3.so.3libfftw3.so.3.2.4libfftw3_threads.so.3libfftw3_threads.so.3.2.4libfl.alibFLAC++.so.6libFLAC++.so.6.2.0libFLAC.so.8libFLAC.so.8.2.0libflite_cmulex.so.1libflite_cmulex.so.1.4libflite_cmu_time_awb.so.1libflite_cmu_time_awb.so.1.4libflite_cmu_us_awb.so.1libflite_cmu_us_awb.so.1.4libflite_cmu_us_kal16.so.1libflite_cmu_us_kal16.so.1.4libflite_cmu_us_kal.so.1libflite_cmu_us_kal.so.1.4libflite_cmu_us_rms.so.1libflite_cmu_us_rms.so.1.4libflite_cmu_us_slt.so.1libflite_cmu_us_slt.so.1.4libflite.so.1libflite.so.1.4libflite_usenglish.so.1libflite_usenglish.so.1.4libfl_pic.alibfl.solibfontconfig.alibfontconfig.solibfontconfig.so.1libfontconfig.so.1.4.4libfontenc.so.1libfontenc.so.1.0.0libform.alibform.solibform.so.5libform.so.5.7libformw.so.5libformw.so.5.7libfreerdpchanman.so.0libfreerdpchanman.so.0.0.0libfreerdpkbd.so.0libfreerdpkbd.so.0.0.0libfreerdp.so.0libfreerdp.so.0.0.0libfreetype.alibfreetype.lalibfreetype.solibfreetype.so.6libfreetype.so.6.6.0libfribidi.so.0libfribidi.so.0.3.1libFS.so.6libFS.so.6.0.0libfuse.alibfuse.lalibfuse.solibfuse.so.2libfuse.so.2.8.4libfusion-1.2.so.9libfusion-1.2.so.9.0.1libg.alibgadu.so.3libgadu.so.3.10.0libgailutil.so.18libgailutil.so.18.0.1libgalago.so.3libgalago.so.3.0.0libgccpp.so.1libgccpp.so.1.0.2libgcj_bc.so.1libgcj.so.10libgcj.so.10.0.0libgcj-tools.so.10libgcj-tools.so.10.0.0libgconf2-4libgconf-2.so.4libgconf-2.so.4.1.5libgcr.so.0libgcr.so.0.0.0libgcrypt.so.11libgcrypt.so.11.5.3libgc.so.1libgc.so.1.0.2libgdata-1.2.so.1libgdata-1.2.so.1.0.0libgdata-google-1.2.so.1libgdata-google-1.2.so.1.0.0libgdata.so.7libgdata.so.7.2.0libgdbm_compat.so.3libgdbm_compat.so.3.0.0libgdbm.so.3libgdbm.so.3.0.0libgdict-1.0.so.6libgdict-1.0.so.6.0.7libgdkglext-x11-1.0.so.0libgdkglext-x11-1.0.so.0.0.0libgdkmm-2.4.so.1libgdkmm-2.4.so.1.1.0libgdk_pixbuf-2.0.alibgdk_pixbuf-2.0.lalibgdk_pixbuf-2.0.solibgdk_pixbuf-2.0.so.0libgdk_pixbuf-2.0.so.0.2000.1libgdk_pixbuf_xlib-2.0.alibgdk_pixbuf_xlib-2.0.lalibgdk_pixbuf_xlib-2.0.solibgdk_pixbuf_xlib-2.0.so.0libgdk_pixbuf_xlib-2.0.so.0.2000.1libgdk-x11-2.0.alibgdk-x11-2.0.lalibgdk-x11-2.0.solibgdk-x11-2.0.so.0libgdk-x11-2.0.so.0.2000.1libgd.so.2libgd.so.2.0.0libgdu-gtk.so.0libgdu-gtk.so.0.0.0libgdu.so.0libgdu.so.0.0.0libgee.so.2libgee.so.2.0.0libgegl-0.0.so.0libgegl-0.0.so.0.22.0libgeoclue.so.0libgeoclue.so.0.0.0libGeoIP.so.1libGeoIP.so.1.4.7libGeoIPUpdate.so.0libGeoIPUpdate.so.0.0.0libgettextlib-0.18.1.solibgettextlib.solibgettextpo.alibgettextpo.solibgettextpo.so.0libgettextpo.so.0.5.1libgettextsrc-0.18.1.solibgettextsrc.solibgexiv2.so.0libgexiv2.so.0.0.0libgfortran.so.3libgfortran.so.3.0.0libggadget-1.0.so.0libggadget-1.0.so.0.0.0libggadget-dbus-1.0.so.0libggadget-dbus-1.0.so.0.0.0libggadget-js-1.0.so.0libggadget-js-1.0.so.0.0.0libggadget-npapi-1.0.so.0libggadget-npapi-1.0.so.0.0.0libggadget-qt-1.0.so.0libggadget-qt-1.0.so.0.0.0libggadget-xdg-1.0.so.0libggadget-xdg-1.0.so.0.0.0libggi.so.2libggi.so.2.0.2libggiwmh.so.0libggiwmh.so.0.0.3libgg.so.1libgg.so.1.0.0libgif.so.4libgif.so.4.1libgif.so.4.1.6libgii.so.1libgii.so.1.0.0libgij.so.10libgij.so.10.0.0libgimp-2.0.so.0libgimp-2.0.so.0.600.10libgimpbase-2.0.so.0libgimpbase-2.0.so.0.600.10libgimpcolor-2.0.so.0libgimpcolor-2.0.so.0.600.10libgimpconfig-2.0.so.0libgimpconfig-2.0.so.0.600.10libgimpmath-2.0.so.0libgimpmath-2.0.so.0.600.10libgimpmodule-2.0.so.0libgimpmodule-2.0.so.0.600.10libgimpthumb-2.0.so.0libgimpthumb-2.0.so.0.600.10libgimpui-2.0.so.0libgimpui-2.0.so.0.600.10libgimpwidgets-2.0.so.0libgimpwidgets-2.0.so.0.600.10libgio-2.0.alibgio-2.0.lalibgio-2.0.solibgio-2.0.so.0libgio-2.0.so.0.2400.2libgiomm-2.4.so.1libgiomm-2.4.so.1.3.0libgirepo-Gdk-custom.so.0libgirepo-Gdk-custom.so.0.0.0libgirepo-Gtk-custom.so.0libgirepo-Gtk-custom.so.0.0.0libgirepository-1.0.so.0libgirepository-1.0.so.0.0.0libgksulibgksu2.so.0libgksu2.so.0.0.2libgladelibglade-2.0.so.0libglade-2.0.so.0.0.7libgle.so.3libgle.so.3.1.0libglib-2.0.alibglib-2.0.lalibglib-2.0.solibglibmm-2.4.so.1libglibmm-2.4.so.1.3.0libglibmm_generate_extra_defs-2.4.so.1libglibmm_generate_extra_defs-2.4.so.1.3.0libGL.so.1libGL.so.1.2libGLU.so.1libGLU.so.1.3.070701libglut.so.3libglut.so.3.9.0libgme.so.0libgme.so.0.5.3libgmime-2.4.so.2libgmime-2.4.so.2.4.14libgmodule-2.0.alibgmodule-2.0.lalibgmodule-2.0.solibgmodule-2.0.so.0libgmodule-2.0.so.0.2400.2libgmp.so.3libgmp.so.3.5.2libgnome-2.so.0libgnome-2.so.0.3000.0libgnome-bluetooth.so.7libgnome-bluetooth.so.7.0.2libgnomecanvas-2.so.0libgnomecanvas-2.so.0.3000.1libgnome-desktop-2.so.17libgnome-desktop-2.so.17.1.0libgnomekbd.so.4libgnomekbd.so.4.1.0libgnomekbdui.so.4libgnomekbdui.so.4.1.0libgnome-keyring.so.0libgnome-keyring.so.0.1.1libgnome-mag.so.2libgnome-mag.so.2.4.1libgnome-media-profiles.so.0libgnome-media-profiles.so.0.0.0libgnome-menu.so.2libgnome-menu.so.2.4.8libgnomespeech.so.7libgnomespeech.so.7.0.1libgnomeui-2.so.0libgnomeui-2.so.0.2400.3libgnomevfs-2.so.0libgnomevfs-2.so.0.2400.3libgnome-window-settings1libgnome-window-settings.so.1libgnome-window-settings.so.1.0.0libgnutls-extra.so.26libgnutls-extra.so.26.14.12libgnutls-openssl.so.26libgnutls-openssl.so.26.14.12libgnutls.so.26libgnutls.so.26.14.12libgobject-2.0.alibgobject-2.0.lalibgobject-2.0.solibgobject-2.0.so.0libgobject-2.0.so.0.2400.2libgoffice-0.8.so.8libgoffice-0.8.so.8.0.8libgomp.so.1libgomp.so.1.0.0libgoocanvas.so.3libgoocanvas.so.3.4.0libgp11.so.0libgp11.so.0.0.0libgpg-error.so.0libgpg-error.so.0.4.0libgpgme-pthread.so.11libgpgme-pthread.so.11.7.0libgpgme++-pthread.so.2libgpgme++-pthread.so.2.4.0libgpgme-pth.so.11libgpgme-pth.so.11.7.0libgpgme++-pth.so.2libgpgme++-pth.so.2.4.0libgpgme.so.11libgpgme.so.11.7.0libgpgme++.so.2libgpgme++.so.2.4.0libgphoto2libgphoto2_portlibgphoto2_port.so.0libgphoto2_port.so.0.8.0libgphoto2.so.2libgphoto2.so.2.4.0libgpm.so.2libgpm.so.2.0.0libgpod.so.4libgpod.so.4.2.0libgpsd.so.0libgpsd.so.0.0.0libgps.so.19libgps.so.19.0.0libGraphicsMagick.so.3libGraphicsMagick++.so.3libGraphicsMagick++.so.3.3.0libGraphicsMagick.so.3.6.0libGraphicsMagickWand.so.2libGraphicsMagickWand.so.2.2.0libgraphite.so.3libgraphite.so.3.0.0libgraph.so.4libgraph.so.4.0.0libgsf-1.so.114libgsf-1.so.114.0.18libgslcblas.so.0libgslcblas.so.0.0.0libgsl.so.0libgsl.so.0.15.0libgsm.so.1libgsm.so.1.0.12libgssapi_krb5.so.2libgssapi_krb5.so.2.2libgssdp-1.0.so.2libgssdp-1.0.so.2.0.0libgssglue.so.1libgssglue.so.1.0.0libgs.so.8libgs.so.8.71libgssrpc.so.4libgssrpc.so.4.1libgstapp-0.10.so.0libgstapp-0.10.so.0.21.0libgstaudio-0.10.so.0libgstaudio-0.10.so.0.21.0libgstbase-0.10.so.0libgstbase-0.10.so.0.26.0libgstbasevideo-0.10.so.0libgstbasevideo-0.10.so.0.0.0libgstcdda-0.10.so.0libgstcdda-0.10.so.0.21.0libgstcheck-0.10.so.0libgstcheck-0.10.so.0.26.0libgstcontroller-0.10.so.0libgstcontroller-0.10.so.0.26.0libgstdataprotocol-0.10.so.0libgstdataprotocol-0.10.so.0.26.0libgstfarsight-0.10.so.0libgstfarsight-0.10.so.0.5.0libgstfft-0.10.so.0libgstfft-0.10.so.0.21.0libgstinterfaces-0.10.so.0libgstinterfaces-0.10.so.0.21.0libgstnet-0.10.so.0libgstnet-0.10.so.0.26.0libgstnetbuffer-0.10.so.0libgstnetbuffer-0.10.so.0.21.0libgstpbutils-0.10.so.0libgstpbutils-0.10.so.0.21.0libgstphotography-0.10.so.0libgstphotography-0.10.so.0.0.0libgstreamer-0.10.so.0libgstreamer-0.10.so.0.26.0libgstriff-0.10.so.0libgstriff-0.10.so.0.21.0libgstrtp-0.10.so.0libgstrtp-0.10.so.0.21.0libgstrtsp-0.10.so.0libgstrtsp-0.10.so.0.21.0libgstsdp-0.10.so.0libgstsdp-0.10.so.0.21.0libgstsignalprocessor-0.10.so.0libgstsignalprocessor-0.10.so.0.0.0libgsttag-0.10.so.0libgsttag-0.10.so.0.21.0libgstvideo-0.10.so.0libgstvideo-0.10.so.0.21.0libgthread-2.0.alibgthread-2.0.lalibgthread-2.0.solibgthread-2.0.so.0libgthread-2.0.so.0.2400.2libgtk2.0-0libgtkglext-x11-1.0.so.0libgtkglext-x11-1.0.so.0.0.0libgtkhtml-3.14.so.19libgtkhtml-3.14.so.19.1.1libgtkhtml-editor.so.0libgtkhtml-editor.so.0.0.0libgtkimageview.so.0libgtkimageview.so.0.0.0libgtkmm-2.4.so.1libgtkmm-2.4.so.1.1.0libgtksourceview-2.0.so.0libgtksourceview-2.0.so.0.0.0libgtkspell.so.0libgtkspell.so.0.0.0libgtk-x11-2.0.alibgtk-x11-2.0.lalibgtk-x11-2.0.solibgtk-x11-2.0.so.0libgtk-x11-2.0.so.0.2000.1libgtop-2.0.so.7libgtop-2.0.so.7.2.0libgtrtst.so.1libgtrtst.so.1.0.0libgucharmap.so.7libgucharmap.so.7.0.0libgudev-1.0.so.0libgudev-1.0.so.0.0.1libguile-ltdl.so.1libguile-ltdl.so.1.0.1libguilereadline-v-12.lalibguilereadline-v-12.so.12libguilereadline-v-12.so.12.3.1libguilereadline-v-17.lalibguilereadline-v-17.so.17libguilereadline-v-17.so.17.0.3libguile.so.12libguile.so.12.3.1libguile.so.17libguile.so.17.3.1libguile-srfi-srfi-13-14-v-1.lalibguile-srfi-srfi-13-14-v-1.so.1libguile-srfi-srfi-13-14-v-1.so.1.0.1libguile-srfi-srfi-13-14-v-3.lalibguile-srfi-srfi-13-14-v-3.so.3libguile-srfi-srfi-13-14-v-3.so.3.0.1libguile-srfi-srfi-1-v-3.lalibguile-srfi-srfi-1-v-3.so.3libguile-srfi-srfi-1-v-3.so.3.0.2libguile-srfi-srfi-4-v-1.lalibguile-srfi-srfi-4-v-1.so.1libguile-srfi-srfi-4-v-1.so.1.0.1libguile-srfi-srfi-4-v-3.lalibguile-srfi-srfi-4-v-3.so.3libguile-srfi-srfi-4-v-3.so.3.0.1libguile-srfi-srfi-60-v-2.lalibguile-srfi-srfi-60-v-2.so.2libguile-srfi-srfi-60-v-2.so.2.0.2libgupnp-1.0.so.3libgupnp-1.0.so.3.0.0libgupnp-igd-1.0.so.3libgupnp-igd-1.0.so.3.0.2libgutenprint.so.2libgutenprint.so.2.0.7libgvc.so.5libgvc.so.5.0.0libgvpr.so.1libgvpr.so.1.0.0libgweather.so.1libgweather.so.1.6.10libgwenhywfar.so.47libgwenhywfar.so.47.11.3libgwenviewlib.so.4libgwenviewlib.so.4.4.0libgwsoap.so.4libgwsoap.so.4.4.0libHalf.so.6libHalf.so.6.0.0libhal.so.1libhal.so.1.0.0libhal-storage.so.1libhal-storage.so.1.0.0libhpip.so.0libhpip.so.0.0.1libhpmud.so.0libhpmud.so.0.0.6libhunspell-1.2.so.0libhunspell-1.2.so.0.0.0libhyphen.so.0libhyphen.so.0.2.0libI810XvMC.solibI810XvMC.so.1libI810XvMC.so.1.0.0libical.so.0libical.so.0.44.0libicalss.so.0libicalss.so.0.44.0libicalvcal.so.0libicalvcal.so.0.44.0libICE.alibICE.solibICE.so.6libICE.so.6.3.0libicudata.so.44libicudata.so.44.1libicui18n.so.44libicui18n.so.44.1libicuio.so.44libicuio.so.44.1libicule.so.44libicule.so.44.1libiculx.so.44libiculx.so.44.1libicutest.so.44libicutest.so.44.1libicutu.so.44libicutu.so.44.1libicuuc.so.44libicuuc.so.44.1libid3-3.8.so.3libid3-3.8.so.3.0.0libid3tag.so.0libid3tag.so.0.3.0libIDL-2.so.0libIDL-2.so.0.0.0libidn.lalibidn.so.11libidn.so.11.5.44libiec61883.so.0libiec61883.so.0.1.1libieee1284.so.3libieee1284.so.3.2.2libieee.alibIex.so.6libIex.so.6.0.0libijs-0.35.solibIlmImf.so.6libIlmImf.so.6.0.0libIlmThread.so.6libIlmThread.so.6.0.0libImath.so.6libImath.so.6.0.0libimobiledevice.so.1libimobiledevice.so.1.0.2libIntelXvMC.solibIntelXvMC.so.1libIntelXvMC.so.1.0.0libiodbcinst.so.2libiodbcinst.so.2.1.18libiodbc.so.2libiodbc.so.2.1.18libiptcdata.so.0libiptcdata.so.0.3.3libiris_ksirk.so.2libiris_ksirk.so.2.0.0libisccc.so.60libisccc.so.60.0.0libisccfg.so.62libisccfg.so.62.0.0libisc.so.62libisc.so.62.1.1libiso9660.so.7libiso9660.so.7.0.0libisofs.so.6libisofs.so.6.28.0libjack.so.0libjack.so.0.1.0libjasper.so.1libjasper.so.1.0.0libjbig2dec.so.0libjbig2dec.so.0.0.0libjpeg.so.62libjpeg.so.62.0.0libjpeg.so.8libjpeg.so.8.0.2libjson-glib-1.0.so.0libjson-glib-1.0.so.0.1000.2libk3bdevice.so.6libk3bdevice.so.6.0.0libk3blib.so.6libk3blib.so.6.0.0libk5crypto.so.3libk5crypto.so.3.1libkabc_file_core.so.4libkabc_file_core.so.4.4.0libkabc_groupdav.so.4libkabc_groupdav.so.4.4.0libkabcgroupwise.so.4libkabcgroupwise.so.4.4.0libkabckolab.so.4libkabckolab.so.4.4.0libkabc_slox.so.4libkabc_slox.so.4.4.0libkabc.so.4libkabc.so.4.4.0libkaddressbookprivate.so.4libkaddressbookprivate.so.4.4.0libkadm5clnt_mit.so.7libkadm5clnt_mit.so.7.0libkadm5srv_mit.so.7libkadm5srv_mit.so.7.0libkalarm_calendar.so.4libkalarm_calendar.so.4.4.0libkalarm_resources.so.4libkalarm_resources.so.4.4.0libkastencontrollers.so.4libkastencontrollers.so.4.4.0libkastencore.so.4libkastencore.so.4.4.0libkastengui.so.4libkastengui.so.4.4.0libkateinterfaces.so.4libkateinterfaces.so.4.4.0libkate.so.1libkate.so.1.2.0libkblog.so.4libkblog.so.4.4.0libkcal_groupdav.so.4libkcal_groupdav.so.4.4.0libkcalgroupwise.so.4libkcalgroupwise.so.4.4.0libkcalkolab.so.4libkcalkolab.so.4.4.0libkcal_resourceblog.so.4libkcal_resourceblog.so.4.4.0libkcal_resourceremote.so.4libkcal_resourceremote.so.4.4.0libkcal_slox.so.4libkcal_slox.so.4.4.0libkcal.so.4libkcal.so.4.4.0libkcddb.so.4libkcddb.so.4.4.0libkcompactdisc.so.4libkcompactdisc.so.4.4.0libkdb5.so.4libkdb5.so.4.0libkdcraw.so.8libkdcraw.so.8.0.0libkde3support.so.4libkde3support.so.4.4.0libkdecorations.so.4libkdecorations.so.4.4.0libkdecore.so.5libkdecore.so.5.4.0libkdeeduui.so.4libkdeeduui.so.4.4.0libkdefakes.so.5libkdefakes.so.5.4.0libkdegames.so.5libkdegames.so.5.0.0libkdepim-copy.so.4libkdepim-copy.so.4.4.0libkdepim.so.4libkdepim.so.4.4.0libkdesu.so.5libkdesu.so.5.4.0libkdeui.so.5libkdeui.so.5.4.0libkdewebkit.so.5libkdewebkit.so.5.4.0libkdnssd.so.4libkdnssd.so.4.4.0libkeduvocdocument.so.4libkeduvocdocument.so.4.4.0libkephal.so.4libkephal.so.4.4.0libkerfuffle.so.4libkerfuffle.so.4.4.0libkexiv2.so.8libkexiv2.so.8.0.0libkfile.so.4libkfile.so.4.4.0libkfontinst.so.4libkfontinst.so.4.4.0libkfontinstui.so.4libkfontinstui.so.4.4.0libkgetcore.so.4libkgetcore.so.4.4.0libkggzgames.so.4libkggzgames.so.4.4.0libkggzmod.so.4libkggzmod.so.4.4.0libkggznet.so.4libkggznet.so.4.4.0libkgroupwarebase.so.4libkgroupwarebase.so.4.4.0libkgroupwaredav.so.4libkgroupwaredav.so.4.4.0libkholidays.so.4libkholidays.so.4.4.0libkhotkeysprivate.so.4libkhotkeysprivate.so.4.4.0libkhtml.so.5libkhtml.so.5.4.0libkickoff.solibkimap.so.4libkimap.so.4.4.0libkimpanelruntime.so.0libkimproxy.so.4libkimproxy.so.4.4.0libkio.so.5libkio.so.5.4.0libkipi.so.7libkipi.so.7.0.0libkiten.so.4libkiten.so.4.4.0libkjsapi.so.4libkjsapi.so.4.4.0libkjsembed.so.4libkjsembed.so.4.4.0libkjs.so.4libkjs.so.4.4.0libkldap.so.4libkldap.so.4.4.0libkleopatraclientcore.so.0libkleopatraclientcore.so.0.2.1libkleopatraclientgui.so.0libkleopatraclientgui.so.0.2.1libkleo.so.4libkleo.so.4.4.0libklinkstatuscommon.so.4libklinkstatuscommon.so.4.0.0libkmahjongglib.so.4libkmahjongglib.so.4.4.0libkmailprivate.so.4libkmailprivate.so.4.4.0libkmediaplayer.so.4libkmediaplayer.so.4.4.0libkmime.so.4libkmime.so.4.4.0libknewstuff2.so.4libknewstuff2.so.4.4.0libknewstuff3.so.4libknewstuff3.so.4.4.0libknmclient.so.4libknmclient.so.4.4.0libknminternals.so.4libknminternals.so.4.4.0libknm_nm.solibknmservice.so.4libknmservice.so.4.4.0libknmui.so.4libknmui.so.4.4.0libknodecommon.so.4libknodecommon.so.4.4.0libknoteskolab.so.4libknoteskolab.so.4.4.0libknotifyconfig.so.4libknotifyconfig.so.4.4.0libkntlm.so.4libkntlm.so.4.4.0libkolfprivate.so.4libkolfprivate.so.4.4.0libkolourpaint_lgpl.so.4libkolourpaint_lgpl.so.4.4.0libkommandercore.so.4libkommandercore.so.4.2.0libkommanderwidgets.solibkommanderwidgets.so.4libkommanderwidgets.so.4.2.0libkomparedialogpages.so.4libkomparedialogpages.so.4.4.0libkomparediff2.so.4libkomparediff2.so.4.4.0libkompareinterface.so.4libkompareinterface.so.4.4.0libkonqsidebarplugin.so.4libkonqsidebarplugin.so.4.4.0libkonq.so.5libkonq.so.5.4.0libkonquerorprivate.so.4libkonquerorprivate.so.4.4.0libkonsoleprivate.solibkontactinterface.so.4libkontactinterface.so.4.4.0libkontactprivate.so.4libkontactprivate.so.4.4.0libkopeteaddaccountwizard.so.1libkopeteaddaccountwizard.so.1.0.0libkopetechatwindow_shared.so.1libkopetechatwindow_shared.so.1.0.0libkopetecontactlist.so.1libkopetecontactlist.so.1.0.0libkopeteidentity.so.1libkopeteidentity.so.1.0.0libkopete_oscar.so.4libkopete_oscar.so.4.4.0libkopete_otr_shared.so.1libkopete_otr_shared.so.1.0.0libkopeteprivacy.so.1libkopeteprivacy.so.1.0.0libkopete.so.4libkopete.so.4.4.0libkopetestatusmenu.so.1libkopetestatusmenu.so.1.0.0libkopete_videodevice.so.4libkopete_videodevice.so.4.4.0libkorganizer_calendar.so.4libkorganizer_calendar.so.4.4.0libkorganizer_core.so.4libkorganizer_core.so.4.4.0libkorganizer_eventviewer.so.4libkorganizer_eventviewer.so.4.4.0libkorganizer_interfaces.so.4libkorganizer_interfaces.so.4.4.0libkorganizerprivate.so.4libkorganizerprivate.so.4.4.0libkorg_stdprinting.so.4libkorg_stdprinting.so.4.4.0libkparts.so.4libkparts.so.4.4.0libkpathsea.so.5libkpathsea.so.5.0.0libkpgp.so.4libkpgp.so.4.4.0libkpimidentities.so.4libkpimidentities.so.4.4.0libkpimtextedit.so.4libkpimtextedit.so.4.4.0libkpimutils.so.4libkpimutils.so.4.4.0libkpty.so.4libkpty.so.4.4.0libkrb5.so.3libkrb5.so.3.3libkrb5support.so.0libkrb5support.so.0.1libkrdccore.so.4libkrdccore.so.4.4.0libkresources.so.4libkresources.so.4.4.0libkrfbprivate.so.4.4.0libkrosscore.so.4libkrosscore.so.4.4.0libkrossui.so.4libkrossui.so.4.4.0libksane.so.0libksane.so.0.2.0libksba.so.8libksba.so.8.9.6libkscreensaver.so.5libkscreensaver.so.5.0.0libksgrd.so.4libksgrd.so.4.4.0libksieve.so.4libksieve.so.4.4.0libksignalplotter.so.4libksignalplotter.so.4.4.0libkslox.so.4libkslox.so.4.4.0libktexteditor_codesnippets_core.so.0libktexteditor_codesnippets_core.so.0.0.1libktexteditor.so.4libktexteditor.so.4.4.0libktnef.so.4libktnef.so.4.4.0libktoblzcheck.so.1libktoblzcheck.so.1.5.12libktorrent.so.2libktorrent.so.2.0.1libktrace.so.4libktrace.so.4.4.0libkttsd.so.4libkttsd.so.4.4.0libkunitconversion.so.4libkunitconversion.so.4.4.0libkunittest.so.4libkunittest.so.4.4.0libkutils.so.4libkutils.so.4.4.0libkwalletbackend.so.4libkwalletbackend.so.4.4.0libkwebkit.so.0.9.6libkwebkit.so.1libkwineffects.so.1libkwineffects.so.1.0.0libkwinnvidiahack.so.4libkwinnvidiahack.so.4.4.0libkworkspace.so.4libkworkspace.so.4.4.0libkxmlrpcclient.so.4libkxmlrpcclient.so.4.4.0libkyahoo.so.1libkyahoo.so.1.0.0libl.aliblancelot.so.0liblancelot.so.1.7.0liblapack.so.3gfliblber-2.4.so.2liblber-2.4.so.2.5.6liblcms.so.1liblcms.so.1.0.18libldap-2.4.so.2libldap_r-2.4.so.2libldap_r-2.4.so.2.5.6liblirc_client.laliblirc_client.so.0liblirc_client.so.0.2.0liblockfile.so.1liblockfile.so.1.0libloginhelper.so.0libloginhelper.so.0.0.0liblqr-1.so.0liblqr-1.so.0.3.1libltdl.alibltdl.lalibltdl.solibltdl.so.7libltdl.so.7.2.1liblua5.1.so.0liblua5.1.so.0.0.0liblwres.so.60liblwres.so.60.0.1liblzma.so.2liblzma.so.2.0.0liblzo2.so.2liblzo2.so.2.0.0libm.alibmaa.so.2libmaa.so.2.0.0libmad.so.0libmad.so.0.2.1libMagickCore.so.3libMagickCore.so.3.0.0libMagick++.so.3libMagick++.so.3.0.0libMagickWand.so.3libMagickWand.so.3.0.0libmagic.so.1libmagic.so.1.0.0libmaildir.so.4libmaildir.so.4.4.0libmailtransport.so.4libmailtransport.so.4.4.0libmarblewidget.so.4libmarblewidget.so.4.4.0libmbox.so.4libmbox.so.4.4.0libmcheck.alibmeanwhile.so.1libmeanwhile.so.1.0.2libmediastreamer.so.0libmediastreamer.so.0.0.0libmenu.alibmenu.solibmenu.so.5libmenu.so.5.7libmenuw.so.5libmenuw.so.5.7libmessagecore.so.4libmessagecore.so.4.4.0libmessagelist.so.4libmessagelist.so.4.4.0libmetacity-private.so.0libmetacity-private.so.0.0.0libmicroblog.so.4libmicroblog.so.4.4.0libmimelib.so.4libmimelib.so.4.4.0libmimic.so.0libmimic.so.0.0.1libmms.so.0libmms.so.0.0.2libmng.so.1libmng.so.1.1.0.10libmodplug.so.1libmodplug.so.1.0.0libmolletnetwork.so.4libmolletnetwork.so.4.4.0libMonoPosixHelper.solibMonoSupportW.solibmozjs.so.2dlibmp3lame.so.0libmp3lame.so.0.0.0libmpcdec.so.6libmpcdec.so.6.1.0libmpeg2convert.so.0libmpeg2convert.so.0.0.0libmpeg2.so.0libmpeg2.so.0.0.0libmpfr.so.4libmpfr.so.4.0.0libmp.so.3libmp.so.3.1.16libmsn.so.0.3libmsn.so.0.3.0libm.solibmtp.so.8libmtp.so.8.3.3libmusicbrainz3.so.6libmusicbrainz3.so.6.2.0libmusicbrainz.so.4libmusicbrainz.so.4.0.3libmysqlclient_r.so.16libmysqlclient_r.so.16.0.0libmysqlclient.so.16libmysqlclient.so.16.0.0libmythes-1.2.so.0libmythes-1.2.so.0.0.0libnautilus-extension.so.1libnautilus-extension.so.1.1.0libncurses.alibncurses++.alibncurses.solibncurses.so.5libneon-gnutls.so.27libneon-gnutls.so.27.2.3libnepomukquery.so.4libnepomukquery.so.4.4.0libnepomuk.so.4libnepomuk.so.4.4.0libnetpbm.so.10libnetpbm.so.10.0libnetsnmpagent.so.15libnetsnmpagent.so.15.1.2libnetsnmphelpers.so.15libnetsnmphelpers.so.15.1.2libnetsnmpmibs.so.15libnetsnmpmibs.so.15.1.2libnetsnmp.so.15libnetsnmp.so.15.1.2libnetsnmptrapd.so.15libnetsnmptrapd.so.15.1.2libnet.so.1libnet.so.1.5.0libnewt.so.0.52libnewt.so.0.52.11libnfnetlink.so.0libnfnetlink.so.0.2.0libnfsidmaplibnfsidmap.so.0libnfsidmap.so.0.3.0libnice.so.0libnice.so.0.8.0libnl.so.1libnl.so.1.1libnm-glib.so.2libnm-glib.so.2.2.3libnm-glib-vpn.so.1libnm-glib-vpn.so.1.0.0libnm-util.so.1libnm-util.so.1.3.4libnotify.so.1libnotify.so.1.2.3libnsl.alibnsl.solibnspr4.alibnspr4.solibnspr4.so.0dlibnss3.solibnss3.so.1dlibnss_compat.solibnss_dns.solibnss_files.solibnss_hesiod.solibnss_nisplus.solibnss_nis.solibnssutil3.solibnssutil3.so.1dlibntfs-3g.so.75libntfs-3g.so.75.0.0libntfs.so.10libntfs.so.10.0.0libntlm.so.0libntlm.so.0.0.17libntrack-qt4.so.1libntrack-qt4.so.1.0.0libntrack.so.0libntrack.so.0.1.0libodbccr.so.1libodbccr.so.1.0.0libodbcinst.so.1libodbcinst.so.1.0.0libodbc.so.1libodbc.so.1.0.0libofa.so.0libofa.so.0.0.0libofx.so.4libofx.so.4.0.0libogg.so.0libogg.so.0.7.0liboil-0.3.so.0liboil-0.3.so.0.3.0liboktetacore.so.4liboktetacore.so.4.4.0liboktetagui.so.4liboktetagui.so.4.4.0liboktetakastencontrollers.so.4liboktetakastencontrollers.so.4.4.0liboktetakastencore.so.4liboktetakastencore.so.4.4.0liboktetakastengui.so.4liboktetakastengui.so.4.4.0libokularcore.so.1libokularcore.so.1.4.0liboobs-1.so.4liboobs-1.so.4.0.0libopal.so.3.6.8libopcodes-2.20.1-system.20100303.solibopenbabel.so.3libopenbabel.so.3.0.3libopencore-amrnb.so.0libopencore-amrnb.so.0.0.2libopencore-amrwb.so.0libopencore-amrwb.so.0.0.2libopenjpeg-2.1.3.0.solibopenjpeg.so.2libopenobex.so.1libopenobex.so.1.5.0libopenraw.so.1libopenraw.so.1.5.2libORBit-2.so.0libORBit-2.so.0.1.0libORBitCosNaming-2.so.0libORBitCosNaming-2.so.0.1.0libORBit-imodule-2.so.0libORBit-imodule-2.so.0.0.0liborc-0.4.so.0liborc-0.4.so.0.0.0liborc-test-0.4.so.0liborc-test-0.4.so.0.0.0libortp.so.8libortp.so.8.0.0liboscar.so.1liboscar.so.1.0.0libosp.so.5libosp.so.5.0.0libossp-uuid.so.16libossp-uuid++.so.16libossp-uuid.so.16.0.22libossp-uuid++.so.16.0.22libotr.so.2libotr.so.2.2.0libpala.so.0libpala.so.0.1.0libpanel.alibpanel-applet-2.so.0libpanel-applet-2.so.0.2.68libpanel.solibpanel.so.5libpanel.so.5.7libpanelw.so.5libpanelw.so.5.7libpango-1.0.alibpango-1.0.lalibpango-1.0.solibpango-1.0.so.0libpango-1.0.so.0.2800.3libpangocairo-1.0.alibpangocairo-1.0.lalibpangocairo-1.0.solibpangocairo-1.0.so.0libpangocairo-1.0.so.0.2800.3libpangoft2-1.0.alibpangoft2-1.0.lalibpangoft2-1.0.solibpangoft2-1.0.so.0libpangoft2-1.0.so.0.2800.3libpangomm-1.4.so.1libpangomm-1.4.so.1.0.30libpangox-1.0.alibpangox-1.0.lalibpangox-1.0.solibpangox-1.0.so.0libpangox-1.0.so.0.2800.3libpangoxft-1.0.alibpangoxft-1.0.lalibpangoxft-1.0.solibpangoxft-1.0.so.0libpangoxft-1.0.so.0.2800.3libpaper.so.1libpaper.so.1.1.2libpathplan.so.4libpathplan.so.4.0.0libpcap.so.0.8libpcap.so.1.1.1libpciaccess.so.0libpciaccess.so.0.10.8libpci.so.3libpci.so.3.1.7libpcreposix.so.3libpcreposix.so.3.12.1libpcsclite.so.1libpcsclite.so.1.0.0libperl.so.5.10libperl.so.5.10.1libphonon.so.4libphonon.so.4.4.0libpixman-1.alibpixman-1.solibpixman-1.so.0libpixman-1.so.0.16.4libpkcs11-helper.so.1libpkcs11-helper.so.1.0.0libplasma_applet-system-monitor.so.4libplasma_applet-system-monitor.so.4.4.0libplasmaclock.so.4ÁüÁ*d"ÐlîàŒË׳¥dpëlibplasmaclock.so.4.4.0libplasmacomicprovidercore.so.1libplasmacomicprovidercore.so.1.0.0libplasmagenericshell.so.4libplasmagenericshell.so.4.4.0libplasma-geolocation-interface.so.4libplasma-geolocation-interface.so.4.4.0libplasmapotdprovidercore.so.1libplasmapotdprovidercore.so.1.0.0libplasma.so.3libplasma.so.3.0.0libplasmaweather.so.4libplasmaweather.so.4.4.0libplc4.alibplc4.solibplc4.so.0dlibplds4.alibplds4.solibplds4.so.0dlibplist.so.1libplist.so.1.1.3libplot.so.2libplot.so.2.2.2libplotter.so.2libplotter.so.2.2.2libpng12.alibpng12.solibpng12.so.0libpng.alibpng.solibpolkit-agent-1.so.0libpolkit-agent-1.so.0.0.0libpolkit-backend-1.so.0libpolkit-backend-1.so.0.0.0libpolkit-gobject-1.so.0libpolkit-gobject-1.so.0.0.0libpolkit-gtk-1.so.0libpolkit-gtk-1.so.0.0.0libpolkit-qt-agent-1.so.0libpolkit-qt-agent-1.so.0.95.1libpolkit-qt-core-1.so.0libpolkit-qt-core-1.so.0.95.1libpolkit-qt-gui-1.so.0libpolkit-qt-gui-1.so.0.95.1libpoppler-glib.so.4libpoppler-glib.so.4.0.0libpoppler-qt4.so.3libpoppler-qt4.so.3.2.0libpoppler.so.5libpoppler.so.5.0.0libpopt.alibpopt.lalibpopt.solibportaudio.so.2libportaudio.so.2.0.0libpostproc.so.51libpostproc.so.51.2.0libprocesscore.so.4libprocesscore.so.4.4.0libprocessui.so.4libprocessui.so.4.4.0libproxylibproxy.so.0libproxy.so.0.0.0libpspell.so.15libpspell.so.15.1.4libpstoedit.so.0libpstoedit.so.0.0.0libpthread.alibpthread_nonshared.alibpthread.solibpth.so.20libpth.so.20.0.27libpt.so.2.6.7libpulse-browse.so.0libpulse-browse.so.0.1.1libpulsecommon-0.9.21.solibpulsecore-0.9.21.solibpulsedsp.solibpulse-mainloop-glib.so.0libpulse-mainloop-glib.so.0.0.4libpulse-simple.so.0libpulse-simple.so.0.0.3libpulse.so.0libpulse.so.0.12.2libpurple-client.so.0libpurple-client.so.0.7.3libpurple.so.0libpurple.so.0.7.3libpyglib-2.0-python2.5.so.0libpyglib-2.0-python2.5.so.0.0.0libpyglib-2.0-python2.6.so.0libpyglib-2.0-python2.6.so.0.0.0libpython2.6.so.1libpython2.6.so.1.0libqalculate.so.5libqalculate.so.5.0.0libqbanking.so.8libqbanking.so.8.0.0libqca.so.2libqca.so.2.0libqca.so.2.0.2libqedje.so.0alibqedje.so.0a.4.0libqgpgme.so.1libqgpgme.so.1.0.1libqgroupwise.solibqimageblitz.so.4libqimageblitz.so.4.0.0libQt3Support.so.4libQt3Support.so.4.6libQt3Support.so.4.6.3libQtAssistantClient.so.4libQtAssistantClient.so.4.6libQtAssistantClient.so.4.6.3libQtCLucene.so.4libQtCLucene.so.4.6libQtCLucene.so.4.6.3libQtCore.so.4libQtCore.so.4.6libQtCore.so.4.6.3libQtDBus.so.4libQtDBus.so.4.6libQtDBus.so.4.6.3libQtDesignerComponents.so.4libQtDesignerComponents.so.4.6libQtDesignerComponents.so.4.6.3libQtDesigner.so.4libQtDesigner.so.4.6libQtDesigner.so.4.6.3libQtGui.so.4libQtGui.so.4.6libQtGui.so.4.6.3libQtHelp.so.4libQtHelp.so.4.6libQtHelp.so.4.6.3libqt-mt.so.3libqt-mt.so.3.3libqt-mt.so.3.3.8libQtNetwork.so.4libQtNetwork.so.4.6libQtNetwork.so.4.6.3libQtOpenGL.so.4libQtOpenGL.so.4.6libQtOpenGL.so.4.6.3libqtruby4shared.so.2libqtruby4shared.so.2.0.0libQtScript.so.4libQtScript.so.4.6libQtScript.so.4.6.3libQtScriptTools.so.4libQtScriptTools.so.4.6libQtScriptTools.so.4.6.3libQtSql.so.4libQtSql.so.4.6libQtSql.so.4.6.3libQtSvg.so.4libQtSvg.so.4.6libQtSvg.so.4.6.3libQtTest.so.4libQtTest.so.4.6libQtTest.so.4.6.3libQtWebKit.so.4libQtWebKit.so.4.6libQtWebKit.so.4.6.3libQtXmlPatterns.so.4libQtXmlPatterns.so.4.6libQtXmlPatterns.so.4.6.3libQtXml.so.4libQtXml.so.4.6libQtXml.so.4.6.3libqui.so.1libqui.so.1.0libqui.so.1.0.0libqzion.so.0alibqzion.so.0a.4.0libraptor.so.1libraptor.so.1.2.0librarian.so.0librarian.so.0.0.0librasqal.so.2librasqal.so.2.0.0libraw1394.so.11libraw1394.so.11.0.1librdf.so.0librdf.so.0.0.0librecode.so.0librecode.so.0.0.0libresolv.alibresolv.solibrhythmbox-core.so.0librhythmbox-core.so.0.0.0librom1394.so.0librom1394.so.0.3.0librpcsecgss.so.3librpcsecgss.so.3.0.0librpcsvc.alibrpmio.so.1librpmio.so.1.0.0librpm.so.1librpm.so.1.0.0librsvg-2.so.2librsvg-2.so.2.26.3librsync.so.1librsync.so.1.0.2librt.alibrtmp.so.0librtm.so.4librtm.so.4.4.0librt.solibruby1.8.so.1.8libruby1.8.so.1.8.7libsamplerate.so.0libsamplerate.so.0.1.7libsane.lalibsane.so.1libsane.so.1.0.21libsasl2.so.2libsasl2.so.2.0.23libSatLib.so.4libSatLib.so.4.4.0libschroedinger-1.0.so.0libschroedinger-1.0.so.0.3.0libscience.so.4libscience.so.4.4.0libscim-1.0.so.8libscim-1.0.so.8.2.4libscim-gtkutils-1.0.so.8libscim-gtkutils-1.0.so.8.2.4libscim-x11utils-1.0.so.8libscim-x11utils-1.0.so.8.2.4libSDL-1.2.so.0libSDL-1.2.so.0.11.3libseed.so.0libseed.so.0.0.0libselinux.alibselinux.solibsensors.so.4libsensors.so.4.2.1libsepol.alibsepol.solibserf-0.so.0libserf-0.so.0.0.0libsgutils2.so.2libsgutils2.so.2.0.0libshout.so.3libshout.so.3.2.0libsidplay.so.1libsidplay.so.1.0.3libsigc-2.0.so.0libsigc-2.0.so.0.0.0libsigsegv.so.0libsigsegv.so.0.0.0libsilc-1.1.so.2libsilc-1.1.so.2.1.0libsilcclient-1.1.so.3libsilcclient-1.1.so.3.0.0libslab.so.0libslab.so.0.2.0libslp.so.1libslp.so.1.0.1libslv2.so.9libslv2.so.9.2.0libSM.alibsmbclient.so.0libsmime3.solibsmime3.so.1dlibsmokekdecore.so.3libsmokekdecore.so.3.0.0libsmokekdeui.so.3libsmokekdeui.so.3.0.0libsmokekfile.so.3libsmokekfile.so.3.0.0libsmokekhtml.so.3libsmokekhtml.so.3.0.0libsmokekio.so.3libsmokekio.so.3.0.0libsmokeknewstuff2.so.3libsmokeknewstuff2.so.3.0.0libsmokeknewstuff3.so.3libsmokeknewstuff3.so.3.0.0libsmokekparts.so.3libsmokekparts.so.3.0.0libsmokektexteditor.so.3libsmokektexteditor.so.3.0.0libsmokekutils.so.3libsmokekutils.so.3.0.0libsmokenepomuk.so.3libsmokenepomuk.so.3.0.0libsmokephonon.so.3libsmokephonon.so.3.0.0libsmokeplasma.so.3libsmokeplasma.so.3.0.0libsmokeqtcore.so.3libsmokeqtcore.so.3.0.0libsmokeqtdbus.so.3libsmokeqtdbus.so.3.0.0libsmokeqtgui.so.3libsmokeqtgui.so.3.0.0libsmokeqtnetwork.so.3libsmokeqtnetwork.so.3.0.0libsmokeqtopengl.so.3libsmokeqtopengl.so.3.0.0libsmokeqtscript.so.3libsmokeqtscript.so.3.0.0libsmokeqtsql.so.3libsmokeqtsql.so.3.0.0libsmokeqtsvg.so.3libsmokeqtsvg.so.3.0.0libsmokeqttest.so.3libsmokeqttest.so.3.0.0libsmokeqtuitools.so.3libsmokeqtuitools.so.3.0.0libsmokeqtwebkit.so.3libsmokeqtwebkit.so.3.0.0libsmokeqtxml.so.3libsmokeqtxml.so.3.0.0libsmokesolid.so.3libsmokesolid.so.3.0.0libsmokesoprano.so.3libsmokesoprano.so.3.0.0libSM.solibSM.so.6libSM.so.6.0.1libsndfile.so.1libsndfile.so.1.0.21libsnmp.so.15libsnmp.so.15.1.2libsolidcontrolfuture.solibsolidcontrolifaces.so.4libsolidcontrolifaces.so.4.4.0libsolidcontrol.so.4libsolidcontrol.so.4.4.0libsolid.so.4libsolid.so.4.4.0libsopranoclient.so.1libsopranoclient.so.1.2.0libsopranoindex.so.1libsopranoindex.so.1.1.0libsopranoserver.so.1libsopranoserver.so.1.2.0libsoprano.so.4libsoprano.so.4.3.0libSoundTouch.so.1libSoundTouch.so.1.0.0libsoup-2.4.so.1libsoup-2.4.so.1.3.0libsoup-gnome-2.4.so.1libsoup-gnome-2.4.so.1.3.0libspectre.so.1libspectre.so.1.1.6libspeechd.so.2libspeechd.so.2.2.1libspeexdsp.so.1libspeexdsp.so.1.5.0libspeex.so.1libspeex.so.1.5.0libspi.so.0libspi.so.0.10.11libsqlite3.so.0libsqlite3.so.0.8.6libsrtp.so.0libsrtp.so.0.0libssh2.so.1libssh2.so.1.0.1libssh.so.4libssh.so.4.1.2libssl3.solibssl3.so.1dlibssl.so.0.9.8libstartup-notification-1.so.0libstartup-notification-1.so.0.0.0libstdc++.so.6libstdc++.so.6.0.13libstreamanalyzer.so.0libstreamanalyzer.so.0.7.2libstreams.so.0libstreams.so.0.7.2libsuperkaramba.so.4libsuperkaramba.so.4.4.0libsupp.alibsvn_auth_gnome_keyring-1.so.1libsvn_auth_gnome_keyring-1.so.1.0.0libsvn_auth_kwallet-1.so.1libsvn_auth_kwallet-1.so.1.0.0libsvn_client-1.so.1libsvn_client-1.so.1.0.0libsvn_delta-1.so.1libsvn_delta-1.so.1.0.0libsvn_diff-1.so.1libsvn_diff-1.so.1.0.0libsvn_fs-1.so.1libsvn_fs-1.so.1.0.0libsvn_fs_base-1.so.1libsvn_fs_base-1.so.1.0.0libsvn_fs_fs-1.so.1libsvn_fs_fs-1.so.1.0.0libsvn_fs_util-1.so.1libsvn_fs_util-1.so.1.0.0libsvn_ra-1.so.1libsvn_ra-1.so.1.0.0libsvn_ra_dav-1.so.1libsvn_ra_local-1.so.1libsvn_ra_local-1.so.1.0.0libsvn_ra_neon-1.so.1libsvn_ra_neon-1.so.1.0.0libsvn_ra_serf-1.so.1libsvn_ra_serf-1.so.1.0.0libsvn_ra_svn-1.so.1libsvn_ra_svn-1.so.1.0.0libsvn_repos-1.so.1libsvn_repos-1.so.1.0.0libsvn_subr-1.so.1libsvn_subr-1.so.1.0.0libsvn_wc-1.so.1libsvn_wc-1.so.1.0.0libswscale.so.0libswscale.so.0.12.0libsyndication.so.4libsyndication.so.4.4.0libsystemsettingsview.so.1libt1.so.5libt1.so.5.1.2libt1x.so.5libt1x.so.5.1.2libtag.so.1libtag.so.1.6.3libtalloc.so.2libtalloc.so.2.0.1libtaskmanager.so.4libtaskmanager.so.4.4.0libtasn1.so.3libtasn1.so.3.1.9libtcl8.4.so.0libtdb.so.1libtdb.so.1.2.1libtelepathy-farsight.so.0libtelepathy-farsight.so.0.1.1libtelepathy-glib.so.0libtelepathy-glib.so.0.40.0libtelepathy-qt4.so.0libtelepathy-qt4.so.0.8.0libtermcap.alibtermcap.solibthai.so.0libthai.so.0.1.6libtheoradec.so.1libtheoradec.so.1.1.4libtheoraenc.so.1libtheoraenc.so.1.1.2libtheora.so.0libtheora.so.0.3.10libthread_db.solibthreadweaver.so.4libthreadweaver.so.4.4.0libtic.alibtic.solibtidy-0.99.so.0libtidy-0.99.so.0.0.0libtidy.solibtiff.so.4libtiff.so.4.3.3libtk8.4.so.0libtokyocabinet.so.8libtokyocabinet.so.8.27.0libtotem-plparser-mini.so.17libtotem-plparser-mini.so.17.0.0libtotem-plparser.so.17libtotem-plparser.so.17.0.0libtracker-client-0.8.so.0libtracker-client-0.8.so.0.817.0libts-0.0.so.0libts-0.0.so.0.1.1libtunepimp.so.5libtunepimp.so.5.0.3libtwolame.so.0libtwolame.so.0.0.0libulockmgr.alibulockmgr.lalibulockmgr.solibulockmgr.so.1libulockmgr.so.1.0.1libungif.so.4libungif.so.4.1libungif.so.4.1.6libuniconf.so.4.6libunique-1.0.so.0libunique-1.0.so.0.100.6libuniquewm-1.2.so.9libuniquewm-1.2.so.9.0.1libunistring.so.0libunistring.so.0.1.2libuno_cppuhelpergcc3.so.3libuno_cppu.so.3libuno_purpenvhelpergcc3.so.3libuno_salhelpergcc3.so.3libuno_sal.so.3libupower-glib.so.1libupower-glib.so.1.0.1libusb-0.1.so.4libusb-1.0.so.0libusbmuxd.so.1libusbmuxd.so.1.0.4libutempter.so.0libutempter.so.1.1.5libutil.alibutil.solibuuid.alibuuid.solibv4llibv4l1.so.0libv4l2.so.0libv4lconvert.so.0libva.so.1libva.so.1.0.7libva-x11.so.1libva-x11.so.1.0.7libvcdinfo.so.0libvcdinfo.so.0.2.0libvdehist.so.0libvdehist.so.0.0.1libvdemgmt.so.0libvdemgmt.so.0.0.1libvdeplug.so.2libvdeplug.so.2.1.0libvdesnmp.so.0libvdesnmp.so.0.0.1libvdpau.so.1libvdpau.so.1.0.0libvgagl.so.1libvgagl.so.1.4.3libvga.so.1libvga.so.1.4.3libvisual-0.4libvisual-0.4.so.0libvisual-0.4.so.0.0.0libvncclient.so.0libvncclient.so.0.0.0libvncserver.so.0libvncserver.so.0.0.0libvorbisenc.so.2libvorbisenc.so.2.0.7libvorbisfile.so.3libvorbisfile.so.3.3.2libvorbis.so.0libvorbis.so.0.4.4libvpx.so.0libvpx.so.0.9libvpx.so.0.9.1libvte9libvte.so.9libvte.so.9.13.3libwavpack.so.1libwavpack.so.1.1.4libwbclient.so.0libweather_ion.so.4libweather_ion.so.4.4.0libwebkit-1.0.so.2libwebkit-1.0.so.2.17.9libWildMidi.so.1libWildMidi.so.1.0.0libwine.so.1libwine.so.1.0libwmf-0.2.so.7libwmf-0.2.so.7.1.0libwmflite-0.2.so.7libwmflite-0.2.so.7.0.1libwnck-1.so.22libwnck-1.so.22.3.29libwpd-0.8.so.8libwpd-0.8.so.8.0.14libwpg-0.1.so.1libwpg-0.1.so.1.0.3libwpg-stream-0.1.so.1libwpg-stream-0.1.so.1.0.3libwps-0.1.so.1libwps-0.1.so.1.0.2libwps-stream-0.1.so.1libwps-stream-0.1.so.1.0.2libwvbase.so.4.6libwvdbus.so.4.6libwvstreams.so.4.6libwvutils.so.4.6libwx_baseu-2.8.so.0libwx_baseu-2.8.so.0.6.0libwx_baseu_net-2.8.so.0libwx_baseu_net-2.8.so.0.6.0libwx_baseu_xml-2.8.so.0libwx_baseu_xml-2.8.so.0.6.0libwx_gtk2u_adv-2.8.so.0libwx_gtk2u_adv-2.8.so.0.6.0libwx_gtk2u_aui-2.8.so.0libwx_gtk2u_aui-2.8.so.0.6.0libwx_gtk2u_core-2.8.so.0libwx_gtk2u_core-2.8.so.0.6.0libwx_gtk2u_fl-2.8.so.0libwx_gtk2u_fl-2.8.so.0.6.0libwx_gtk2u_gizmos-2.8.so.0libwx_gtk2u_gizmos-2.8.so.0.6.0libwx_gtk2u_gizmos_xrc-2.8.so.0libwx_gtk2u_gizmos_xrc-2.8.so.0.6.0libwx_gtk2u_gl-2.8.so.0libwx_gtk2u_gl-2.8.so.0.6.0libwx_gtk2u_html-2.8.so.0libwx_gtk2u_html-2.8.so.0.6.0libwx_gtk2u_ogl-2.8.so.0libwx_gtk2u_ogl-2.8.so.0.6.0libwx_gtk2u_plot-2.8.so.0libwx_gtk2u_plot-2.8.so.0.6.0libwx_gtk2u_qa-2.8.so.0libwx_gtk2u_qa-2.8.so.0.6.0libwx_gtk2u_richtext-2.8.so.0libwx_gtk2u_richtext-2.8.so.0.6.0libwx_gtk2u_stc-2.8.so.0libwx_gtk2u_stc-2.8.so.0.6.0libwx_gtk2u_svg-2.8.so.0libwx_gtk2u_svg-2.8.so.0.6.0libwx_gtk2u_xrc-2.8.so.0libwx_gtk2u_xrc-2.8.so.0.6.0libX11.alibX11.solibX11.so.6libX11.so.6.3.0libX11-xcb.so.1libX11-xcb.so.1.0.0libx264.so.112libxapian.so.22libxapian.so.22.1.2libXau.alibXau.solibXau.so.6libXau.so.6.0.0libXaw3d.so.6libXaw3d.so.6.1libXaw7.so.7libXaw7.so.7.0.0libXaw.so.7libxcb.alibxcb-atom.so.1libxcb-atom.so.1.0.0libxcb-aux.so.0libxcb-aux.so.0.0.0libxcb-dri2.so.0libxcb-dri2.so.0.0.0libxcb-event.so.1libxcb-event.so.1.0.0libxcb-render.alibxcb-render.solibxcb-render.so.0libxcb-render.so.0.0.0libxcb-render-util.alibxcb-render-util.solibxcb-render-util.so.0libxcb-render-util.so.0.0.0libxcb-shape.so.0libxcb-shape.so.0.0.0libxcb-shm.so.0libxcb-shm.so.0.0.0libxcb.solibxcb.so.1libxcb.so.1.1.0libxcb-xv.so.0libxcb-xv.so.0.0.0libXcomposite.alibXcomposite.solibXcomposite.so.1libXcomposite.so.1.0.0libXcursor.alibXcursor.solibXcursor.so.1libXcursor.so.1.0.2libXdamage.alibXdamage.solibXdamage.so.1libXdamage.so.1.1.0libXdmcp.alibXdmcp.solibXdmcp.so.6libXdmcp.so.6.0.0libxdot.so.4libxdot.so.4.0.0libXext.alibXext.solibXext.so.6libXext.so.6.4.0libXfixes.alibXfixes.solibXfixes.so.3libXfixes.so.3.1.0libXfont.so.1libXfont.so.1.4.1libXft.alibXft.solibXft.so.2libXft.so.2.1.13libXi.alibXinerama.alibXinerama.solibXinerama.so.1libXinerama.so.1.0.0libxine.so.1libxine.so.1.29.0libXi.solibXi.so.6libXi.so.6.1.0libxkbfile.so.1libxkbfile.so.1.0.2libxklavier.so.16libxklavier.so.16.0.0libxmi.so.0libxmi.so.0.1.3libxml2.so.2libxml2.so.2.7.8libxmmsclient-glib.so.1libxmmsclient-glib.so.1.0.0libxmmsclient++.so.4libxmmsclient++.so.4.0.0libxmmsclient.so.6libxmmsclient.so.6.0.0libXmu.so.6libXmu.so.6.2.0libXmuu.so.1libXmuu.so.1.0.0libXpm.so.4libXpm.so.4.11.0libXrandr.alibXrandr.solibXrandr.so.2libXrandr.so.2.2.0libXrender.alibXrender.solibXrender.so.1libXrender.so.1.3.0libXRes.so.1libXRes.so.1.0.0libxslt.so.1libxslt.so.1.1.26libXss.so.1libXss.so.1.0.0libXt.so.6libXt.so.6.0.0libXtst.so.6libXtst.so.6.1.0libxvidcore.so.4libxvidcore.so.4.2libXvMC.so.1libXvMC.so.1.0.0libXvMCW.so.1libXvMCW.so.1.0.0libXv.so.1libXv.so.1.0.0libXxf86dga.so.1libXxf86dga.so.1.0.0libXxf86vm.so.1libXxf86vm.so.1.0.0liby.alibz.alibzbar.so.0libzbar.so.0.2.0libzephyr.so.4libzephyr.so.4.0.0libz.solibz.so.1libz.so.1.2.3.4liferealinux-boot-probeslinux-kbuild-2.6.32linux-kbuild-2.6.38localelocales-alllp_solveman-dbMcrt1.omidbrowsermimeModemManagermonomozillamuttnautilusnautilus-sendtoNetworkManagernotification-daemonnotification-daemon-1.0nssobexdodbcopal-3.6.8openbabelopenofficeopensshopenvpnorbit-2.0os-proberos-probesp7zippangopcmciautilsperlperl5pidginpkgconfigpm-utilspolicykit-1policykit-1-gnomepolkit-1pppdpprpreloadable_libintl.sopstoeditpt_chownptlib-2.6.7pulse-0.9.21purple-2pymodulespysharedpython2.4python2.5python2.6qt3qt4remminarhythmboxrpmrsyslogrubysambasanesasl2scim-1.0Scrt1.oseahorsesecurityseedsendmailsftp-serversilcsopranospeech-dispatcherspeech-dispatcher-modulessshsslstrigisudotaskseltctelepathytomboytotemtracker-0.8ts0tunepimpudisksupdate-notifierupowerureutemptervalgrindvde2vdpauvinovpncw3mwebkit-1.0-2winewxX11x86_64-linux-gnuxindyxinexmms2xorgxscreensaverxulrunnerxulrunner-1.9.1xulrunner-addonsbabeltrace-1.2.1/tests/ctf-traces/succeed/warnings/metadata0000644000175000017500000000110511710667372020672 00000000000000/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; aa = bb; } := uint8_t; typealias integer { size = 32; align = 32; signed = false; zz = aa; } := uint32_t; trace { major = 0; minor = 1; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[16]; }; blah = "aaa"; }; stream { packet.context := struct { uint32_t content_size; uint32_t packet_size; }; askdjfhaskdjfh = 1; }; event { name = string; fields := struct { string str; }; asdjfhah := struct { uint8_t ffff; }; }; babeltrace-1.2.1/tests/tests0000644000175000017500000000016512304150543012746 00000000000000bin/test_trace_read lib/test_bitfield lib/test_seek_empty_packet lib/test_seek_big_trace lib/test_ctf_writer_completebabeltrace-1.2.1/types/0000755000175000017500000000000012306621157011747 500000000000000babeltrace-1.2.1/types/array.c0000644000175000017500000001711412304150543013147 00000000000000/* * array.c * * BabelTrace - Array Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include static struct bt_definition *_array_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _array_definition_free(struct bt_definition *definition); int bt_array_rw(struct bt_stream_pos *pos, struct bt_definition *definition) { struct definition_array *array_definition = container_of(definition, struct definition_array, p); const struct declaration_array *array_declaration = array_definition->declaration; uint64_t i; int ret; /* No need to align, because the first field will align itself. */ for (i = 0; i < array_declaration->len; i++) { struct bt_definition *field = g_ptr_array_index(array_definition->elems, i); ret = generic_rw(pos, field); if (ret) return ret; } return 0; } static void _array_declaration_free(struct bt_declaration *declaration) { struct declaration_array *array_declaration = container_of(declaration, struct declaration_array, p); bt_free_declaration_scope(array_declaration->scope); bt_declaration_unref(array_declaration->elem); g_free(array_declaration); } struct declaration_array * bt_array_declaration_new(size_t len, struct bt_declaration *elem_declaration, struct declaration_scope *parent_scope) { struct declaration_array *array_declaration; struct bt_declaration *declaration; array_declaration = g_new(struct declaration_array, 1); declaration = &array_declaration->p; array_declaration->len = len; bt_declaration_ref(elem_declaration); array_declaration->elem = elem_declaration; array_declaration->scope = bt_new_declaration_scope(parent_scope); declaration->id = CTF_TYPE_ARRAY; declaration->alignment = elem_declaration->alignment; declaration->declaration_free = _array_declaration_free; declaration->definition_new = _array_definition_new; declaration->definition_free = _array_definition_free; declaration->ref = 1; return array_declaration; } static struct bt_definition * _array_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_array *array_declaration = container_of(declaration, struct declaration_array, p); struct definition_array *array; int ret; int i; array = g_new(struct definition_array, 1); bt_declaration_ref(&array_declaration->p); array->p.declaration = declaration; array->declaration = array_declaration; array->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ array->p.index = root_name ? INT_MAX : index; array->p.name = field_name; array->p.path = bt_new_definition_path(parent_scope, field_name, root_name); array->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); ret = bt_register_field_definition(field_name, &array->p, parent_scope); assert(!ret); array->string = NULL; array->elems = NULL; if (array_declaration->elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(array_declaration->elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { array->string = g_string_new(""); } } array->elems = g_ptr_array_sized_new(array_declaration->len); g_ptr_array_set_size(array->elems, array_declaration->len); for (i = 0; i < array_declaration->len; i++) { struct bt_definition **field; GString *str; GQuark name; str = g_string_new(""); g_string_printf(str, "[%u]", (unsigned int) i); name = g_quark_from_string(str->str); (void) g_string_free(str, TRUE); field = (struct bt_definition **) &g_ptr_array_index(array->elems, i); *field = array_declaration->elem->definition_new(array_declaration->elem, array->p.scope, name, i, NULL); if (!*field) goto error; } return &array->p; error: for (i--; i >= 0; i--) { struct bt_definition *field; field = g_ptr_array_index(array->elems, i); field->declaration->definition_free(field); } (void) g_ptr_array_free(array->elems, TRUE); bt_free_definition_scope(array->p.scope); bt_declaration_unref(array->p.declaration); g_free(array); return NULL; } static void _array_definition_free(struct bt_definition *definition) { struct definition_array *array = container_of(definition, struct definition_array, p); uint64_t i; if (array->string) (void) g_string_free(array->string, TRUE); if (array->elems) { for (i = 0; i < array->elems->len; i++) { struct bt_definition *field; field = g_ptr_array_index(array->elems, i); field->declaration->definition_free(field); } (void) g_ptr_array_free(array->elems, TRUE); } bt_free_definition_scope(array->p.scope); bt_declaration_unref(array->p.declaration); g_free(array); } uint64_t bt_array_len(struct definition_array *array) { if (!array->elems) return array->string->len; return array->elems->len; } struct bt_definition *bt_array_index(struct definition_array *array, uint64_t i) { if (!array->elems) return NULL; if (i >= array->elems->len) return NULL; return g_ptr_array_index(array->elems, i); } int bt_get_array_len(const struct bt_definition *field) { struct definition_array *array_definition; struct declaration_array *array_declaration; array_definition = container_of(field, struct definition_array, p); array_declaration = array_definition->declaration; return array_declaration->len; } GString *bt_get_char_array(const struct bt_definition *field) { struct definition_array *array_definition; struct declaration_array *array_declaration; struct bt_declaration *elem; array_definition = container_of(field, struct definition_array, p); array_declaration = array_definition->declaration; elem = array_declaration->elem; if (elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { return array_definition->string; } } } fprintf(stderr, "[warning] Extracting string\n"); return NULL; } babeltrace-1.2.1/types/variant.c0000644000175000017500000002453612303205563013505 00000000000000/* * variant.c * * BabelTrace - Variant Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include static struct bt_definition *_variant_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _variant_definition_free(struct bt_definition *definition); int bt_variant_rw(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_variant *variant_definition = container_of(definition, struct definition_variant, p); struct bt_definition *field; field = bt_variant_get_current_field(variant_definition); if (!field) { return -EINVAL; } return generic_rw(ppos, field); } static void _untagged_variant_declaration_free(struct bt_declaration *declaration) { struct declaration_untagged_variant *untagged_variant_declaration = container_of(declaration, struct declaration_untagged_variant, p); unsigned long i; bt_free_declaration_scope(untagged_variant_declaration->scope); g_hash_table_destroy(untagged_variant_declaration->fields_by_tag); for (i = 0; i < untagged_variant_declaration->fields->len; i++) { struct declaration_field *declaration_field = &g_array_index(untagged_variant_declaration->fields, struct declaration_field, i); bt_declaration_unref(declaration_field->declaration); } g_array_free(untagged_variant_declaration->fields, true); g_free(untagged_variant_declaration); } struct declaration_untagged_variant *bt_untagged_bt_variant_declaration_new( struct declaration_scope *parent_scope) { struct declaration_untagged_variant *untagged_variant_declaration; struct bt_declaration *declaration; untagged_variant_declaration = g_new(struct declaration_untagged_variant, 1); declaration = &untagged_variant_declaration->p; untagged_variant_declaration->fields_by_tag = g_hash_table_new(g_direct_hash, g_direct_equal); untagged_variant_declaration->fields = g_array_sized_new(FALSE, TRUE, sizeof(struct declaration_field), DEFAULT_NR_STRUCT_FIELDS); untagged_variant_declaration->scope = bt_new_declaration_scope(parent_scope); declaration->id = CTF_TYPE_UNTAGGED_VARIANT; declaration->alignment = 1; declaration->declaration_free = _untagged_variant_declaration_free; declaration->definition_new = NULL; declaration->definition_free = NULL; declaration->ref = 1; return untagged_variant_declaration; } static void _variant_declaration_free(struct bt_declaration *declaration) { struct declaration_variant *variant_declaration = container_of(declaration, struct declaration_variant, p); bt_declaration_unref(&variant_declaration->untagged_variant->p); g_array_free(variant_declaration->tag_name, TRUE); g_free(variant_declaration); } struct declaration_variant * bt_variant_declaration_new(struct declaration_untagged_variant *untagged_variant, const char *tag) { struct declaration_variant *variant_declaration; struct bt_declaration *declaration; variant_declaration = g_new(struct declaration_variant, 1); declaration = &variant_declaration->p; variant_declaration->untagged_variant = untagged_variant; bt_declaration_ref(&untagged_variant->p); variant_declaration->tag_name = g_array_new(FALSE, TRUE, sizeof(GQuark)); bt_append_scope_path(tag, variant_declaration->tag_name); declaration->id = CTF_TYPE_VARIANT; declaration->alignment = 1; declaration->declaration_free = _variant_declaration_free; declaration->definition_new = _variant_definition_new; declaration->definition_free = _variant_definition_free; declaration->ref = 1; return variant_declaration; } static struct bt_definition * _variant_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_variant *variant_declaration = container_of(declaration, struct declaration_variant, p); struct definition_variant *variant; unsigned long i; int ret; variant = g_new(struct definition_variant, 1); bt_declaration_ref(&variant_declaration->p); variant->p.declaration = declaration; variant->declaration = variant_declaration; variant->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ variant->p.index = root_name ? INT_MAX : index; variant->p.name = field_name; variant->p.path = bt_new_definition_path(parent_scope, field_name, root_name); variant->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); ret = bt_register_field_definition(field_name, &variant->p, parent_scope); assert(!ret); variant->enum_tag = bt_lookup_path_definition(variant->p.scope->scope_path, variant_declaration->tag_name, parent_scope); if (!variant->enum_tag) goto error; bt_definition_ref(variant->enum_tag); variant->fields = g_ptr_array_sized_new(variant_declaration->untagged_variant->fields->len); g_ptr_array_set_size(variant->fields, variant_declaration->untagged_variant->fields->len); for (i = 0; i < variant_declaration->untagged_variant->fields->len; i++) { struct declaration_field *declaration_field = &g_array_index(variant_declaration->untagged_variant->fields, struct declaration_field, i); struct bt_definition **field = (struct bt_definition **) &g_ptr_array_index(variant->fields, i); /* * All child definition are at index 0, because they are * various choices of the same field. */ *field = declaration_field->declaration->definition_new(declaration_field->declaration, variant->p.scope, declaration_field->name, 0, NULL); if (!*field) goto error; } variant->current_field = NULL; return &variant->p; error: bt_free_definition_scope(variant->p.scope); bt_declaration_unref(&variant_declaration->p); g_free(variant); return NULL; } static void _variant_definition_free(struct bt_definition *definition) { struct definition_variant *variant = container_of(definition, struct definition_variant, p); unsigned long i; assert(variant->fields->len == variant->declaration->untagged_variant->fields->len); for (i = 0; i < variant->fields->len; i++) { struct bt_definition *field = g_ptr_array_index(variant->fields, i); bt_definition_unref(field); } bt_definition_unref(variant->enum_tag); bt_free_definition_scope(variant->p.scope); bt_declaration_unref(variant->p.declaration); g_ptr_array_free(variant->fields, TRUE); g_free(variant); } void bt_untagged_variant_declaration_add_field(struct declaration_untagged_variant *untagged_variant_declaration, const char *field_name, struct bt_declaration *field_declaration) { struct declaration_field *field; unsigned long index; g_array_set_size(untagged_variant_declaration->fields, untagged_variant_declaration->fields->len + 1); index = untagged_variant_declaration->fields->len - 1; /* last field (new) */ field = &g_array_index(untagged_variant_declaration->fields, struct declaration_field, index); field->name = g_quark_from_string(field_name); bt_declaration_ref(field_declaration); field->declaration = field_declaration; /* Keep index in hash rather than pointer, because array can relocate */ g_hash_table_insert(untagged_variant_declaration->fields_by_tag, (gpointer) (unsigned long) field->name, (gpointer) index); /* * Alignment of variant is based on the alignment of its currently * selected choice, so we leave variant alignment as-is (statically * speaking). */ } struct declaration_field * bt_untagged_variant_declaration_get_field_from_tag(struct declaration_untagged_variant *untagged_variant_declaration, GQuark tag) { gpointer index; gboolean found; found = g_hash_table_lookup_extended( untagged_variant_declaration->fields_by_tag, (gconstpointer) (unsigned long) tag, NULL, &index); if (!found) { return NULL; } return &g_array_index(untagged_variant_declaration->fields, struct declaration_field, (unsigned long)index); } /* * field returned only valid as long as the field structure is not appended to. */ struct bt_definition *bt_variant_get_current_field(struct definition_variant *variant) { struct definition_enum *_enum = container_of(variant->enum_tag, struct definition_enum, p); struct declaration_variant *variant_declaration = variant->declaration; unsigned long index; GArray *tag_array; GQuark tag; gpointer orig_key, value; tag_array = _enum->value; if (!tag_array) { /* Enumeration has unknown tag. */ fprintf(stderr, "[error] Enumeration used for variant has unknown tag.\n"); return NULL; } /* * The 1 to 1 mapping from enumeration to value should have been already * checked. (see TODO above) */ assert(tag_array->len == 1); tag = g_array_index(tag_array, GQuark, 0); if (!g_hash_table_lookup_extended(variant_declaration->untagged_variant->fields_by_tag, (gconstpointer) (unsigned long) tag, &orig_key, &value)) { /* Cannot find matching field. */ fprintf(stderr, "[error] Cannot find matching field for enum field \"%s\" in variant.\n", g_quark_to_string(tag)); return NULL; } index = (unsigned long) value; variant->current_field = g_ptr_array_index(variant->fields, index); return variant->current_field; } babeltrace-1.2.1/types/Makefile.am0000644000175000017500000000036011725513332013721 00000000000000AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libbabeltrace_types.la libbabeltrace_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c \ types.c babeltrace-1.2.1/types/sequence.c0000644000175000017500000001746512272477052013665 00000000000000/* * sequence.c * * BabelTrace - Sequence Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include static struct bt_definition *_sequence_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _sequence_definition_free(struct bt_definition *definition); int bt_sequence_rw(struct bt_stream_pos *pos, struct bt_definition *definition) { struct definition_sequence *sequence_definition = container_of(definition, struct definition_sequence, p); const struct declaration_sequence *sequence_declaration = sequence_definition->declaration; uint64_t len, oldlen, i; int ret; len = sequence_definition->length->value._unsigned; /* * Yes, large sequences could be _painfully slow_ to parse due * to memory allocation for each event read. At least, never * shrink the sequence. Note: the sequence GArray len should * never be used as indicator of the current sequence length. * One should always look at the sequence->len->value._unsigned * value for that. */ oldlen = sequence_definition->elems->len; if (oldlen < len) g_ptr_array_set_size(sequence_definition->elems, len); for (i = oldlen; i < len; i++) { struct bt_definition **field; GString *str; GQuark name; str = g_string_new(""); g_string_printf(str, "[%" PRIu64 "]", i); name = g_quark_from_string(str->str); (void) g_string_free(str, TRUE); field = (struct bt_definition **) &g_ptr_array_index(sequence_definition->elems, i); *field = sequence_declaration->elem->definition_new(sequence_declaration->elem, sequence_definition->p.scope, name, i, NULL); } for (i = 0; i < len; i++) { struct bt_definition **field; field = (struct bt_definition **) &g_ptr_array_index(sequence_definition->elems, i); ret = generic_rw(pos, *field); if (ret) return ret; } return 0; } static void _sequence_declaration_free(struct bt_declaration *declaration) { struct declaration_sequence *sequence_declaration = container_of(declaration, struct declaration_sequence, p); bt_free_declaration_scope(sequence_declaration->scope); g_array_free(sequence_declaration->length_name, TRUE); bt_declaration_unref(sequence_declaration->elem); g_free(sequence_declaration); } struct declaration_sequence * bt_sequence_declaration_new(const char *length, struct bt_declaration *elem_declaration, struct declaration_scope *parent_scope) { struct declaration_sequence *sequence_declaration; struct bt_declaration *declaration; sequence_declaration = g_new(struct declaration_sequence, 1); declaration = &sequence_declaration->p; sequence_declaration->length_name = g_array_new(FALSE, TRUE, sizeof(GQuark)); bt_append_scope_path(length, sequence_declaration->length_name); bt_declaration_ref(elem_declaration); sequence_declaration->elem = elem_declaration; sequence_declaration->scope = bt_new_declaration_scope(parent_scope); declaration->id = CTF_TYPE_SEQUENCE; declaration->alignment = elem_declaration->alignment; declaration->declaration_free = _sequence_declaration_free; declaration->definition_new = _sequence_definition_new; declaration->definition_free = _sequence_definition_free; declaration->ref = 1; return sequence_declaration; } static struct bt_definition *_sequence_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_sequence *sequence_declaration = container_of(declaration, struct declaration_sequence, p); struct definition_sequence *sequence; struct bt_definition *len_parent; int ret; sequence = g_new(struct definition_sequence, 1); bt_declaration_ref(&sequence_declaration->p); sequence->p.declaration = declaration; sequence->declaration = sequence_declaration; sequence->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ sequence->p.index = root_name ? INT_MAX : index; sequence->p.name = field_name; sequence->p.path = bt_new_definition_path(parent_scope, field_name, root_name); sequence->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); ret = bt_register_field_definition(field_name, &sequence->p, parent_scope); assert(!ret); len_parent = bt_lookup_path_definition(sequence->p.scope->scope_path, sequence_declaration->length_name, parent_scope); if (!len_parent) { printf("[error] Lookup for sequence length field failed.\n"); goto error; } sequence->length = container_of(len_parent, struct definition_integer, p); if (sequence->length->declaration->signedness) { printf("[error] Sequence length field should be unsigned.\n"); goto error; } bt_definition_ref(len_parent); sequence->string = NULL; sequence->elems = NULL; if (sequence_declaration->elem->id == CTF_TYPE_INTEGER) { struct declaration_integer *integer_declaration = container_of(sequence_declaration->elem, struct declaration_integer, p); if (integer_declaration->encoding == CTF_STRING_UTF8 || integer_declaration->encoding == CTF_STRING_ASCII) { sequence->string = g_string_new(""); if (integer_declaration->len == CHAR_BIT && integer_declaration->p.alignment == CHAR_BIT) { return &sequence->p; } } } sequence->elems = g_ptr_array_new(); return &sequence->p; error: bt_free_definition_scope(sequence->p.scope); bt_declaration_unref(&sequence_declaration->p); g_free(sequence); return NULL; } static void _sequence_definition_free(struct bt_definition *definition) { struct definition_sequence *sequence = container_of(definition, struct definition_sequence, p); struct bt_definition *len_definition = &sequence->length->p; uint64_t i; if (sequence->string) (void) g_string_free(sequence->string, TRUE); if (sequence->elems) { for (i = 0; i < sequence->elems->len; i++) { struct bt_definition *field; field = g_ptr_array_index(sequence->elems, i); field->declaration->definition_free(field); } (void) g_ptr_array_free(sequence->elems, TRUE); } bt_definition_unref(len_definition); bt_free_definition_scope(sequence->p.scope); bt_declaration_unref(sequence->p.declaration); g_free(sequence); } uint64_t bt_sequence_len(struct definition_sequence *sequence) { return sequence->length->value._unsigned; } struct bt_definition *bt_sequence_index(struct definition_sequence *sequence, uint64_t i) { if (!sequence->elems) return NULL; if (i >= sequence->length->value._unsigned) return NULL; assert(i < sequence->elems->len); return g_ptr_array_index(sequence->elems, i); } babeltrace-1.2.1/types/Makefile.in0000644000175000017500000004267012306621105013736 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = types DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libbabeltrace_types_la_LIBADD = am_libbabeltrace_types_la_OBJECTS = array.lo enum.lo float.lo \ integer.lo sequence.lo string.lo struct.lo variant.lo types.lo libbabeltrace_types_la_OBJECTS = $(am_libbabeltrace_types_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libbabeltrace_types_la_SOURCES) DIST_SOURCES = $(libbabeltrace_types_la_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include noinst_LTLIBRARIES = libbabeltrace_types.la libbabeltrace_types_la_SOURCES = \ array.c \ enum.c \ float.c \ integer.c \ sequence.c \ string.c \ struct.c \ variant.c \ types.c all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign types/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign types/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libbabeltrace_types.la: $(libbabeltrace_types_la_OBJECTS) $(libbabeltrace_types_la_DEPENDENCIES) $(EXTRA_libbabeltrace_types_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libbabeltrace_types_la_OBJECTS) $(libbabeltrace_types_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enum.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/float.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/integer.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sequence.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/string.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/struct.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/types.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/variant.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/types/float.c0000644000175000017500000001343512272477052013153 00000000000000/* * float.c * * BabelTrace - Float Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include static struct bt_definition *_float_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _float_definition_free(struct bt_definition *definition); static void _float_declaration_free(struct bt_declaration *declaration) { struct declaration_float *float_declaration = container_of(declaration, struct declaration_float, p); bt_declaration_unref(&float_declaration->exp->p); bt_declaration_unref(&float_declaration->mantissa->p); bt_declaration_unref(&float_declaration->sign->p); g_free(float_declaration); } struct declaration_float * bt_float_declaration_new(size_t mantissa_len, size_t exp_len, int byte_order, size_t alignment) { struct declaration_float *float_declaration; struct bt_declaration *declaration; float_declaration = g_new(struct declaration_float, 1); declaration = &float_declaration->p; declaration->id = CTF_TYPE_FLOAT; declaration->alignment = alignment; declaration->declaration_free = _float_declaration_free; declaration->definition_new = _float_definition_new; declaration->definition_free = _float_definition_free; declaration->ref = 1; float_declaration->byte_order = byte_order; float_declaration->sign = bt_integer_declaration_new(1, byte_order, false, 1, 2, CTF_STRING_NONE, NULL); float_declaration->mantissa = bt_integer_declaration_new(mantissa_len - 1, byte_order, false, 1, 10, CTF_STRING_NONE, NULL); float_declaration->exp = bt_integer_declaration_new(exp_len, byte_order, true, 1, 10, CTF_STRING_NONE, NULL); return float_declaration; } static struct bt_definition * _float_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_float *float_declaration = container_of(declaration, struct declaration_float, p); struct definition_float *_float; struct bt_definition *tmp; _float = g_new(struct definition_float, 1); bt_declaration_ref(&float_declaration->p); _float->p.declaration = declaration; _float->declaration = float_declaration; _float->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); _float->p.path = bt_new_definition_path(parent_scope, field_name, root_name); if (float_declaration->byte_order == LITTLE_ENDIAN) { tmp = float_declaration->mantissa->p.definition_new(&float_declaration->mantissa->p, _float->p.scope, g_quark_from_static_string("mantissa"), 0, NULL); _float->mantissa = container_of(tmp, struct definition_integer, p); tmp = float_declaration->exp->p.definition_new(&float_declaration->exp->p, _float->p.scope, g_quark_from_static_string("exp"), 1, NULL); _float->exp = container_of(tmp, struct definition_integer, p); tmp = float_declaration->sign->p.definition_new(&float_declaration->sign->p, _float->p.scope, g_quark_from_static_string("sign"), 2, NULL); _float->sign = container_of(tmp, struct definition_integer, p); } else { tmp = float_declaration->sign->p.definition_new(&float_declaration->sign->p, _float->p.scope, g_quark_from_static_string("sign"), 0, NULL); _float->sign = container_of(tmp, struct definition_integer, p); tmp = float_declaration->exp->p.definition_new(&float_declaration->exp->p, _float->p.scope, g_quark_from_static_string("exp"), 1, NULL); _float->exp = container_of(tmp, struct definition_integer, p); tmp = float_declaration->mantissa->p.definition_new(&float_declaration->mantissa->p, _float->p.scope, g_quark_from_static_string("mantissa"), 2, NULL); _float->mantissa = container_of(tmp, struct definition_integer, p); } _float->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ _float->p.index = root_name ? INT_MAX : index; _float->p.name = field_name; _float->value = 0.0; if (parent_scope) { int ret; ret = bt_register_field_definition(field_name, &_float->p, parent_scope); assert(!ret); } return &_float->p; } static void _float_definition_free(struct bt_definition *definition) { struct definition_float *_float = container_of(definition, struct definition_float, p); bt_definition_unref(&_float->sign->p); bt_definition_unref(&_float->exp->p); bt_definition_unref(&_float->mantissa->p); bt_free_definition_scope(_float->p.scope); bt_declaration_unref(_float->p.declaration); g_free(_float); } babeltrace-1.2.1/types/integer.c0000644000175000017500000001540312272477052013500 00000000000000/* * integer.c * * BabelTrace - Integer Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include static struct bt_definition *_integer_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _integer_definition_free(struct bt_definition *definition); static void _integer_declaration_free(struct bt_declaration *declaration) { struct declaration_integer *integer_declaration = container_of(declaration, struct declaration_integer, p); g_free(integer_declaration); } struct declaration_integer * bt_integer_declaration_new(size_t len, int byte_order, int signedness, size_t alignment, int base, enum ctf_string_encoding encoding, struct ctf_clock *clock) { struct declaration_integer *integer_declaration; integer_declaration = g_new(struct declaration_integer, 1); integer_declaration->p.id = CTF_TYPE_INTEGER; integer_declaration->p.alignment = alignment; integer_declaration->p.declaration_free = _integer_declaration_free; integer_declaration->p.definition_free = _integer_definition_free; integer_declaration->p.definition_new = _integer_definition_new; integer_declaration->p.ref = 1; integer_declaration->len = len; integer_declaration->byte_order = byte_order; integer_declaration->signedness = signedness; integer_declaration->base = base; integer_declaration->encoding = encoding; integer_declaration->clock = clock; return integer_declaration; } static struct bt_definition * _integer_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_integer *integer_declaration = container_of(declaration, struct declaration_integer, p); struct definition_integer *integer; int ret; integer = g_new(struct definition_integer, 1); bt_declaration_ref(&integer_declaration->p); integer->p.declaration = declaration; integer->declaration = integer_declaration; integer->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ integer->p.index = root_name ? INT_MAX : index; integer->p.name = field_name; integer->p.path = bt_new_definition_path(parent_scope, field_name, root_name); integer->p.scope = NULL; integer->value._unsigned = 0; ret = bt_register_field_definition(field_name, &integer->p, parent_scope); assert(!ret); return &integer->p; } static void _integer_definition_free(struct bt_definition *definition) { struct definition_integer *integer = container_of(definition, struct definition_integer, p); bt_declaration_unref(integer->p.declaration); g_free(integer); } enum ctf_string_encoding bt_get_int_encoding(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; return integer_declaration->encoding; } int bt_get_int_base(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; return integer_declaration->base; } size_t bt_get_int_len(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; return integer_declaration->len; } int bt_get_int_byte_order(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; return integer_declaration->byte_order; } int bt_get_int_signedness(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; return integer_declaration->signedness; } uint64_t bt_get_unsigned_int(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; if (!integer_declaration->signedness) { return integer_definition->value._unsigned; } fprintf(stderr, "[warning] Extracting unsigned value from a signed int (%s)\n", g_quark_to_string(field->name)); return (uint64_t)integer_definition->value._signed; } int64_t bt_get_signed_int(const struct bt_definition *field) { struct definition_integer *integer_definition; const struct declaration_integer *integer_declaration; integer_definition = container_of(field, struct definition_integer, p); integer_declaration = integer_definition->declaration; if (integer_declaration->signedness) { return integer_definition->value._signed; } fprintf(stderr, "[warning] Extracting signed value from an unsigned int (%s)\n", g_quark_to_string(field->name)); return (int64_t)integer_definition->value._unsigned; } babeltrace-1.2.1/types/types.c0000644000175000017500000004442312272477052013213 00000000000000/* * types.c * * BabelTrace - Converter * * Types registry. * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include static GQuark prefix_quark(const char *prefix, GQuark quark) { GQuark nq; GString *str; char *quark_str; str = g_string_new(prefix); g_string_append(str, g_quark_to_string(quark)); quark_str = g_string_free(str, FALSE); nq = g_quark_from_string(quark_str); g_free(quark_str); return nq; } static struct bt_declaration * bt_lookup_declaration_scope(GQuark declaration_name, struct declaration_scope *scope) { return g_hash_table_lookup(scope->typedef_declarations, (gconstpointer) (unsigned long) declaration_name); } struct bt_declaration *bt_lookup_declaration(GQuark declaration_name, struct declaration_scope *scope) { struct bt_declaration *declaration; while (scope) { declaration = bt_lookup_declaration_scope(declaration_name, scope); if (declaration) return declaration; scope = scope->parent_scope; } return NULL; } int bt_register_declaration(GQuark name, struct bt_declaration *declaration, struct declaration_scope *scope) { if (!name) return -EPERM; /* Only lookup in local scope */ if (bt_lookup_declaration_scope(name, scope)) return -EEXIST; g_hash_table_insert(scope->typedef_declarations, (gpointer) (unsigned long) name, declaration); bt_declaration_ref(declaration); return 0; } static struct bt_definition * lookup_field_definition_scope(GQuark field_name, struct definition_scope *scope) { return g_hash_table_lookup(scope->definitions, (gconstpointer) (unsigned long) field_name); } /* * Returns the index at which the paths differ. * If the value returned equals len, it means the paths are identical * from index 0 to len-1. */ static int compare_paths(GArray *a, GArray *b, int len) { int i; assert(len <= a->len); assert(len <= b->len); for (i = 0; i < len; i++) { GQuark qa, qb; qa = g_array_index(a, GQuark, i); qb = g_array_index(b, GQuark, i); if (qa != qb) return i; } return i; } static int is_path_child_of(GArray *path, GArray *maybe_parent) { int ret; if (babeltrace_debug) { int i, need_dot = 0; printf_debug("Is path \""); for (i = 0; i < path->len; need_dot = 1, i++) printf("%s%s", need_dot ? "." : "", g_quark_to_string(g_array_index(path, GQuark, i))); need_dot = 0; printf("\" child of \""); for (i = 0; i < maybe_parent->len; need_dot = 1, i++) printf("%s%s", need_dot ? "." : "", g_quark_to_string(g_array_index(maybe_parent, GQuark, i))); printf("\" ? "); } if (path->len <= maybe_parent->len) { ret = 0; goto end; } if (compare_paths(path, maybe_parent, maybe_parent->len) == maybe_parent->len) ret = 1; else ret = 0; end: if (babeltrace_debug) printf("%s\n", ret ? "Yes" : "No"); return ret; } static struct definition_scope * get_definition_scope(const struct bt_definition *definition) { return definition->scope; } /* * OK, here is the fun. We want to lookup a field that is: * - either in the same dynamic scope: * - either in the current scope, but prior to the current field. * - or in a parent scope (or parent of parent ...) still in a field * prior to the current field position within the parents. * - or in a different dynamic scope: * - either in a upper dynamic scope (walk down a targeted scope from * the dynamic scope root) * - or in a lower dynamic scope (failure) * The dynamic scope roots are linked together, so we can access the * parent dynamic scope from the child dynamic scope by walking up to * the parent. * If we cannot find such a field that is prior to our current path, we * return NULL. * * cur_path: the path leading to the variant definition. * lookup_path: the path leading to the enum we want to look for. * scope: the definition scope containing the variant definition. */ struct bt_definition * bt_lookup_path_definition(GArray *cur_path, GArray *lookup_path, struct definition_scope *scope) { struct bt_definition *definition, *lookup_definition; GQuark last; int index; /* Going up in the hierarchy. Check where we come from. */ assert(is_path_child_of(cur_path, scope->scope_path)); assert(cur_path->len - scope->scope_path->len == 1); /* * First, check if the target name is size one, present in * our parent path, located prior to us. */ if (lookup_path->len == 1) { last = g_array_index(lookup_path, GQuark, 0); lookup_definition = lookup_field_definition_scope(last, scope); last = g_array_index(cur_path, GQuark, cur_path->len - 1); definition = lookup_field_definition_scope(last, scope); assert(definition); if (lookup_definition && lookup_definition->index < definition->index) return lookup_definition; else return NULL; } while (scope) { if (is_path_child_of(cur_path, scope->scope_path) && cur_path->len - scope->scope_path->len == 1) { last = g_array_index(cur_path, GQuark, cur_path->len - 1); definition = lookup_field_definition_scope(last, scope); assert(definition); index = definition->index; } else { /* * Getting to a dynamic scope parent. We are * guaranteed that the parent is entirely * located before the child. */ index = -1; } lookup: if (is_path_child_of(lookup_path, scope->scope_path)) { /* Means we can lookup the field in this scope */ last = g_array_index(lookup_path, GQuark, scope->scope_path->len); lookup_definition = lookup_field_definition_scope(last, scope); if (!lookup_definition || ((index != -1) && lookup_definition->index >= index)) return NULL; /* Found it! And it is prior to the current field. */ if (lookup_path->len - scope->scope_path->len == 1) { /* Direct child */ return lookup_definition; } else { scope = get_definition_scope(lookup_definition); /* Check if the definition has a sub-scope */ if (!scope) return NULL; /* * Don't compare index anymore, because we are * going within a scope that has been validated * to be entirely prior to the current scope. */ cur_path = NULL; index = -1; goto lookup; } } else { /* lookup_path is within an upper scope */ cur_path = scope->scope_path; scope = scope->parent_scope; } } return NULL; } int bt_register_field_definition(GQuark field_name, struct bt_definition *definition, struct definition_scope *scope) { if (!scope || !field_name) return -EPERM; /* Only lookup in local scope */ if (lookup_field_definition_scope(field_name, scope)) return -EEXIST; g_hash_table_insert(scope->definitions, (gpointer) (unsigned long) field_name, definition); /* Don't keep reference on definition */ return 0; } void bt_declaration_ref(struct bt_declaration *declaration) { declaration->ref++; } void bt_declaration_unref(struct bt_declaration *declaration) { if (!declaration) return; if (!--declaration->ref) declaration->declaration_free(declaration); } void bt_definition_ref(struct bt_definition *definition) { definition->ref++; } void bt_definition_unref(struct bt_definition *definition) { if (!definition) return; if (!--definition->ref) definition->declaration->definition_free(definition); } struct declaration_scope * bt_new_declaration_scope(struct declaration_scope *parent_scope) { struct declaration_scope *scope = g_new(struct declaration_scope, 1); scope->typedef_declarations = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) bt_declaration_unref); scope->struct_declarations = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) bt_declaration_unref); scope->variant_declarations = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) bt_declaration_unref); scope->enum_declarations = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, (GDestroyNotify) bt_declaration_unref); scope->parent_scope = parent_scope; return scope; } void bt_free_declaration_scope(struct declaration_scope *scope) { g_hash_table_destroy(scope->enum_declarations); g_hash_table_destroy(scope->variant_declarations); g_hash_table_destroy(scope->struct_declarations); g_hash_table_destroy(scope->typedef_declarations); g_free(scope); } static struct declaration_struct *bt_lookup_struct_declaration_scope(GQuark struct_name, struct declaration_scope *scope) { return g_hash_table_lookup(scope->struct_declarations, (gconstpointer) (unsigned long) struct_name); } struct declaration_struct *bt_lookup_struct_declaration(GQuark struct_name, struct declaration_scope *scope) { struct declaration_struct *declaration; while (scope) { declaration = bt_lookup_struct_declaration_scope(struct_name, scope); if (declaration) return declaration; scope = scope->parent_scope; } return NULL; } int bt_register_struct_declaration(GQuark struct_name, struct declaration_struct *struct_declaration, struct declaration_scope *scope) { GQuark prefix_name; int ret; if (!struct_name) return -EPERM; /* Only lookup in local scope */ if (bt_lookup_struct_declaration_scope(struct_name, scope)) return -EEXIST; g_hash_table_insert(scope->struct_declarations, (gpointer) (unsigned long) struct_name, struct_declaration); bt_declaration_ref(&struct_declaration->p); /* Also add in typedef/typealias scopes */ prefix_name = prefix_quark("struct ", struct_name); ret = bt_register_declaration(prefix_name, &struct_declaration->p, scope); assert(!ret); return 0; } static struct declaration_untagged_variant * bt_lookup_variant_declaration_scope(GQuark variant_name, struct declaration_scope *scope) { return g_hash_table_lookup(scope->variant_declarations, (gconstpointer) (unsigned long) variant_name); } struct declaration_untagged_variant * bt_lookup_variant_declaration(GQuark variant_name, struct declaration_scope *scope) { struct declaration_untagged_variant *declaration; while (scope) { declaration = bt_lookup_variant_declaration_scope(variant_name, scope); if (declaration) return declaration; scope = scope->parent_scope; } return NULL; } int bt_register_variant_declaration(GQuark variant_name, struct declaration_untagged_variant *untagged_variant_declaration, struct declaration_scope *scope) { GQuark prefix_name; int ret; if (!variant_name) return -EPERM; /* Only lookup in local scope */ if (bt_lookup_variant_declaration_scope(variant_name, scope)) return -EEXIST; g_hash_table_insert(scope->variant_declarations, (gpointer) (unsigned long) variant_name, untagged_variant_declaration); bt_declaration_ref(&untagged_variant_declaration->p); /* Also add in typedef/typealias scopes */ prefix_name = prefix_quark("variant ", variant_name); ret = bt_register_declaration(prefix_name, &untagged_variant_declaration->p, scope); assert(!ret); return 0; } static struct declaration_enum * bt_lookup_enum_declaration_scope(GQuark enum_name, struct declaration_scope *scope) { return g_hash_table_lookup(scope->enum_declarations, (gconstpointer) (unsigned long) enum_name); } struct declaration_enum * bt_lookup_enum_declaration(GQuark enum_name, struct declaration_scope *scope) { struct declaration_enum *declaration; while (scope) { declaration = bt_lookup_enum_declaration_scope(enum_name, scope); if (declaration) return declaration; scope = scope->parent_scope; } return NULL; } int bt_register_enum_declaration(GQuark enum_name, struct declaration_enum *enum_declaration, struct declaration_scope *scope) { GQuark prefix_name; int ret; if (!enum_name) return -EPERM; /* Only lookup in local scope */ if (bt_lookup_enum_declaration_scope(enum_name, scope)) return -EEXIST; g_hash_table_insert(scope->enum_declarations, (gpointer) (unsigned long) enum_name, enum_declaration); bt_declaration_ref(&enum_declaration->p); /* Also add in typedef/typealias scopes */ prefix_name = prefix_quark("enum ", enum_name); ret = bt_register_declaration(prefix_name, &enum_declaration->p, scope); assert(!ret); return 0; } static struct definition_scope * _bt_new_definition_scope(struct definition_scope *parent_scope, int scope_path_len) { struct definition_scope *scope = g_new(struct definition_scope, 1); scope->definitions = g_hash_table_new(g_direct_hash, g_direct_equal); scope->parent_scope = parent_scope; scope->scope_path = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), scope_path_len); g_array_set_size(scope->scope_path, scope_path_len); return scope; } GQuark bt_new_definition_path(struct definition_scope *parent_scope, GQuark field_name, const char *root_name) { GQuark path; GString *str; gchar *c_str; int need_dot = 0; str = g_string_new(""); if (root_name) { g_string_append(str, root_name); need_dot = 1; } else if (parent_scope) { int i; for (i = 0; i < parent_scope->scope_path->len; i++) { GQuark q = g_array_index(parent_scope->scope_path, GQuark, i); if (!q) continue; if (need_dot) g_string_append(str, "."); g_string_append(str, g_quark_to_string(q)); need_dot = 1; } } if (field_name) { if (need_dot) g_string_append(str, "."); g_string_append(str, g_quark_to_string(field_name)); } c_str = g_string_free(str, FALSE); if (c_str[0] == '\0') return 0; path = g_quark_from_string(c_str); printf_debug("new definition path: %s\n", c_str); g_free(c_str); return path; } struct definition_scope * bt_new_definition_scope(struct definition_scope *parent_scope, GQuark field_name, const char *root_name) { struct definition_scope *scope; if (root_name) { scope = _bt_new_definition_scope(parent_scope, 0); bt_append_scope_path(root_name, scope->scope_path); } else { int scope_path_len = 1; assert(parent_scope); scope_path_len += parent_scope->scope_path->len; scope = _bt_new_definition_scope(parent_scope, scope_path_len); memcpy(scope->scope_path->data, parent_scope->scope_path->data, sizeof(GQuark) * (scope_path_len - 1)); g_array_index(scope->scope_path, GQuark, scope_path_len - 1) = field_name; } if (babeltrace_debug) { int i, need_dot = 0; printf_debug("new definition scope: "); for (i = 0; i < scope->scope_path->len; need_dot = 1, i++) printf("%s%s", need_dot ? "." : "", g_quark_to_string(g_array_index(scope->scope_path, GQuark, i))); printf("\n"); } return scope; } /* * in: path (dot separated), out: q (GArray of GQuark) */ void bt_append_scope_path(const char *path, GArray *q) { const char *ptrbegin, *ptrend = path; GQuark quark; for (;;) { char *str; size_t len; ptrbegin = ptrend; ptrend = strchr(ptrbegin, '.'); if (!ptrend) break; len = ptrend - ptrbegin; /* Don't accept two consecutive dots */ assert(len != 0); str = g_new(char, len + 1); /* include \0 */ memcpy(str, ptrbegin, len); str[len] = '\0'; quark = g_quark_from_string(str); g_array_append_val(q, quark); g_free(str); ptrend++; /* skip current dot */ } /* last. Check for trailing dot (and discard). */ if (ptrbegin[0] != '\0') { quark = g_quark_from_string(ptrbegin); g_array_append_val(q, quark); } } void bt_free_definition_scope(struct definition_scope *scope) { g_array_free(scope->scope_path, TRUE); g_hash_table_destroy(scope->definitions); g_free(scope); } struct bt_definition *bt_lookup_definition(const struct bt_definition *definition, const char *field_name) { struct definition_scope *scope = get_definition_scope(definition); if (!scope) return NULL; return lookup_field_definition_scope(g_quark_from_string(field_name), scope); } struct definition_integer *bt_lookup_integer(const struct bt_definition *definition, const char *field_name, int signedness) { struct bt_definition *lookup; struct definition_integer *lookup_integer; lookup = bt_lookup_definition(definition, field_name); if (!lookup) return NULL; if (lookup->declaration->id != CTF_TYPE_INTEGER) return NULL; lookup_integer = container_of(lookup, struct definition_integer, p); if (lookup_integer->declaration->signedness != signedness) return NULL; return lookup_integer; } struct definition_enum *bt_lookup_enum(const struct bt_definition *definition, const char *field_name, int signedness) { struct bt_definition *lookup; struct definition_enum *lookup_enum; lookup = bt_lookup_definition(definition, field_name); if (!lookup) return NULL; if (lookup->declaration->id != CTF_TYPE_ENUM) return NULL; lookup_enum = container_of(lookup, struct definition_enum, p); if (lookup_enum->integer->declaration->signedness != signedness) return NULL; return lookup_enum; } struct bt_definition *bt_lookup_variant(const struct bt_definition *definition, const char *field_name) { struct bt_definition *lookup; struct definition_variant *bt_lookup_variant; lookup = bt_lookup_definition(definition, field_name); if (!lookup) return NULL; if (lookup->declaration->id != CTF_TYPE_VARIANT) return NULL; bt_lookup_variant = container_of(lookup, struct definition_variant, p); lookup = bt_variant_get_current_field(bt_lookup_variant); assert(lookup); return lookup; } babeltrace-1.2.1/types/struct.c0000644000175000017500000002053012304150543013351 00000000000000/* * struct.c * * BabelTrace - Structure Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #ifndef max #define max(a, b) ((a) < (b) ? (b) : (a)) #endif static struct bt_definition *_struct_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _struct_definition_free(struct bt_definition *definition); int bt_struct_rw(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_struct *struct_definition = container_of(definition, struct definition_struct, p); unsigned long i; int ret; for (i = 0; i < struct_definition->fields->len; i++) { struct bt_definition *field = g_ptr_array_index(struct_definition->fields, i); ret = generic_rw(ppos, field); if (ret) return ret; } return 0; } static void _struct_declaration_free(struct bt_declaration *declaration) { struct declaration_struct *struct_declaration = container_of(declaration, struct declaration_struct, p); unsigned long i; bt_free_declaration_scope(struct_declaration->scope); g_hash_table_destroy(struct_declaration->fields_by_name); for (i = 0; i < struct_declaration->fields->len; i++) { struct declaration_field *declaration_field = &g_array_index(struct_declaration->fields, struct declaration_field, i); bt_declaration_unref(declaration_field->declaration); } g_array_free(struct_declaration->fields, true); g_free(struct_declaration); } struct declaration_struct * bt_struct_declaration_new(struct declaration_scope *parent_scope, uint64_t min_align) { struct declaration_struct *struct_declaration; struct bt_declaration *declaration; struct_declaration = g_new(struct declaration_struct, 1); declaration = &struct_declaration->p; struct_declaration->fields_by_name = g_hash_table_new(g_direct_hash, g_direct_equal); struct_declaration->fields = g_array_sized_new(FALSE, TRUE, sizeof(struct declaration_field), DEFAULT_NR_STRUCT_FIELDS); struct_declaration->scope = bt_new_declaration_scope(parent_scope); declaration->id = CTF_TYPE_STRUCT; declaration->alignment = max(1, min_align); declaration->declaration_free = _struct_declaration_free; declaration->definition_new = _struct_definition_new; declaration->definition_free = _struct_definition_free; declaration->ref = 1; return struct_declaration; } static struct bt_definition * _struct_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_struct *struct_declaration = container_of(declaration, struct declaration_struct, p); struct definition_struct *_struct; int i; int ret; _struct = g_new(struct definition_struct, 1); bt_declaration_ref(&struct_declaration->p); _struct->p.declaration = declaration; _struct->declaration = struct_declaration; _struct->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ _struct->p.index = root_name ? INT_MAX : index; _struct->p.name = field_name; _struct->p.path = bt_new_definition_path(parent_scope, field_name, root_name); _struct->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); ret = bt_register_field_definition(field_name, &_struct->p, parent_scope); assert(!ret || ret == -EPERM); _struct->fields = g_ptr_array_sized_new(DEFAULT_NR_STRUCT_FIELDS); g_ptr_array_set_size(_struct->fields, struct_declaration->fields->len); for (i = 0; i < struct_declaration->fields->len; i++) { struct declaration_field *declaration_field = &g_array_index(struct_declaration->fields, struct declaration_field, i); struct bt_definition **field = (struct bt_definition **) &g_ptr_array_index(_struct->fields, i); *field = declaration_field->declaration->definition_new(declaration_field->declaration, _struct->p.scope, declaration_field->name, i, NULL); if (!*field) goto error; } return &_struct->p; error: for (i--; i >= 0; i--) { struct bt_definition *field = g_ptr_array_index(_struct->fields, i); bt_definition_unref(field); } bt_free_definition_scope(_struct->p.scope); bt_declaration_unref(&struct_declaration->p); g_free(_struct); return NULL; } static void _struct_definition_free(struct bt_definition *definition) { struct definition_struct *_struct = container_of(definition, struct definition_struct, p); unsigned long i; assert(_struct->fields->len == _struct->declaration->fields->len); for (i = 0; i < _struct->fields->len; i++) { struct bt_definition *field = g_ptr_array_index(_struct->fields, i); bt_definition_unref(field); } bt_free_definition_scope(_struct->p.scope); bt_declaration_unref(_struct->p.declaration); g_ptr_array_free(_struct->fields, TRUE); g_free(_struct); } void bt_struct_declaration_add_field(struct declaration_struct *struct_declaration, const char *field_name, struct bt_declaration *field_declaration) { struct declaration_field *field; unsigned long index; g_array_set_size(struct_declaration->fields, struct_declaration->fields->len + 1); index = struct_declaration->fields->len - 1; /* last field (new) */ field = &g_array_index(struct_declaration->fields, struct declaration_field, index); field->name = g_quark_from_string(field_name); bt_declaration_ref(field_declaration); field->declaration = field_declaration; /* Keep index in hash rather than pointer, because array can relocate */ g_hash_table_insert(struct_declaration->fields_by_name, (gpointer) (unsigned long) field->name, (gpointer) index); /* * Alignment of structure is the max alignment of declarations contained * therein. */ struct_declaration->p.alignment = max(struct_declaration->p.alignment, field_declaration->alignment); } /* * bt_struct_declaration_lookup_field_index - returns field index * * Returns the index of a field in a structure, or -1 if it does not * exist. */ int bt_struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration, GQuark field_name) { gpointer index; gboolean found; found = g_hash_table_lookup_extended(struct_declaration->fields_by_name, (gconstpointer) (unsigned long) field_name, NULL, &index); if (!found) return -1; return (int) (unsigned long) index; } /* * field returned only valid as long as the field structure is not appended to. */ struct declaration_field * bt_struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration, int index) { if (index < 0) return NULL; return &g_array_index(struct_declaration->fields, struct declaration_field, index); } /* * field returned only valid as long as the field structure is not appended to. */ struct bt_definition * bt_struct_definition_get_field_from_index(const struct definition_struct *_struct, int index) { if (index < 0) return NULL; return g_ptr_array_index(_struct->fields, index); } uint64_t bt_struct_declaration_len(const struct declaration_struct *struct_declaration) { return struct_declaration->fields->len; } babeltrace-1.2.1/types/string.c0000644000175000017500000001040412272477052013345 00000000000000/* * string.c * * BabelTrace - String Type Converter * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include static struct bt_definition *_string_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _string_definition_free(struct bt_definition *definition); static void _string_declaration_free(struct bt_declaration *declaration) { struct declaration_string *string_declaration = container_of(declaration, struct declaration_string, p); g_free(string_declaration); } struct declaration_string * bt_string_declaration_new(enum ctf_string_encoding encoding) { struct declaration_string *string_declaration; string_declaration = g_new(struct declaration_string, 1); string_declaration->p.id = CTF_TYPE_STRING; string_declaration->p.alignment = CHAR_BIT; string_declaration->p.declaration_free = _string_declaration_free; string_declaration->p.definition_new = _string_definition_new; string_declaration->p.definition_free = _string_definition_free; string_declaration->p.ref = 1; string_declaration->encoding = encoding; return string_declaration; } static struct bt_definition * _string_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_string *string_declaration = container_of(declaration, struct declaration_string, p); struct definition_string *string; int ret; string = g_new(struct definition_string, 1); bt_declaration_ref(&string_declaration->p); string->p.declaration = declaration; string->declaration = string_declaration; string->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ string->p.index = root_name ? INT_MAX : index; string->p.name = field_name; string->p.path = bt_new_definition_path(parent_scope, field_name, root_name); string->p.scope = NULL; string->value = NULL; string->len = 0; string->alloc_len = 0; ret = bt_register_field_definition(field_name, &string->p, parent_scope); assert(!ret); return &string->p; } static void _string_definition_free(struct bt_definition *definition) { struct definition_string *string = container_of(definition, struct definition_string, p); bt_declaration_unref(string->p.declaration); g_free(string->value); g_free(string); } enum ctf_string_encoding bt_get_string_encoding(const struct bt_definition *field) { struct definition_string *string_definition; const struct declaration_string *string_declaration; string_definition = container_of(field, struct definition_string, p); string_declaration = string_definition->declaration; return string_declaration->encoding; } char *bt_get_string(const struct bt_definition *field) { struct definition_string *string_definition = container_of(field, struct definition_string, p); assert(string_definition->value != NULL); return string_definition->value; } babeltrace-1.2.1/types/enum.c0000644000175000017500000003132712272477052013012 00000000000000/* * enum.c * * BabelTrace - Enumeration Type * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #if (__LONG_MAX__ == 2147483647L) #define WORD_SIZE 32 #elif (__LONG_MAX__ == 9223372036854775807L) #define WORD_SIZE 64 #else #error "Unknown long size." #endif static struct bt_definition *_enum_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); static void _enum_definition_free(struct bt_definition *definition); static void enum_range_set_free(void *ptr) { g_array_unref(ptr); } #if (WORD_SIZE == 32) static inline gpointer get_uint_v(uint64_t *v) { return v; } static inline gpointer get_int_v(int64_t *v) { return v; } static guint enum_val_hash(gconstpointer key) { int64_t ukey = *(const int64_t *)key; return (guint)ukey ^ (guint)(ukey >> 32); } static gboolean enum_val_equal(gconstpointer a, gconstpointer b) { int64_t ua = *(const int64_t *)a; int64_t ub = *(const int64_t *)b; return ua == ub; } static void enum_val_free(void *ptr) { g_free(ptr); } #else /* WORD_SIZE != 32 */ static inline gpointer get_uint_v(uint64_t *v) { return (gpointer) *v; } static inline gpointer get_int_v(int64_t *v) { return (gpointer) *v; } static guint enum_val_hash(gconstpointer key) { return g_direct_hash(key); } static gboolean enum_val_equal(gconstpointer a, gconstpointer b) { return g_direct_equal(a, b); } static void enum_val_free(void *ptr) { } #endif /* WORD_SIZE != 32 */ /* * Returns a GArray or NULL. * Caller must release the GArray with g_array_unref(). */ GArray *bt_enum_uint_to_quark_set(const struct declaration_enum *enum_declaration, uint64_t v) { struct enum_range_to_quark *iter; GArray *qs, *ranges = NULL; /* Single values lookup */ qs = g_hash_table_lookup(enum_declaration->table.value_to_quark_set, get_uint_v(&v)); /* Range lookup */ bt_list_for_each_entry(iter, &enum_declaration->table.range_to_quark, node) { if (iter->range.start._unsigned > v || iter->range.end._unsigned < v) continue; if (!ranges) { size_t qs_len = 0; if (qs) qs_len = qs->len; ranges = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), qs_len + 1); g_array_set_size(ranges, qs_len + 1); if (qs) memcpy(ranges->data, qs->data, sizeof(GQuark) * qs_len); g_array_index(ranges, GQuark, qs_len) = iter->quark; } else { size_t qs_len = ranges->len; g_array_set_size(ranges, qs_len + 1); g_array_index(ranges, GQuark, qs_len) = iter->quark; } } if (!ranges) { if (!qs) return NULL; ranges = qs; g_array_ref(ranges); } return ranges; } /* * Returns a GArray or NULL. * Caller must release the GArray with g_array_unref(). */ GArray *bt_enum_int_to_quark_set(const struct declaration_enum *enum_declaration, int64_t v) { struct enum_range_to_quark *iter; GArray *qs, *ranges = NULL; /* Single values lookup */ qs = g_hash_table_lookup(enum_declaration->table.value_to_quark_set, get_int_v(&v)); /* Range lookup */ bt_list_for_each_entry(iter, &enum_declaration->table.range_to_quark, node) { if (iter->range.start._signed > v || iter->range.end._signed < v) continue; if (!ranges) { size_t qs_len = 0; if (qs) qs_len = qs->len; ranges = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), qs_len + 1); g_array_set_size(ranges, qs_len + 1); if (qs) memcpy(ranges->data, qs->data, sizeof(GQuark) * qs_len); g_array_index(ranges, GQuark, qs_len) = iter->quark; } else { size_t qs_len = ranges->len; g_array_set_size(ranges, qs_len + 1); g_array_index(ranges, GQuark, qs_len) = iter->quark; } } if (!ranges) { if (!qs) return NULL; ranges = qs; g_array_ref(ranges); } return ranges; } static void bt_enum_unsigned_insert_value_to_quark_set(struct declaration_enum *enum_declaration, uint64_t v, GQuark q) { uint64_t *valuep; GArray *array; array = g_hash_table_lookup(enum_declaration->table.value_to_quark_set, get_uint_v(&v)); if (!array) { array = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), 1); g_array_set_size(array, 1); g_array_index(array, GQuark, array->len - 1) = q; #if (WORD_SIZE == 32) valuep = g_new(uint64_t, 1); *valuep = v; #else /* WORD_SIZE != 32 */ valuep = get_uint_v(&v); #endif /* WORD_SIZE != 32 */ g_hash_table_insert(enum_declaration->table.value_to_quark_set, valuep, array); } else { g_array_set_size(array, array->len + 1); g_array_index(array, GQuark, array->len - 1) = q; } } static void bt_enum_signed_insert_value_to_quark_set(struct declaration_enum *enum_declaration, int64_t v, GQuark q) { int64_t *valuep; GArray *array; array = g_hash_table_lookup(enum_declaration->table.value_to_quark_set, get_int_v(&v)); if (!array) { array = g_array_sized_new(FALSE, TRUE, sizeof(GQuark), 1); g_array_set_size(array, 1); g_array_index(array, GQuark, array->len - 1) = q; #if (WORD_SIZE == 32) valuep = g_new(int64_t, 1); *valuep = v; #else /* WORD_SIZE != 32 */ valuep = get_int_v(&v); #endif /* WORD_SIZE != 32 */ g_hash_table_insert(enum_declaration->table.value_to_quark_set, valuep, array); } else { g_array_set_size(array, array->len + 1); g_array_index(array, GQuark, array->len - 1) = q; } } GArray *bt_enum_quark_to_range_set(const struct declaration_enum *enum_declaration, GQuark q) { return g_hash_table_lookup(enum_declaration->table.quark_to_range_set, (gconstpointer) (unsigned long) q); } static void bt_enum_signed_insert_range_to_quark(struct declaration_enum *enum_declaration, int64_t start, int64_t end, GQuark q) { struct enum_range_to_quark *rtoq; rtoq = g_new(struct enum_range_to_quark, 1); bt_list_add(&rtoq->node, &enum_declaration->table.range_to_quark); rtoq->range.start._signed = start; rtoq->range.end._signed = end; rtoq->quark = q; } static void bt_enum_unsigned_insert_range_to_quark(struct declaration_enum *enum_declaration, uint64_t start, uint64_t end, GQuark q) { struct enum_range_to_quark *rtoq; rtoq = g_new(struct enum_range_to_quark, 1); bt_list_add(&rtoq->node, &enum_declaration->table.range_to_quark); rtoq->range.start._unsigned = start; rtoq->range.end._unsigned = end; rtoq->quark = q; } void bt_enum_signed_insert(struct declaration_enum *enum_declaration, int64_t start, int64_t end, GQuark q) { GArray *array; struct enum_range *range; if (start == end) { bt_enum_signed_insert_value_to_quark_set(enum_declaration, start, q); } else { if (start > end) { uint64_t tmp; tmp = start; start = end; end = tmp; } bt_enum_signed_insert_range_to_quark(enum_declaration, start, end, q); } array = g_hash_table_lookup(enum_declaration->table.quark_to_range_set, (gconstpointer) (unsigned long) q); if (!array) { array = g_array_sized_new(FALSE, TRUE, sizeof(struct enum_range), 1); g_hash_table_insert(enum_declaration->table.quark_to_range_set, (gpointer) (unsigned long) q, array); } g_array_set_size(array, array->len + 1); range = &g_array_index(array, struct enum_range, array->len - 1); range->start._signed = start; range->end._signed = end; } void bt_enum_unsigned_insert(struct declaration_enum *enum_declaration, uint64_t start, uint64_t end, GQuark q) { GArray *array; struct enum_range *range; if (start == end) { bt_enum_unsigned_insert_value_to_quark_set(enum_declaration, start, q); } else { if (start > end) { uint64_t tmp; tmp = start; start = end; end = tmp; } bt_enum_unsigned_insert_range_to_quark(enum_declaration, start, end, q); } array = g_hash_table_lookup(enum_declaration->table.quark_to_range_set, (gconstpointer) (unsigned long) q); if (!array) { array = g_array_sized_new(FALSE, TRUE, sizeof(struct enum_range), 1); g_hash_table_insert(enum_declaration->table.quark_to_range_set, (gpointer) (unsigned long) q, array); } g_array_set_size(array, array->len + 1); range = &g_array_index(array, struct enum_range, array->len - 1); range->start._unsigned = start; range->end._unsigned = end; } size_t bt_enum_get_nr_enumerators(struct declaration_enum *enum_declaration) { return g_hash_table_size(enum_declaration->table.quark_to_range_set); } static void _enum_declaration_free(struct bt_declaration *declaration) { struct declaration_enum *enum_declaration = container_of(declaration, struct declaration_enum, p); struct enum_range_to_quark *iter, *tmp; g_hash_table_destroy(enum_declaration->table.value_to_quark_set); bt_list_for_each_entry_safe(iter, tmp, &enum_declaration->table.range_to_quark, node) { bt_list_del(&iter->node); g_free(iter); } g_hash_table_destroy(enum_declaration->table.quark_to_range_set); bt_declaration_unref(&enum_declaration->integer_declaration->p); g_free(enum_declaration); } struct declaration_enum * bt_enum_declaration_new(struct declaration_integer *integer_declaration) { struct declaration_enum *enum_declaration; enum_declaration = g_new(struct declaration_enum, 1); enum_declaration->table.value_to_quark_set = g_hash_table_new_full(enum_val_hash, enum_val_equal, enum_val_free, enum_range_set_free); BT_INIT_LIST_HEAD(&enum_declaration->table.range_to_quark); enum_declaration->table.quark_to_range_set = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, enum_range_set_free); bt_declaration_ref(&integer_declaration->p); enum_declaration->integer_declaration = integer_declaration; enum_declaration->p.id = CTF_TYPE_ENUM; enum_declaration->p.alignment = 1; enum_declaration->p.declaration_free = _enum_declaration_free; enum_declaration->p.definition_new = _enum_definition_new; enum_declaration->p.definition_free = _enum_definition_free; enum_declaration->p.ref = 1; return enum_declaration; } static struct bt_definition * _enum_definition_new(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name) { struct declaration_enum *enum_declaration = container_of(declaration, struct declaration_enum, p); struct definition_enum *_enum; struct bt_definition *definition_integer_parent; int ret; _enum = g_new(struct definition_enum, 1); bt_declaration_ref(&enum_declaration->p); _enum->p.declaration = declaration; _enum->declaration = enum_declaration; _enum->p.ref = 1; /* * Use INT_MAX order to ensure that all fields of the parent * scope are seen as being prior to this scope. */ _enum->p.index = root_name ? INT_MAX : index; _enum->p.name = field_name; _enum->p.path = bt_new_definition_path(parent_scope, field_name, root_name); _enum->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name); _enum->value = NULL; ret = bt_register_field_definition(field_name, &_enum->p, parent_scope); assert(!ret); definition_integer_parent = enum_declaration->integer_declaration->p.definition_new(&enum_declaration->integer_declaration->p, _enum->p.scope, g_quark_from_static_string("container"), 0, NULL); _enum->integer = container_of(definition_integer_parent, struct definition_integer, p); return &_enum->p; } static void _enum_definition_free(struct bt_definition *definition) { struct definition_enum *_enum = container_of(definition, struct definition_enum, p); bt_definition_unref(&_enum->integer->p); bt_free_definition_scope(_enum->p.scope); bt_declaration_unref(_enum->p.declaration); if (_enum->value) g_array_unref(_enum->value); g_free(_enum); } babeltrace-1.2.1/std-ext-lib.txt0000644000175000017500000000373111540013527013417 00000000000000Common Trace Format - Standards, Extensions and Libraries Mathieu Desnoyers September 26, 2010 This document describes the CTF library dependencies on standards, extensions and libraries. ** Standards * C99 This library is C99 compliant. A non-documented non-compliance should be reported as a bug. See the ISO/IEC 9899:TC2 publication: http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1124.pdf * IEEE 754-2008 The IEEE 754-2008 standard is used for binary floating point arithmetic representation. See: http://grouper.ieee.org/groups/754/ * GNU/C extensions This library uses some widely GNU/C extensions widely adopted by compilers. For detail, see: http://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html#C-Extensions ** Non-standard Dependencies In some cases, standards do not provide the required primitives to write portable code; these are listed here. * Non-standard endian.h endian.h is used to provide the following definitions: #define LITTLE_ENDIAN 1234 #define BIG_ENDIAN 4321 #define BYTE_ORDER /* Your architecture: BIG_ENDIAN or LITTLE_ENDIAN */ * Bitfields The ISO/IEC 9899 standard leaves bitfields implementation defined, which is unacceptable for portability of this library. Section 6.7.2.1 - "Structure and union specifiers", Semantic 10 specifically indicates that padding and order of bit-fields allocation within a unit is implementation-defined. This is why this library provides the bitfield.h header (under the MIT license), which specifies bitfields write primitives that uses the same field order as the GNU/C compiler, but does not require any padding for fields spreading across units. This is therefore a superset of the GNU/C bitfields, which can be dealt with by detecting C structure padding manually given the bit offset and bit-field size as well as the unit size. ** Libraries * The GLib library of C routines The library glib 2 is used for its basic data structures. See http://library.gnome.org/devel/glib/2.24/glib-data-types.html babeltrace-1.2.1/extras/0000755000175000017500000000000012306621160012103 500000000000000babeltrace-1.2.1/extras/Makefile.am0000644000175000017500000000002312075630002014050 00000000000000SUBDIRS = valgrind babeltrace-1.2.1/extras/Makefile.in0000644000175000017500000004502612306621104014075 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = extras DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = valgrind all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign extras/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign extras/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-generic clean-libtool \ ctags ctags-recursive distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/extras/valgrind/0000755000175000017500000000000012306621160013711 500000000000000babeltrace-1.2.1/extras/valgrind/Makefile.am0000644000175000017500000000002712075630002015662 00000000000000EXTRA_DIST = popt.supp babeltrace-1.2.1/extras/valgrind/Makefile.in0000644000175000017500000002706212306621104015703 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = extras/valgrind DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = popt.supp all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign extras/valgrind/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign extras/valgrind/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: babeltrace-1.2.1/extras/valgrind/popt.supp0000644000175000017500000000013012075630002015514 00000000000000{ Memcheck:Leak fun:malloc fun:poptGetNextOpt fun:main } babeltrace-1.2.1/configure.ac0000644000175000017500000001242012306620767013016 00000000000000# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_INIT([babeltrace],[1.2.1],[mathieu dot desnoyers at efficios dot com]) # Following the numbering scheme proposed by libtool for the library version # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html AC_SUBST([BABELTRACE_LIBRARY_VERSION], [1:0:0]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_MACRO_DIR([m4]) AC_PROG_MKDIR_P AC_CONFIG_HEADERS([config.h]) AC_SYS_LARGEFILE # Checks for programs. AC_PROG_CC_STDC AC_PROG_MAKE_SET LT_INIT AC_PROG_YACC AC_PROG_LEX if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then if test x"$YACC" != "xbison -y"; then AC_MSG_ERROR([[bison not found and is required when building from git. Please install bison]]) fi fi if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then if test x"$LEX" != "xflex"; then AC_MSG_ERROR([[flex not found and is required when building from git. Please install flex]]) fi fi AM_PATH_GLIB_2_0(2.22.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule) # Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE AC_TYPE_PID_T AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_MMAP AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul]) # Check for MinGW32. MINGW32=no case $host in *-*-mingw*) MINGW32=yes;; esac AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"]) # Check for libuuid AC_CHECK_LIB([uuid], [uuid_generate], [ AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.]) have_libuuid=yes ], [ # libuuid not found, check for uuid_create in libc. AC_CHECK_LIB([c], [uuid_create], [ AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.]) have_libc_uuid=yes ], [ # for MinGW32 we have our own internal implemenation of uuid using Windows functions. if test "x$MINGW32" = xno; then AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.]) fi ]) ] ) AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"]) AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"]) # Check for fmemopen AC_CHECK_LIB([c], [fmemopen], [ AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.]) ] ) # Check for open_memstream AC_CHECK_LIB([c], [open_memstream], [ AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.]) ] ) AC_CHECK_LIB([popt], [poptGetContext], [], [AC_MSG_ERROR([Cannot find popt.])] ) # For Python # SWIG version needed or newer: swig_version=2.0.0 AC_ARG_ENABLE([python-bindings], [AC_HELP_STRING([--enable-python-bindings], [generate Python bindings])], [enable_python=yes], [enable_python=no]) AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes]) if test "x${enable_python:-yes}" = xyes; then AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ]) AM_PATH_PYTHON AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config]) AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config]) AS_IF([test -z "$PYTHON_INCLUDE"], [ AS_IF([test -z "$PYTHON_CONFIG"], [ AC_PATH_PROGS([PYTHON_CONFIG], [python$PYTHON_VERSION-config python-config], [no], [`dirname $PYTHON`]) AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])]) ]) AC_MSG_CHECKING([python include flags]) PYTHON_INCLUDE=`$PYTHON_CONFIG --includes` AC_MSG_RESULT([$PYTHON_INCLUDE]) ]) else AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl [if you want Python bindings.]) fi pkg_modules="gmodule-2.0 >= 2.0.0" PKG_CHECK_MODULES(GMODULE, [$pkg_modules]) AC_SUBST(PACKAGE_LIBS) LIBS="$LIBS $GMODULE_LIBS" PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h" AC_SUBST(PACKAGE_CFLAGS) babeltraceincludedir="${includedir}/babeltrace" AC_SUBST(babeltraceincludedir) babeltracectfincludedir="${includedir}/babeltrace/ctf" AC_SUBST(babeltracectfincludedir) babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer" AC_SUBST(babeltracectfwriterincludedir) AC_CONFIG_FILES([ Makefile types/Makefile compat/Makefile formats/Makefile formats/ctf/Makefile formats/ctf/types/Makefile formats/ctf-text/Makefile formats/ctf-text/types/Makefile formats/ctf-metadata/Makefile formats/bt-dummy/Makefile formats/lttng-live/Makefile formats/ctf/metadata/Makefile formats/ctf/writer/Makefile converter/Makefile doc/Makefile lib/Makefile lib/prio_heap/Makefile include/Makefile bindings/Makefile bindings/python/Makefile tests/Makefile tests/bin/Makefile tests/lib/Makefile tests/utils/Makefile tests/utils/tap/Makefile extras/Makefile extras/valgrind/Makefile babeltrace.pc babeltrace-ctf.pc ]) AC_OUTPUT babeltrace-1.2.1/babeltrace.pc.in0000644000175000017500000000051312304150543013531 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: Babeltrace Description: libbabeltrace provides a reader for trace files, reading mainly the Common Trace Format (CTF). Version: @PACKAGE_VERSION@ Requires: Requires.private: uuid popt Libs: -L${libdir} -lbabeltrace Cflags: -I${includedir} babeltrace-1.2.1/gpl-2.0.txt0000644000175000017500000004310311540013531012332 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. babeltrace-1.2.1/include/0000755000175000017500000000000012306621157012226 500000000000000babeltrace-1.2.1/include/babeltrace/0000755000175000017500000000000012306621157014312 500000000000000babeltrace-1.2.1/include/babeltrace/types.h0000644000175000017500000004475112304150543015554 00000000000000#ifndef _BABELTRACE_TYPES_H #define _BABELTRACE_TYPES_H /* * BabelTrace * * Type Header * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include /* Preallocate this many fields for structures */ #define DEFAULT_NR_STRUCT_FIELDS 8 struct ctf_stream_definition; struct bt_stream_pos; struct bt_format; struct bt_definition; struct ctf_clock; /* type scope */ struct declaration_scope { /* Hash table mapping type name GQuark to "struct declaration" */ /* Used for both typedef and typealias. */ GHashTable *typedef_declarations; /* Hash table mapping struct name GQuark to "struct declaration_struct" */ GHashTable *struct_declarations; /* Hash table mapping variant name GQuark to "struct declaration_variant" */ GHashTable *variant_declarations; /* Hash table mapping enum name GQuark to "struct type_enum" */ GHashTable *enum_declarations; struct declaration_scope *parent_scope; }; /* definition scope */ struct definition_scope { /* Hash table mapping field name GQuark to "struct definition" */ GHashTable *definitions; struct definition_scope *parent_scope; /* * Complete "path" leading to this definition scope. * Includes dynamic scope name '.' field name '.' field name '.' .... * Array of GQuark elements (which are each separated by dots). * The dynamic scope name can contain dots, and is encoded into * a single GQuark. Thus, scope_path[0] returns the GQuark * identifying the dynamic scope. */ GArray *scope_path; /* array of GQuark */ }; struct bt_declaration { enum ctf_type_id id; size_t alignment; /* type alignment, in bits */ int ref; /* number of references to the type */ /* * declaration_free called with declaration ref is decremented to 0. */ void (*declaration_free)(struct bt_declaration *declaration); struct bt_definition * (*definition_new)(struct bt_declaration *declaration, struct definition_scope *parent_scope, GQuark field_name, int index, const char *root_name); /* * definition_free called with definition ref is decremented to 0. */ void (*definition_free)(struct bt_definition *definition); }; struct bt_definition { struct bt_declaration *declaration; int index; /* Position of the definition in its container */ GQuark name; /* Field name in its container (or 0 if unset) */ int ref; /* number of references to the definition */ GQuark path; struct definition_scope *scope; }; typedef int (*rw_dispatch)(struct bt_stream_pos *pos, struct bt_definition *definition); /* Parent of per-plugin positions */ struct bt_stream_pos { /* read/write dispatch table. Specific to plugin used for stream. */ rw_dispatch *rw_table; /* rw dispatch table */ int (*event_cb)(struct bt_stream_pos *pos, struct ctf_stream_definition *stream); int (*pre_trace_cb)(struct bt_stream_pos *pos, struct bt_trace_descriptor *trace); int (*post_trace_cb)(struct bt_stream_pos *pos, struct bt_trace_descriptor *trace); struct bt_trace_descriptor *trace; }; static inline int generic_rw(struct bt_stream_pos *pos, struct bt_definition *definition) { enum ctf_type_id dispatch_id = definition->declaration->id; rw_dispatch call; assert(pos->rw_table[dispatch_id] != NULL); call = pos->rw_table[dispatch_id]; return call(pos, definition); } /* * Because we address in bits, bitfields end up being exactly the same as * integers, except that their read/write functions must be able to deal with * read/write non aligned on CHAR_BIT. */ struct declaration_integer { struct bt_declaration p; size_t len; /* length, in bits. */ int byte_order; /* byte order */ int signedness; int base; /* Base for pretty-printing: 2, 8, 10, 16 */ enum ctf_string_encoding encoding; struct ctf_clock *clock; }; struct definition_integer { struct bt_definition p; struct declaration_integer *declaration; /* Last values read */ union { uint64_t _unsigned; int64_t _signed; } value; }; struct declaration_float { struct bt_declaration p; struct declaration_integer *sign; struct declaration_integer *mantissa; struct declaration_integer *exp; int byte_order; /* TODO: we might want to express more info about NaN, +inf and -inf */ }; struct definition_float { struct bt_definition p; struct declaration_float *declaration; struct definition_integer *sign; struct definition_integer *mantissa; struct definition_integer *exp; /* Last values read */ double value; }; /* * enum_val_equal assumes that signed and unsigned memory layout overlap. */ struct enum_range { union { int64_t _signed; uint64_t _unsigned; } start; /* lowest range value */ union { int64_t _signed; uint64_t _unsigned; } end; /* highest range value */ }; struct enum_range_to_quark { struct bt_list_head node; struct enum_range range; GQuark quark; }; /* * We optimize the common case (range of size 1: single value) by creating a * hash table mapping values to quark sets. We then lookup the ranges to * complete the quark set. * * TODO: The proper structure to hold the range to quark set mapping would be an * interval tree, with O(n) size, O(n*log(n)) build time and O(log(n)) query * time. Using a simple O(n) list search for now for implementation speed and * given that we can expect to have a _relatively_ small number of enumeration * ranges. This might become untrue if we are fed with symbol tables often * required to lookup function names from instruction pointer value. */ struct enum_table { GHashTable *value_to_quark_set; /* (value, GQuark GArray) */ struct bt_list_head range_to_quark; /* (range, GQuark) */ GHashTable *quark_to_range_set; /* (GQuark, range GArray) */ }; struct declaration_enum { struct bt_declaration p; struct declaration_integer *integer_declaration; struct enum_table table; }; struct definition_enum { struct bt_definition p; struct definition_integer *integer; struct declaration_enum *declaration; /* Last GQuark values read. Keeping a reference on the GQuark array. */ GArray *value; }; struct declaration_string { struct bt_declaration p; enum ctf_string_encoding encoding; }; struct definition_string { struct bt_definition p; struct declaration_string *declaration; char *value; /* freed at definition_string teardown */ size_t len, alloc_len; }; struct declaration_field { GQuark name; struct bt_declaration *declaration; }; struct declaration_struct { struct bt_declaration p; GHashTable *fields_by_name; /* Tuples (field name, field index) */ struct declaration_scope *scope; GArray *fields; /* Array of declaration_field */ }; struct definition_struct { struct bt_definition p; struct declaration_struct *declaration; GPtrArray *fields; /* Array of pointers to struct bt_definition */ }; struct declaration_untagged_variant { struct bt_declaration p; GHashTable *fields_by_tag; /* Tuples (field tag, field index) */ struct declaration_scope *scope; GArray *fields; /* Array of declaration_field */ }; struct declaration_variant { struct bt_declaration p; struct declaration_untagged_variant *untagged_variant; GArray *tag_name; /* Array of GQuark */ }; /* A variant needs to be tagged to be defined. */ struct definition_variant { struct bt_definition p; struct declaration_variant *declaration; struct bt_definition *enum_tag; GPtrArray *fields; /* Array of pointers to struct bt_definition */ struct bt_definition *current_field; /* Last field read */ }; struct declaration_array { struct bt_declaration p; size_t len; struct bt_declaration *elem; struct declaration_scope *scope; }; struct definition_array { struct bt_definition p; struct declaration_array *declaration; GPtrArray *elems; /* Array of pointers to struct bt_definition */ GString *string; /* String for encoded integer children */ }; struct declaration_sequence { struct bt_declaration p; GArray *length_name; /* Array of GQuark */ struct bt_declaration *elem; struct declaration_scope *scope; }; struct definition_sequence { struct bt_definition p; struct declaration_sequence *declaration; struct definition_integer *length; GPtrArray *elems; /* Array of pointers to struct bt_definition */ GString *string; /* String for encoded integer children */ }; int bt_register_declaration(GQuark declaration_name, struct bt_declaration *declaration, struct declaration_scope *scope); struct bt_declaration *bt_lookup_declaration(GQuark declaration_name, struct declaration_scope *scope); /* * Type scopes also contain a separate registry for struct, variant and * enum types. Those register types rather than type definitions, so * that a named variant can be declared without specifying its target * "choice" tag field immediately. */ int bt_register_struct_declaration(GQuark struct_name, struct declaration_struct *struct_declaration, struct declaration_scope *scope); struct declaration_struct * bt_lookup_struct_declaration(GQuark struct_name, struct declaration_scope *scope); int bt_register_variant_declaration(GQuark variant_name, struct declaration_untagged_variant *untagged_variant_declaration, struct declaration_scope *scope); struct declaration_untagged_variant *bt_lookup_variant_declaration(GQuark variant_name, struct declaration_scope *scope); int bt_register_enum_declaration(GQuark enum_name, struct declaration_enum *enum_declaration, struct declaration_scope *scope); struct declaration_enum * bt_lookup_enum_declaration(GQuark enum_name, struct declaration_scope *scope); struct declaration_scope * bt_new_declaration_scope(struct declaration_scope *parent_scope); void bt_free_declaration_scope(struct declaration_scope *scope); /* * field_definition is for field definitions. They are registered into * definition scopes. */ struct bt_definition * bt_lookup_path_definition(GArray *cur_path, /* array of GQuark */ GArray *lookup_path, /* array of GQuark */ struct definition_scope *scope); int bt_register_field_definition(GQuark field_name, struct bt_definition *definition, struct definition_scope *scope); struct definition_scope * bt_new_definition_scope(struct definition_scope *parent_scope, GQuark field_name, const char *root_name); void bt_free_definition_scope(struct definition_scope *scope); GQuark bt_new_definition_path(struct definition_scope *parent_scope, GQuark field_name, const char *root_name); static inline int compare_definition_path(struct bt_definition *definition, GQuark path) { return definition->path == path; } void bt_declaration_ref(struct bt_declaration *declaration); void bt_declaration_unref(struct bt_declaration *declaration); void bt_definition_ref(struct bt_definition *definition); void bt_definition_unref(struct bt_definition *definition); struct declaration_integer *bt_integer_declaration_new(size_t len, int byte_order, int signedness, size_t alignment, int base, enum ctf_string_encoding encoding, struct ctf_clock *clock); uint64_t bt_get_unsigned_int(const struct bt_definition *field); int64_t bt_get_signed_int(const struct bt_definition *field); int bt_get_int_signedness(const struct bt_definition *field); int bt_get_int_byte_order(const struct bt_definition *field); int bt_get_int_base(const struct bt_definition *field); size_t bt_get_int_len(const struct bt_definition *field); /* in bits */ enum ctf_string_encoding bt_get_int_encoding(const struct bt_definition *field); /* * mantissa_len is the length of the number of bytes represented by the mantissa * (e.g. result of DBL_MANT_DIG). It includes the leading 1. */ struct declaration_float *bt_float_declaration_new(size_t mantissa_len, size_t exp_len, int byte_order, size_t alignment); /* * A GQuark can be translated to/from strings with g_quark_from_string() and * g_quark_to_string(). */ /* * Returns a GArray of GQuark or NULL. * Caller must release the GArray with g_array_unref(). */ GArray *bt_enum_uint_to_quark_set(const struct declaration_enum *enum_declaration, uint64_t v); /* * Returns a GArray of GQuark or NULL. * Caller must release the GArray with g_array_unref(). */ GArray *bt_enum_int_to_quark_set(const struct declaration_enum *enum_declaration, int64_t v); /* * Returns a GArray of struct enum_range or NULL. * Callers do _not_ own the returned GArray (and therefore _don't_ need to * release it). */ GArray *bt_enum_quark_to_range_set(const struct declaration_enum *enum_declaration, GQuark q); void bt_enum_signed_insert(struct declaration_enum *enum_declaration, int64_t start, int64_t end, GQuark q); void bt_enum_unsigned_insert(struct declaration_enum *enum_declaration, uint64_t start, uint64_t end, GQuark q); size_t bt_enum_get_nr_enumerators(struct declaration_enum *enum_declaration); struct declaration_enum * bt_enum_declaration_new(struct declaration_integer *integer_declaration); struct declaration_string * bt_string_declaration_new(enum ctf_string_encoding encoding); char *bt_get_string(const struct bt_definition *field); enum ctf_string_encoding bt_get_string_encoding(const struct bt_definition *field); double bt_get_float(const struct bt_definition *field); const struct bt_definition *bt_get_variant_field(struct bt_definition *definition); struct declaration_struct * bt_struct_declaration_new(struct declaration_scope *parent_scope, uint64_t min_align); void bt_struct_declaration_add_field(struct declaration_struct *struct_declaration, const char *field_name, struct bt_declaration *field_declaration); /* * Returns the index of a field within a structure. */ int bt_struct_declaration_lookup_field_index(struct declaration_struct *struct_declaration, GQuark field_name); /* * field returned only valid as long as the field structure is not appended to. */ struct declaration_field * bt_struct_declaration_get_field_from_index(struct declaration_struct *struct_declaration, int index); struct bt_definition * bt_struct_definition_get_field_from_index(const struct definition_struct *struct_definition, int index); int bt_struct_rw(struct bt_stream_pos *pos, struct bt_definition *definition); uint64_t bt_struct_declaration_len(const struct declaration_struct *struct_declaration); /* * The tag enumeration is validated to ensure that it contains only mappings * from numeric values to a single tag. Overlapping tag value ranges are * therefore forbidden. */ struct declaration_untagged_variant *bt_untagged_bt_variant_declaration_new( struct declaration_scope *parent_scope); struct declaration_variant *bt_variant_declaration_new(struct declaration_untagged_variant *untagged_variant, const char *tag); void bt_untagged_variant_declaration_add_field(struct declaration_untagged_variant *untagged_variant_declaration, const char *field_name, struct bt_declaration *field_declaration); struct declaration_field * bt_untagged_variant_declaration_get_field_from_tag(struct declaration_untagged_variant *untagged_variant_declaration, GQuark tag); /* * Returns 0 on success, -EPERM on error. */ int variant_definition_set_tag(struct definition_variant *variant, struct bt_definition *enum_tag); /* * Returns the field selected by the current tag value. * field returned only valid as long as the variant structure is not appended * to. */ struct bt_definition *bt_variant_get_current_field(struct definition_variant *variant); int bt_variant_rw(struct bt_stream_pos *pos, struct bt_definition *definition); /* * elem_declaration passed as parameter now belongs to the array. No * need to free it explicitly. "len" is the number of elements in the * array. */ struct declaration_array * bt_array_declaration_new(size_t len, struct bt_declaration *elem_declaration, struct declaration_scope *parent_scope); uint64_t bt_array_len(struct definition_array *array); struct bt_definition *bt_array_index(struct definition_array *array, uint64_t i); int bt_array_rw(struct bt_stream_pos *pos, struct bt_definition *definition); GString *bt_get_char_array(const struct bt_definition *field); int bt_get_array_len(const struct bt_definition *field); /* * int_declaration and elem_declaration passed as parameter now belong * to the sequence. No need to free them explicitly. */ struct declaration_sequence * bt_sequence_declaration_new(const char *length_name, struct bt_declaration *elem_declaration, struct declaration_scope *parent_scope); uint64_t bt_sequence_len(struct definition_sequence *sequence); struct bt_definition *bt_sequence_index(struct definition_sequence *sequence, uint64_t i); int bt_sequence_rw(struct bt_stream_pos *pos, struct bt_definition *definition); /* * in: path (dot separated), out: q (GArray of GQuark) */ void bt_append_scope_path(const char *path, GArray *q); /* * Lookup helpers. */ struct bt_definition *bt_lookup_definition(const struct bt_definition *definition, const char *field_name); struct definition_integer *bt_lookup_integer(const struct bt_definition *definition, const char *field_name, int signedness); struct definition_enum *bt_lookup_enum(const struct bt_definition *definition, const char *field_name, int signedness); struct bt_definition *bt_lookup_variant(const struct bt_definition *definition, const char *field_name); static inline const char *rem_(const char *str) { if (str[0] == '_') return &str[1]; else return str; } #endif /* _BABELTRACE_TYPES_H */ babeltrace-1.2.1/include/babeltrace/babeltrace-internal.h0000644000175000017500000001437512304150543020305 00000000000000#ifndef _BABELTRACE_INTERNAL_H #define _BABELTRACE_INTERNAL_H /* * babeltrace/babeltrace-internal.h * * Copyright 2012 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #define PERROR_BUFLEN 200 extern int babeltrace_verbose, babeltrace_debug; #define printf_verbose(fmt, args...) \ do { \ if (babeltrace_verbose) \ fprintf(stdout, "[verbose] " fmt, ## args); \ } while (0) #define printf_debug(fmt, args...) \ do { \ if (babeltrace_debug) \ fprintf(stdout, "[debug] " fmt, ## args); \ } while (0) #define _bt_printf(fp, kindstr, fmt, args...) \ fprintf(fp, "[%s]%s%s%s: " fmt "\n", \ kindstr, \ babeltrace_debug ? " \"" : "", \ babeltrace_debug ? __func__ : "", \ babeltrace_debug ? "\"" : "", \ ## args) #define _bt_printfl(fp, kindstr, lineno, fmt, args...) \ fprintf(fp, "[%s]%s%s%s at line %u: " fmt "\n", \ kindstr, \ babeltrace_debug ? " \"" : "", \ babeltrace_debug ? __func__ : "", \ babeltrace_debug ? "\"" : "", \ lineno, \ ## args) #define _bt_printfe(fp, kindstr, perrorstr, fmt, args...) \ fprintf(fp, "[%s]%s%s%s: %s: " fmt "\n", \ kindstr, \ babeltrace_debug ? " \"" : "", \ babeltrace_debug ? __func__ : "", \ babeltrace_debug ? "\"" : "", \ perrorstr, \ ## args) #define _bt_printfle(fp, kindstr, lineno, perrorstr, fmt, args...) \ fprintf(fp, "[%s]%s%s%s at line %u: %s: " fmt "\n", \ kindstr, \ babeltrace_debug ? " \"" : "", \ babeltrace_debug ? __func__ : "", \ babeltrace_debug ? "\"" : "", \ lineno, \ perrorstr, \ ## args) #define _bt_printf_perror(fp, fmt, args...) \ ({ \ char buf[PERROR_BUFLEN] = "Error in strerror_r()"; \ compat_strerror_r(errno, buf, sizeof(buf)); \ _bt_printfe(fp, "error", buf, fmt, ## args); \ }) #define _bt_printfl_perror(fp, lineno, fmt, args...) \ ({ \ char buf[PERROR_BUFLEN] = "Error in strerror_r()"; \ compat_strerror_r(errno, buf, sizeof(buf)); \ _bt_printfle(fp, "error", lineno, buf, fmt, ## args); \ }) /* printf without lineno information */ #define printf_fatal(fmt, args...) \ _bt_printf(stderr, "fatal", fmt, ## args) #define printf_error(fmt, args...) \ _bt_printf(stderr, "error", fmt, ## args) #define printf_warning(fmt, args...) \ _bt_printf(stderr, "warning", fmt, ## args) #define printf_perror(fmt, args...) \ _bt_printf_perror(stderr, fmt, ## args) /* printf with lineno information */ #define printfl_fatal(lineno, fmt, args...) \ _bt_printfl(stderr, "fatal", lineno, fmt, ## args) #define printfl_error(lineno, fmt, args...) \ _bt_printfl(stderr, "error", lineno, fmt, ## args) #define printfl_warning(lineno, fmt, args...) \ _bt_printfl(stderr, "warning", lineno, fmt, ## args) #define printfl_perror(lineno, fmt, args...) \ _bt_printfl_perror(stderr, lineno, fmt, ## args) /* printf with node lineno information */ #define printfn_fatal(node, fmt, args...) \ _bt_printfl(stderr, "fatal", (node)->lineno, fmt, ## args) #define printfn_error(node, fmt, args...) \ _bt_printfl(stderr, "error", (node)->lineno, fmt, ## args) #define printfn_warning(node, fmt, args...) \ _bt_printfl(stderr, "warning", (node)->lineno, fmt, ## args) #define printfn_perror(node, fmt, args...) \ _bt_printfl_perror(stderr, (node)->lineno, fmt, ## args) /* fprintf with Node lineno information */ #define fprintfn_fatal(fp, node, fmt, args...) \ _bt_printfl(fp, "fatal", (node)->lineno, fmt, ## args) #define fprintfn_error(fp, node, fmt, args...) \ _bt_printfl(fp, "error", (node)->lineno, fmt, ## args) #define fprintfn_warning(fp, node, fmt, args...) \ _bt_printfl(fp, "warning", (node)->lineno, fmt, ## args) #define fprintfn_perror(fp, node, fmt, args...) \ _bt_printfl_perror(fp, (node)->lineno, fmt, ## args) #ifndef likely # ifdef __GNUC__ # define likely(x) __builtin_expect(!!(x), 1) # else # define likely(x) (!!(x)) # endif #endif #ifndef unlikely # ifdef __GNUC__ # define unlikely(x) __builtin_expect(!!(x), 0) # else # define unlikely(x) (!!(x)) # endif #endif /* * BT_HIDDEN: set the hidden attribute for internal functions */ #define BT_HIDDEN __attribute__((visibility("hidden"))) #define BT_CTF_MAJOR 1 #define BT_CTF_MINOR 8 struct bt_trace_descriptor; struct trace_collection { GPtrArray *array; /* struct bt_trace_descriptor */ GHashTable *clocks; /* struct ctf_clock */ uint64_t single_clock_offset_avg; uint64_t offset_first; int64_t delta_offset_first_sum; int offset_nr; int clock_use_offset_avg; }; extern int opt_all_field_names, opt_scope_field_names, opt_header_field_names, opt_context_field_names, opt_payload_field_names, opt_all_fields, opt_trace_field, opt_trace_domain_field, opt_trace_procname_field, opt_trace_vpid_field, opt_trace_hostname_field, opt_trace_default_fields, opt_loglevel_field, opt_emf_field, opt_callsite_field, opt_delta_field, opt_clock_cycles, opt_clock_seconds, opt_clock_date, opt_clock_gmt, opt_clock_force_correlate; extern uint64_t opt_clock_offset; extern uint64_t opt_clock_offset_ns; extern int babeltrace_ctf_console_output; #endif babeltrace-1.2.1/include/babeltrace/iterator.h0000644000175000017500000000771512304150543016240 00000000000000#ifndef _BABELTRACE_ITERATOR_H #define _BABELTRACE_ITERATOR_H /* * BabelTrace API Iterators * * Copyright 2010-2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #ifdef __cplusplus extern "C" { #endif /* Flags for the iterator read_event */ enum { BT_ITER_FLAG_LOST_EVENTS = (1 << 0), BT_ITER_FLAG_RETRY = (1 << 1), }; /* Forward declarations */ struct bt_iter; struct bt_saved_pos; /* * bt_iter is an abstract class, each format has to implement its own * iterator derived from this parent class. */ /* * bt_iter_pos * * This structure represents the position where to set an iterator. * * type represents the type of seek to use. * u is the argument of the seek if necessary : * - seek_time is the real timestamp to seek to when using BT_SEEK_TIME, it * is expressed in nanoseconds * - restore is a position saved with bt_iter_get_pos, it is used with * BT_SEEK_RESTORE. * * Note about BT_SEEK_LAST: if many events happen to be at the last * timestamp, it is implementation-defined which event will be the last, * and the order of events with the same timestamp may not be the same * as normal iteration on the trace. Therefore, it is recommended to * only use BT_SEEK_LAST to get the timestamp of the last event(s) in * the trace. */ enum bt_iter_pos_type { BT_SEEK_TIME, /* uses u.seek_time */ BT_SEEK_RESTORE, /* uses u.restore */ BT_SEEK_CUR, BT_SEEK_BEGIN, BT_SEEK_LAST, }; struct bt_iter_pos { enum bt_iter_pos_type type; union { uint64_t seek_time; struct bt_saved_pos *restore; } u; }; /* * bt_iter_next: Move trace collection position to the next event. * * Returns 0 on success, a negative value on error */ int bt_iter_next(struct bt_iter *iter); /* * bt_iter_get_pos - Get the current iterator position. * * The position returned by this function needs to be freed by * bt_iter_free_pos after use. */ struct bt_iter_pos *bt_iter_get_pos(struct bt_iter *iter); /* * bt_iter_free_pos - Free the position. */ void bt_iter_free_pos(struct bt_iter_pos *pos); /* * bt_iter_set_pos: move the iterator to a given position. * * On error, the stream_heap is reinitialized and returned empty. * * Return 0 for success. * * Return EOF if the position requested is after the last event of the * trace collection. * Return -EINVAL when called with invalid parameter. * Return -ENOMEM if the stream_heap could not be properly initialized. */ int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); /* * bt_iter_create_time_pos: create a position based on time * * This function allocates and returns a new bt_iter_pos (which must be freed * with bt_iter_free_pos) to be able to restore an iterator position based on a * real timestamp. */ struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_ITERATOR_H */ babeltrace-1.2.1/include/babeltrace/ctf-ir/0000755000175000017500000000000012306621157015476 500000000000000babeltrace-1.2.1/include/babeltrace/ctf-ir/metadata.h0000644000175000017500000002132612304150543017345 00000000000000#ifndef _BABELTRACE_CTF_IR_METADATA_H #define _BABELTRACE_CTF_IR_METADATA_H /* * BabelTrace * * CTF Intermediate Representation Metadata Header * * Copyright 2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include struct ctf_trace; struct ctf_stream_declaration; struct ctf_event_declaration; struct ctf_clock; struct ctf_callsite; struct ctf_scanner; struct ctf_stream_packet_limits { uint64_t begin; uint64_t end; }; struct ctf_stream_packet_timestamp { struct ctf_stream_packet_limits cycles; struct ctf_stream_packet_limits real; }; struct ctf_stream_definition { struct ctf_stream_declaration *stream_class; uint64_t real_timestamp; /* Current timestamp, in ns */ uint64_t cycles_timestamp; /* Current timestamp, in cycles */ uint64_t event_id; /* Current event ID */ int has_timestamp; uint64_t stream_id; struct definition_struct *trace_packet_header; struct definition_struct *stream_packet_context; struct definition_struct *stream_event_header; struct definition_struct *stream_event_context; GPtrArray *events_by_id; /* Array of struct ctf_event_definition pointers indexed by id */ struct definition_scope *parent_def_scope; /* for initialization */ int stream_definitions_created; struct ctf_clock *current_clock; /* Event discarded information */ uint64_t events_discarded; struct ctf_stream_packet_timestamp prev; struct ctf_stream_packet_timestamp current; char path[PATH_MAX]; /* Path to stream. '\0' for mmap traces */ }; struct ctf_event_definition { struct ctf_stream_definition *stream; struct definition_struct *event_context; struct definition_struct *event_fields; }; #define CTF_CLOCK_SET_FIELD(ctf_clock, field) \ do { \ (ctf_clock)->field_mask |= CTF_CLOCK_ ## field; \ } while (0) #define CTF_CLOCK_FIELD_IS_SET(ctf_clock, field) \ ((ctf_clock)->field_mask & CTF_CLOCK_ ## field) #define CTF_CLOCK_GET_FIELD(ctf_clock, field) \ ({ \ assert(CTF_CLOCK_FIELD_IS_SET(ctf_clock, field)); \ (ctf_clock)->(field); \ }) struct ctf_clock { GQuark name; GQuark uuid; char *description; uint64_t freq; /* frequency, in HZ */ /* precision in seconds is: precision * (1/freq) */ uint64_t precision; /* * The offset from Epoch is: offset_s + (offset * (1/freq)) * Coarse clock offset from Epoch (in seconds). */ uint64_t offset_s; /* Fine clock offset from Epoch, in (1/freq) units. */ uint64_t offset; int absolute; enum { /* Fields populated mask */ CTF_CLOCK_name = (1U << 0), CTF_CLOCK_freq = (1U << 1), } field_mask; }; #define CTF_CALLSITE_SET_FIELD(ctf_callsite, field) \ do { \ (ctf_callsite)->field_mask |= CTF_CALLSITE_ ## field; \ } while (0) #define CTF_CALLSITE_FIELD_IS_SET(ctf_callsite, field) \ ((ctf_callsite)->field_mask & CTF_CALLSITE_ ## field) #define CTF_CALLSITE_GET_FIELD(ctf_callsite, field) \ ({ \ assert(CTF_CALLSITE_FIELD_IS_SET(ctf_callsite, field)); \ (ctf_callsite)->(field); \ }) struct ctf_callsite { GQuark name; /* event name associated with callsite */ char *func; char *file; uint64_t line; uint64_t ip; struct bt_list_head node; enum { /* Fields populated mask */ CTF_CALLSITE_name = (1U << 0), CTF_CALLSITE_func = (1U << 1), CTF_CALLSITE_file = (1U << 2), CTF_CALLSITE_line = (1U << 3), CTF_CALLSITE_ip = (1U << 4), } field_mask; }; struct ctf_callsite_dups { struct bt_list_head head; }; #define CTF_TRACE_SET_FIELD(ctf_trace, field) \ do { \ (ctf_trace)->field_mask |= CTF_TRACE_ ## field; \ } while (0) #define CTF_TRACE_FIELD_IS_SET(ctf_trace, field) \ ((ctf_trace)->field_mask & CTF_TRACE_ ## field) #define CTF_TRACE_GET_FIELD(ctf_trace, field) \ ({ \ assert(CTF_TRACE_FIELD_IS_SET(ctf_trace, field)); \ (ctf_trace)->(field); \ }) #define TRACER_ENV_LEN 128 /* tracer-specific environment */ struct ctf_tracer_env { int vpid; /* negative if unset */ /* All strings below: "" if unset. */ char procname[TRACER_ENV_LEN]; char hostname[TRACER_ENV_LEN]; char domain[TRACER_ENV_LEN]; char sysname[TRACER_ENV_LEN]; char release[TRACER_ENV_LEN]; char version[TRACER_ENV_LEN]; }; struct ctf_trace { struct bt_trace_descriptor parent; /* root scope */ struct declaration_scope *root_declaration_scope; struct declaration_scope *declaration_scope; /* innermost definition scope. to be used as parent of stream. */ struct definition_scope *definition_scope; GPtrArray *streams; /* Array of struct ctf_stream_declaration pointers */ struct ctf_stream_definition *metadata; char *metadata_string; int metadata_packetized; GHashTable *callsites; GPtrArray *event_declarations; /* Array of all the struct bt_ctf_event_decl */ struct declaration_struct *packet_header_decl; struct ctf_scanner *scanner; int restart_root_decl; uint64_t major; uint64_t minor; unsigned char uuid[BABELTRACE_UUID_LEN]; int byte_order; /* trace BYTE_ORDER. 0 if unset. */ struct ctf_tracer_env env; enum { /* Fields populated mask */ CTF_TRACE_major = (1U << 0), CTF_TRACE_minor = (1U << 1), CTF_TRACE_uuid = (1U << 2), CTF_TRACE_byte_order = (1U << 3), CTF_TRACE_packet_header = (1U << 4), } field_mask; /* Information about trace backing directory and files */ DIR *dir; int dirfd; int flags; /* open flags */ }; #define CTF_STREAM_SET_FIELD(ctf_stream, field) \ do { \ (ctf_stream)->field_mask |= CTF_STREAM_ ## field; \ } while (0) #define CTF_STREAM_FIELD_IS_SET(ctf_stream, field) \ ((ctf_stream)->field_mask & CTF_STREAM_ ## field) #define CTF_STREAM_GET_FIELD(ctf_stream, field) \ ({ \ assert(CTF_STREAM_FIELD_IS_SET(ctf_stream, field)); \ (ctf_stream)->(field); \ }) struct ctf_stream_declaration { struct ctf_trace *trace; /* parent is lexical scope containing the stream scope */ struct declaration_scope *declaration_scope; /* innermost definition scope. to be used as parent of event. */ struct definition_scope *definition_scope; GPtrArray *events_by_id; /* Array of struct ctf_event_declaration pointers indexed by id */ GHashTable *event_quark_to_id; /* GQuark to numeric id */ struct declaration_struct *packet_context_decl; struct declaration_struct *event_header_decl; struct declaration_struct *event_context_decl; uint64_t stream_id; enum { /* Fields populated mask */ CTF_STREAM_stream_id = (1 << 0), } field_mask; GPtrArray *streams; /* Array of struct ctf_stream_definition pointers */ }; #define CTF_EVENT_SET_FIELD(ctf_event, field) \ do { \ (ctf_event)->field_mask |= CTF_EVENT_ ## field; \ } while (0) #define CTF_EVENT_FIELD_IS_SET(ctf_event, field) \ ((ctf_event)->field_mask & CTF_EVENT_ ## field) #define CTF_EVENT_GET_FIELD(ctf_event, field) \ ({ \ assert(CTF_EVENT_FIELD_IS_SET(ctf_event, field)); \ (ctf_event)->(field); \ }) struct ctf_event_declaration { /* stream mapped by stream_id */ struct ctf_stream_declaration *stream; /* parent is lexical scope containing the event scope */ struct declaration_scope *declaration_scope; struct declaration_struct *context_decl; struct declaration_struct *fields_decl; GQuark name; uint64_t id; /* Numeric identifier within the stream */ uint64_t stream_id; int loglevel; GQuark model_emf_uri; enum { /* Fields populated mask */ CTF_EVENT_name = (1 << 0), CTF_EVENT_id = (1 << 1), CTF_EVENT_stream_id = (1 << 2), CTF_EVENT_loglevel = (1 << 4), CTF_EVENT_model_emf_uri = (1 << 5), } field_mask; }; #endif /* _BABELTRACE_CTF_IR_METADATA_H */ babeltrace-1.2.1/include/babeltrace/clock-types.h0000644000175000017500000000306612075630002016635 00000000000000#ifndef _BABELTRACE_CLOCK_TYPES_H #define _BABELTRACE_CLOCK_TYPES_H /* * BabelTrace * * Clock types header * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifdef __cplusplus extern "C" { #endif /* * The Babeltrace clock representations */ enum bt_clock_type { BT_CLOCK_CYCLES = 0, BT_CLOCK_REAL, }; #ifdef __cplusplus } #endif #endif /* _BABELTRACE_CLOCK_TYPES_H */ babeltrace-1.2.1/include/babeltrace/compiler.h0000644000175000017500000000306312075630002016207 00000000000000#ifndef _BABELTRACE_COMPILER_H #define _BABELTRACE_COMPILER_H /* * compiler.h * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include /* for offsetof */ #define MAYBE_BUILD_BUG_ON(cond) ((void)sizeof(char[1 - 2 * !!(cond)])) #ifndef container_of #define container_of(ptr, type, member) \ ({ \ const typeof(((type *)NULL)->member) * __ptr = (ptr); \ (type *)((char *)__ptr - offsetof(type, member)); \ }) #endif #endif /* _BABELTRACE_COMPILER_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/0000755000175000017500000000000012306621157016400 500000000000000babeltrace-1.2.1/include/babeltrace/ctf-writer/stream.h0000644000175000017500000001352212304150543017761 00000000000000#ifndef BABELTRACE_CTF_WRITER_STREAM_H #define BABELTRACE_CTF_WRITER_STREAM_H /* * BabelTrace - CTF Writer: Stream * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #ifdef __cplusplus extern "C" { #endif struct bt_ctf_event; struct bt_ctf_event_class; struct bt_ctf_stream_class; struct bt_ctf_stream; struct bt_ctf_clock; /* * bt_ctf_stream_class_create: create a stream class. * * Allocate a new stream class of the given name. The creation of an event class * sets its reference count to 1. * * @param name Stream name. * * Returns an allocated stream class on success, NULL on error. */ extern struct bt_ctf_stream_class *bt_ctf_stream_class_create(const char *name); /* * bt_ctf_stream_class_set_clock: assign a clock to a stream class. * * Assign a clock to a stream class. This clock will be sampled each time an * event is appended to an instance of this stream class. * * @param stream_class Stream class. * @param clock Clock to assign to the provided stream class. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_stream_class_set_clock( struct bt_ctf_stream_class *stream_class, struct bt_ctf_clock *clock); /* * bt_ctf_stream_class_set_clock: assign a clock to a stream class. * * Add an event class to a stream class. New events can be added even after a * stream has beem instanciated and events have been appended. However, a stream * will not accept events of a class that has not been registered beforehand. * The stream class will share the ownership of "event_class" by incrementing * its reference count. * * @param stream_class Stream class. * @param event_class Event class to add to the provided stream class. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_stream_class_add_event_class( struct bt_ctf_stream_class *stream_class, struct bt_ctf_event_class *event_class); /* * bt_ctf_stream_class_get and bt_ctf_stream_class_put: increment and * decrement the stream class' reference count. * * These functions ensure that the stream class won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy a stream class. * * When the stream class' reference count is decremented to 0 by a * bt_ctf_stream_class_put, the stream class is freed. * * @param stream_class Stream class. */ extern void bt_ctf_stream_class_get(struct bt_ctf_stream_class *stream_class); extern void bt_ctf_stream_class_put(struct bt_ctf_stream_class *stream_class); /* * bt_ctf_stream_append_discarded_events: increment discarded events count. * * Increase the current packet's discarded event count. * * @param stream Stream instance. * @param event_count Number of discarded events to add to the stream's current * packet. * * Returns 0 on success, a negative value on error. */ extern void bt_ctf_stream_append_discarded_events(struct bt_ctf_stream *stream, uint64_t event_count); /* * bt_ctf_stream_append_event: append an event to the stream. * * Append "event" to the stream's current packet. The stream's associated clock * will be sampled during this call. The event shall not be modified after * being appended to a stream. The stream will share the event's ownership by * incrementing its reference count. The current packet is not flushed to disk * until the next call to bt_ctf_stream_flush. * * @param stream Stream instance. * @param event Event instance to append to the stream's current packet. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_stream_append_event(struct bt_ctf_stream *stream, struct bt_ctf_event *event); /* * bt_ctf_stream_flush: flush a stream. * * The stream's current packet's events will be flushed to disk. Events * subsequently appended to the stream will be added to a new packet. * * @param stream Stream instance. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_stream_flush(struct bt_ctf_stream *stream); /* * bt_ctf_stream_get and bt_ctf_stream_put: increment and decrement the * stream's reference count. * * These functions ensure that the stream won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy a stream. * * When the stream's reference count is decremented to 0 by a * bt_ctf_stream_put, the stream is freed. * * @param stream Stream instance. */ extern void bt_ctf_stream_get(struct bt_ctf_stream *stream); extern void bt_ctf_stream_put(struct bt_ctf_stream *stream); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_STREAM_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/ref-internal.h0000644000175000017500000000342112304150543021051 00000000000000#ifndef BABELTRACE_CTF_WRITER_REF_INTERNAL_H #define BABELTRACE_CTF_WRITER_REF_INTERNAL_H /* * BabelTrace - CTF Writer: Reference count * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include struct bt_ctf_ref { long refcount; }; static inline void bt_ctf_ref_init(struct bt_ctf_ref *ref) { assert(ref); ref->refcount = 1; } static inline void bt_ctf_ref_get(struct bt_ctf_ref *ref) { assert(ref); ref->refcount++; } static inline void bt_ctf_ref_put(struct bt_ctf_ref *ref, void (*release)(struct bt_ctf_ref *)) { assert(ref); assert(release); if ((--ref->refcount) == 0) { release(ref); } } #endif /* BABELTRACE_CTF_WRITER_REF_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/writer.h0000644000175000017500000001224312304150543020001 00000000000000#ifndef BABELTRACE_CTF_WRITER_WRITER_H #define BABELTRACE_CTF_WRITER_WRITER_H /* * BabelTrace - CTF Writer: Writer * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #ifdef __cplusplus extern "C" { #endif struct bt_ctf_writer; struct bt_ctf_stream; struct bt_ctf_stream_class; struct bt_ctf_clock; enum bt_ctf_byte_order { BT_CTF_BYTE_ORDER_NATIVE = 0, BT_CTF_BYTE_ORDER_LITTLE_ENDIAN, BT_CTF_BYTE_ORDER_BIG_ENDIAN, BT_CTF_BYTE_ORDER_NETWORK, }; /* * bt_ctf_writer_create: create a writer instance. * * Allocate a new writer that will produce a trace in the given path. * The creation of a writer sets its reference count to 1. * * @param path Path to the trace's containing folder (string is copied). * * Returns an allocated writer on success, NULL on error. */ extern struct bt_ctf_writer *bt_ctf_writer_create(const char *path); /* * bt_ctf_writer_create_stream: create a stream instance. * * Allocate a new stream instance and register it to the writer. The creation of * a stream sets its reference count to 1. * * @param writer Writer instance. * @param stream_class Stream class to instantiate. * * Returns an allocated writer on success, NULL on error. */ extern struct bt_ctf_stream *bt_ctf_writer_create_stream( struct bt_ctf_writer *writer, struct bt_ctf_stream_class *stream_class); /* * bt_ctf_writer_add_environment_field: add an environment field to the trace. * * Add an environment field to the trace. The name and value parameters are * copied. * * @param writer Writer instance. * @param name Name of the environment field (will be copied). * @param value Value of the environment field (will be copied). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_writer_add_environment_field(struct bt_ctf_writer *writer, const char *name, const char *value); /* * bt_ctf_writer_add_clock: add a clock to the trace. * * Add a clock to the trace. Clocks assigned to stream classes must be * registered to the writer. * * @param writer Writer instance. * @param clock Clock to add to the trace. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_writer_add_clock(struct bt_ctf_writer *writer, struct bt_ctf_clock *clock); /* * bt_ctf_writer_get_metadata_string: get meta-data string. * * Get the trace's TSDL meta-data. The caller assumes the ownership of the * returned string. * * @param writer Writer instance. * * Returns the metadata string on success, NULL on error. */ extern char *bt_ctf_writer_get_metadata_string(struct bt_ctf_writer *writer); /* * bt_ctf_writer_flush_metadata: flush the trace's metadata to disk. * * Flush the trace's metadata to the metadata file. Note that the metadata will * be flushed automatically when the Writer instance is released (last call to * bt_ctf_writer_put). * * @param writer Writer instance. */ extern void bt_ctf_writer_flush_metadata(struct bt_ctf_writer *writer); /* * bt_ctf_writer_set_byte_order: set a field type's byte order. * * Set the trace's byte order. Defaults to BT_CTF_BYTE_ORDER_NATIVE, * the host machine's endianness. * * @param writer Writer instance. * @param byte_order Trace's byte order. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_writer_set_byte_order(struct bt_ctf_writer *writer, enum bt_ctf_byte_order byte_order); /* * bt_ctf_writer_get and bt_ctf_writer_put: increment and decrement the * writer's reference count. * * These functions ensure that the writer won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy a writer. * * When the writer's reference count is decremented to 0 by a * bt_ctf_writer_put, the writer is freed. * * @param writer Writer instance. */ extern void bt_ctf_writer_get(struct bt_ctf_writer *writer); extern void bt_ctf_writer_put(struct bt_ctf_writer *writer); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_WRITER_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event-types.h0000644000175000017500000002734212304150543020756 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_TYPES_H #define BABELTRACE_CTF_WRITER_EVENT_TYPES_H /* * BabelTrace - CTF Writer: Event Types * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #include #include #include #ifdef __cplusplus extern "C" { #endif struct bt_ctf_event_class; struct bt_ctf_event; struct bt_ctf_field_type; enum bt_ctf_integer_base { BT_CTF_INTEGER_BASE_UNKNOWN = -1, BT_CTF_INTEGER_BASE_BINARY = 2, BT_CTF_INTEGER_BASE_OCTAL = 8, BT_CTF_INTEGER_BASE_DECIMAL = 10, BT_CTF_INTEGER_BASE_HEXADECIMAL = 16, }; /* * bt_ctf_field_type_integer_create: create an integer field type. * * Allocate a new integer field type of the given size. The creation of a field * type sets its reference count to 1. * * @param size Integer field type size/length in bits. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_integer_create( unsigned int size); /* * bt_ctf_field_type_integer_set_signed: set an integer type's signedness. * * Set an integer type's signedness attribute. * * @param integer Integer type. * @param is_signed Integer's signedness, defaults to FALSE. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_integer_set_signed( struct bt_ctf_field_type *integer, int is_signed); /* * bt_ctf_field_type_integer_set_base: set an integer type's base. * * Set an integer type's base used to pretty-print the resulting trace. * * @param integer Integer type. * @param base Integer base, defaults to BT_CTF_INTEGER_BASE_DECIMAL. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_integer_set_base( struct bt_ctf_field_type *integer, enum bt_ctf_integer_base base); /* * bt_ctf_field_type_integer_set_encoding: set an integer type's encoding. * * An integer encoding may be set to signal that the integer must be printed as * a text character. * * @param integer Integer type. * @param encoding Integer output encoding, defaults to CTF_STRING_ENCODING_NONE * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_integer_set_encoding( struct bt_ctf_field_type *integer, enum ctf_string_encoding encoding); /* * bt_ctf_field_type_enumeration_create: create an enumeration field type. * * Allocate a new enumeration field type with the given underlying type. The * creation of a field type sets its reference count to 1. * The resulting enumeration will share the integer_container_type's ownership * by increasing its reference count. * * @param integer_container_type Underlying integer type of the enumeration * type. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_enumeration_create( struct bt_ctf_field_type *integer_container_type); /* * bt_ctf_field_type_enumeration_add_mapping: add an enumeration mapping. * * Add a mapping to the enumeration. The range's values are inclusive. * * @param enumeration Enumeration type. * @param string Enumeration mapping name (will be copied). * @param range_start Enumeration mapping range start. * @param range_end Enumeration mapping range end. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_enumeration_add_mapping( struct bt_ctf_field_type *enumeration, const char *string, int64_t range_start, int64_t range_end); /* * bt_ctf_field_type_floating_point_create: create a floating point field type. * * Allocate a new floating point field type. The creation of a field type sets * its reference count to 1. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_floating_point_create(void); /* * bt_ctf_field_type_floating_point_set_exponent_digits: set exponent digit * count. * * Set the number of exponent digits to use to store the floating point field. * The only values currently supported are FLT_EXP_DIG and DBL_EXP_DIG. * * @param floating_point Floating point type. * @param exponent_digits Number of digits to allocate to the exponent (defaults * to FLT_EXP_DIG). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_floating_point_set_exponent_digits( struct bt_ctf_field_type *floating_point, unsigned int exponent_digits); /* * bt_ctf_field_type_floating_point_set_mantissa_digits: set mantissa digit * count. * * Set the number of mantissa digits to use to store the floating point field. * The only values currently supported are FLT_MANT_DIG and DBL_MANT_DIG. * * @param floating_point Floating point type. * @param mantissa_digits Number of digits to allocate to the mantissa (defaults * to FLT_MANT_DIG). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_floating_point_set_mantissa_digits( struct bt_ctf_field_type *floating_point, unsigned int mantissa_digits); /* * bt_ctf_field_type_structure_create: create a structure field type. * * Allocate a new structure field type. The creation of a field type sets * its reference count to 1. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_structure_create(void); /* * bt_ctf_field_type_structure_add_field: add a field to a structure. * * Add a field of type "field_type" to the structure. The structure will share * field_type's ownership by increasing its reference count. * * @param structure Structure type. * @param field_type Type of the field to add to the structure type. * @param field_name Name of the structure's new field (will be copied). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_structure_add_field( struct bt_ctf_field_type *structure, struct bt_ctf_field_type *field_type, const char *field_name); /* * bt_ctf_field_type_variant_create: create a variant field type. * * Allocate a new variant field type. The creation of a field type sets * its reference count to 1. tag_name must be the name of an enumeration * field declared in the same scope as this variant. * * @param enum_tag Type of the variant's tag/selector (must be an enumeration). * @param tag_name Name of the variant's tag/selector field (will be copied). * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_variant_create( struct bt_ctf_field_type *enum_tag, const char *tag_name); /* * bt_ctf_field_type_variant_add_field: add a field to a variant. * * Add a field of type "field_type" to the variant.The variant will share * field_type's ownership by increasing its reference count. The "field_name" * will be copied. field_name must match a mapping in the tag/selector * enumeration. * * @param variant Variant type. * @param field_type Type of the variant type's new field. * @param field_name Name of the variant type's new field (will be copied). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_variant_add_field( struct bt_ctf_field_type *variant, struct bt_ctf_field_type *field_type, const char *field_name); /* * bt_ctf_field_type_array_create: create an array field type. * * Allocate a new array field type. The creation of a field type sets * its reference count to 1. * * @param element_type Array's element type. * @oaram length Array type's length. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_array_create( struct bt_ctf_field_type *element_type, unsigned int length); /* * bt_ctf_field_type_sequence_create: create a sequence field type. * * Allocate a new sequence field type. The creation of a field type sets * its reference count to 1. "length_field_name" must match an integer field * declared in the same scope. * * @param element_type Sequence's element type. * @param length_field_name Name of the sequence's length field (will be * copied). * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_sequence_create( struct bt_ctf_field_type *element_type, const char *length_field_name); /* * bt_ctf_field_type_string_create: create a string field type. * * Allocate a new string field type. The creation of a field type sets * its reference count to 1. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_field_type *bt_ctf_field_type_string_create(void); /* * bt_ctf_field_type_string_set_encoding: set a string type's encoding. * * Set the string type's encoding. * * @param string String type. * @param encoding String field encoding, default CTF_STRING_ENCODING_ASCII. * Valid values are CTF_STRING_ENCODING_ASCII and CTF_STRING_ENCODING_UTF8. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_string_set_encoding( struct bt_ctf_field_type *string, enum ctf_string_encoding encoding); /* * bt_ctf_field_type_set_alignment: set a field type's alignment. * * Set the field type's alignment. * * @param type Field type. * @param alignment Type's alignment. Defaults to 1 (bit-aligned). However, * some types, such as structures and string, may impose other alignment * constraints. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_set_alignment(struct bt_ctf_field_type *type, unsigned int alignment); /* * bt_ctf_field_type_set_byte_order: set a field type's byte order. * * Set the field type's byte order. * * @param type Field type. * @param byte_order Field type's byte order. Defaults to * BT_CTF_BYTE_ORDER_NATIVE, the host machine's endianness. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_type_set_byte_order(struct bt_ctf_field_type *type, enum bt_ctf_byte_order byte_order); /* * bt_ctf_field_type_get and bt_ctf_field_type_put: increment and decrement * the field type's reference count. * * These functions ensure that the field type won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy a field type. * * When the field type's reference count is decremented to 0 by a * bt_ctf_field_type_put, the field type is freed. * * @param type Field type. */ extern void bt_ctf_field_type_get(struct bt_ctf_field_type *type); extern void bt_ctf_field_type_put(struct bt_ctf_field_type *type); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_EVENT_TYPES_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event.h0000644000175000017500000001213412304150543017605 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_H #define BABELTRACE_CTF_WRITER_EVENT_H /* * BabelTrace - CTF Writer: Event * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #ifdef __cplusplus extern "C" { #endif struct bt_ctf_event_class; struct bt_ctf_event; struct bt_ctf_field; struct bt_ctf_field_type; /* * bt_ctf_event_class_create: create an event class. * * Allocate a new event class of the given name. The creation of an event class * sets its reference count to 1. * * @param name Event class name (will be copied). * * Returns an allocated event class on success, NULL on error. */ extern struct bt_ctf_event_class *bt_ctf_event_class_create(const char *name); /* * bt_ctf_event_class_add_field: add a field to an event class. * * Add a field of type "type" to the event class. The event class will share * type's ownership by increasing its reference count. The "name" will be * copied. * * @param event_class Event class. * @param type Field type to add to the event class. * @param name Name of the new field. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_event_class_add_field(struct bt_ctf_event_class *event_class, struct bt_ctf_field_type *type, const char *name); /* * bt_ctf_event_class__get and bt_ctf_event_class_put: increment and decrement * the event class' reference count. * * These functions ensure that the event class won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy an event class. * * When the event class' reference count is decremented to 0 by a * bt_ctf_event_class_put, the event class is freed. * * @param event_class Event class. */ extern void bt_ctf_event_class_get(struct bt_ctf_event_class *event_class); extern void bt_ctf_event_class_put(struct bt_ctf_event_class *event_class); /* * bt_ctf_event_create: instanciate an event. * * Allocate a new event of the given event class. The creation of an event * sets its reference count to 1. Each instance shares the ownership of the * event class using its reference count. * * @param event_class Event class. * * Returns an allocated field type on success, NULL on error. */ extern struct bt_ctf_event *bt_ctf_event_create( struct bt_ctf_event_class *event_class); /* * bt_ctf_event_set_payload: set an event's field. * * Set a manually allocated field as an event's payload. The event will share * the field's ownership by using its reference count. * bt_ctf_field_put() must be called on the returned value. * * @param event Event instance. * @param name Event field name. * @param value Instance of a field whose type corresponds to the event's field. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_event_set_payload(struct bt_ctf_event *event, const char *name, struct bt_ctf_field *value); /* * bt_ctf_event_get_payload: get an event's field. * * Returns the field matching "name". bt_ctf_field_put() must be called on the * returned value. * * @param event Event instance. * @param name Event field name. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_event_get_payload(struct bt_ctf_event *event, const char *name); /* * bt_ctf_event_get and bt_ctf_event_put: increment and decrement * the event's reference count. * * These functions ensure that the event won't be destroyed while it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy an event. * * When the event's reference count is decremented to 0 by a * bt_ctf_event_put, the event is freed. * * @param event Event instance. */ extern void bt_ctf_event_get(struct bt_ctf_event *event); extern void bt_ctf_event_put(struct bt_ctf_event *event); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_EVENT_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/stream-internal.h0000644000175000017500000000643012304150543021573 00000000000000#ifndef BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H #define BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H /* * BabelTrace - CTF Writer: Stream internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include typedef void(*flush_func)(struct bt_ctf_stream *, void *); struct bt_ctf_stream_class { struct bt_ctf_ref ref_count; GString *name; struct bt_ctf_clock *clock; GPtrArray *event_classes; /* Array of pointers to bt_ctf_event_class */ int id_set; uint32_t id; uint32_t next_event_id; uint32_t next_stream_id; struct bt_ctf_field_type *event_header_type; struct bt_ctf_field *event_header; struct bt_ctf_field_type *packet_context_type; struct bt_ctf_field *packet_context; struct bt_ctf_field_type *event_context_type; struct bt_ctf_field *event_context; int frozen; }; struct flush_callback { flush_func func; void *data; }; struct bt_ctf_stream { struct bt_ctf_ref ref_count; uint32_t id; struct bt_ctf_stream_class *stream_class; struct flush_callback flush; /* Array of pointers to bt_ctf_event for the current packet */ GPtrArray *events; struct ctf_stream_pos pos; unsigned int flushed_packet_count; uint64_t events_discarded; }; BT_HIDDEN void bt_ctf_stream_class_freeze(struct bt_ctf_stream_class *stream_class); BT_HIDDEN int bt_ctf_stream_class_set_id(struct bt_ctf_stream_class *stream_class, uint32_t id); BT_HIDDEN int bt_ctf_stream_class_serialize(struct bt_ctf_stream_class *stream_class, struct metadata_context *context); BT_HIDDEN int bt_ctf_stream_class_set_byte_order(struct bt_ctf_stream_class *stream_class, enum bt_ctf_byte_order byte_order); BT_HIDDEN struct bt_ctf_stream *bt_ctf_stream_create( struct bt_ctf_stream_class *stream_class); BT_HIDDEN int bt_ctf_stream_set_flush_callback(struct bt_ctf_stream *stream, flush_func callback, void *data); BT_HIDDEN int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd); #endif /* BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event-types-internal.h0000644000175000017500000001132712304150543022564 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_TYPES_INTERNAL_H #define BABELTRACE_CTF_WRITER_EVENT_TYPES_INTERNAL_H /* * BabelTrace - CTF Writer: Event types internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include typedef void(*type_freeze_func)(struct bt_ctf_field_type *); typedef int(*type_serialize_func)(struct bt_ctf_field_type *, struct metadata_context *); struct bt_ctf_field_type { struct bt_ctf_ref ref_count; struct bt_declaration *declaration; type_freeze_func freeze; type_serialize_func serialize; /* * A type can't be modified once it is added to an event or after a * a field has been instanciated from it. */ int frozen; }; struct bt_ctf_field_type_integer { struct bt_ctf_field_type parent; struct declaration_integer declaration; }; struct enumeration_mapping { int64_t range_start; int64_t range_end; GQuark string; }; struct bt_ctf_field_type_enumeration { struct bt_ctf_field_type parent; struct bt_ctf_field_type *container; GPtrArray *entries; /* Array of pointers to struct enum_mapping */ struct declaration_enum declaration; }; struct bt_ctf_field_type_floating_point { struct bt_ctf_field_type parent; struct declaration_float declaration; struct declaration_integer sign; struct declaration_integer mantissa; struct declaration_integer exp; }; struct structure_field { GQuark name; struct bt_ctf_field_type *type; }; struct bt_ctf_field_type_structure { struct bt_ctf_field_type parent; GHashTable *field_name_to_index; GPtrArray *fields; /* Array of pointers to struct structure_field */ struct declaration_enum declaration; }; struct bt_ctf_field_type_variant { struct bt_ctf_field_type parent; GString *tag_name; struct bt_ctf_field_type_enumeration *tag; GHashTable *field_name_to_index; GPtrArray *fields; /* Array of pointers to struct structure_field */ struct declaration_variant declaration; }; struct bt_ctf_field_type_array { struct bt_ctf_field_type parent; struct bt_ctf_field_type *element_type; unsigned int length; /* Number of elements */ struct declaration_array declaration; }; struct bt_ctf_field_type_sequence { struct bt_ctf_field_type parent; struct bt_ctf_field_type *element_type; GString *length_field_name; struct declaration_sequence declaration; }; struct bt_ctf_field_type_string { struct bt_ctf_field_type parent; struct declaration_string declaration; }; BT_HIDDEN void bt_ctf_field_type_freeze(struct bt_ctf_field_type *type); BT_HIDDEN enum ctf_type_id bt_ctf_field_type_get_type_id( struct bt_ctf_field_type *type); BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_structure_get_type( struct bt_ctf_field_type_structure *structure, const char *name); BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_array_get_element_type( struct bt_ctf_field_type_array *array); BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_sequence_get_element_type( struct bt_ctf_field_type_sequence *sequence); BT_HIDDEN struct bt_ctf_field_type *bt_ctf_field_type_variant_get_field_type( struct bt_ctf_field_type_variant *variant, int64_t tag_value); BT_HIDDEN int bt_ctf_field_type_serialize(struct bt_ctf_field_type *type, struct metadata_context *context); BT_HIDDEN int bt_ctf_field_type_validate(struct bt_ctf_field_type *type); #endif /* BABELTRACE_CTF_WRITER_EVENT_TYPES_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event-fields.h0000644000175000017500000001610012304150543021046 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_FIELDS_H #define BABELTRACE_CTF_WRITER_EVENT_FIELDS_H /* * BabelTrace - CTF Writer: Event Fields * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #include #ifdef __cplusplus extern "C" { #endif struct bt_ctf_event_class; struct bt_ctf_event; struct bt_ctf_field; struct bt_ctf_field_type; /* * bt_ctf_field_create: create an instance of a field. * * Allocate a new field of the type described by the bt_ctf_field_type * structure.The creation of a field sets its reference count to 1. * * @param type Field type to be instanciated. * * Returns an allocated field on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_create( struct bt_ctf_field_type *type); /* * bt_ctf_field_structure_get_field: get a structure's field. * * Get the structure's field corresponding to the provided field name. * bt_ctf_field_put() must be called on the returned value. * * @param structure Structure field instance. * @param name Name of the field in the provided structure. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_structure_get_field( struct bt_ctf_field *structure, const char *name); /* * bt_ctf_field_array_get_field: get an array's field at position "index". * * Return the array's field at position "index". bt_ctf_field_put() must be * called on the returned value. * * @param array Array field instance. * @param index Position of the array's desired element. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_array_get_field( struct bt_ctf_field *array, uint64_t index); /* * bt_ctf_field_sequence_set_length: set a sequence's length. * * Set the sequence's length field. * * @param sequence Sequence field instance. * @param length_field Integer field instance indicating the sequence's length. * * Returns a field instance on success, NULL on error. */ extern int bt_ctf_field_sequence_set_length(struct bt_ctf_field *sequence, struct bt_ctf_field *length_field); /* * bt_ctf_field_sequence_get_field: get a sequence's field at position "index". * * Return the sequence's field at position "index". The sequence's length must * have been set prior to calling this function using * bt_ctf_field_sequence_set_length(). * bt_ctf_field_put() must be called on the returned value. * * @param array Sequence field instance. * @param index Position of the sequence's desired element. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_sequence_get_field( struct bt_ctf_field *sequence, uint64_t index); /* * bt_ctf_field_variant_get_field: get a variant's selected field. * * Return the variant's selected field. The "tag" field is the selector enum * field. bt_ctf_field_put() must be called on the returned value. * * @param variant Variant field instance. * @param tag Selector enumeration field. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_variant_get_field( struct bt_ctf_field *variant, struct bt_ctf_field *tag); /* * bt_ctf_field_enumeration_get_container: get an enumeration field's container. * * Return the enumeration's underlying container field (an integer). * bt_ctf_field_put() must be called on the returned value. * * @param enumeration Enumeration field instance. * * Returns a field instance on success, NULL on error. */ extern struct bt_ctf_field *bt_ctf_field_enumeration_get_container( struct bt_ctf_field *enumeration); /* * bt_ctf_field_signed_integer_set_value: set a signed integer field's value * * Set a signed integer field's value. The value is checked to make sure it * can be stored in the underlying field. * * @param integer Signed integer field instance. * @param value Signed integer field value. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_signed_integer_set_value(struct bt_ctf_field *integer, int64_t value); /* * bt_ctf_field_unsigned_integer_set_value: set unsigned integer field's value * * Set an unsigned integer field's value. The value is checked to make sure it * can be stored in the underlying field. * * @param integer Unsigned integer field instance. * @param value Unsigned integer field value. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_unsigned_integer_set_value(struct bt_ctf_field *integer, uint64_t value); /* * bt_ctf_field_floating_point_set_value: set a floating point field's value * * Set a floating point field's value. The underlying type may not support the * double's full precision. * * @param floating_point Floating point field instance. * @param value Floating point field value. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_floating_point_set_value( struct bt_ctf_field *floating_point, double value); /* * bt_ctf_field_string_set_value: set a string field's value * * Set a string field's value. * * @param string String field instance. * @param value String field value (will be copied). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_field_string_set_value(struct bt_ctf_field *string, const char *value); /* * bt_ctf_field_get and bt_ctf_field_put: increment and decrement the * field's reference count. * * These functions ensure that the field won't be destroyed when it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) have to be done to * destroy a field. * * When the field's reference count is decremented to 0 by a bt_ctf_field_put, * the field is freed. * * @param field Field instance. */ extern void bt_ctf_field_get(struct bt_ctf_field *field); extern void bt_ctf_field_put(struct bt_ctf_field *field); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_EVENT_FIELDS_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/clock.h0000644000175000017500000001171612304150543017564 00000000000000#ifndef BABELTRACE_CTF_WRITER_CLOCK_H #define BABELTRACE_CTF_WRITER_CLOCK_H /* * BabelTrace - CTF Writer: Clock * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * The Common Trace Format (CTF) Specification is available at * http://www.efficios.com/ctf */ #include #ifdef __cplusplus extern "C" { #endif struct bt_ctf_clock; /* * bt_ctf_clock_create: create a clock. * * Allocate a new clock setting its reference count to 1. * * @param name Name of the clock (will be copied). * * Returns an allocated clock on success, NULL on error. */ extern struct bt_ctf_clock *bt_ctf_clock_create(const char *name); /* * bt_ctf_clock_set_description: set a clock's description. * * Set the clock's description. The description appears in the clock's TSDL * meta-data. * * @param clock Clock instance. * @param desc Description of the clock. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_description(struct bt_ctf_clock *clock, const char *desc); /* * bt_ctf_clock_set_frequency: set a clock's frequency. * * Set the clock's frequency (Hz). * * @param clock Clock instance. * @param freq Clock's frequency in Hz, defaults to 1 000 000 000 Hz (1ns). * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_frequency(struct bt_ctf_clock *clock, uint64_t freq); /* * bt_ctf_clock_set_precision: set a clock's precision. * * Set the clock's precision. * * @param clock Clock instance. * @param precision Clock's precision in clock ticks, defaults to 1. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_precision(struct bt_ctf_clock *clock, uint64_t precision); /* * bt_ctf_clock_set_offset_s: set a clock's offset in seconds. * * Set the clock's offset in seconds from POSIX.1 Epoch, 1970-01-01, * defaults to 0. * * @param clock Clock instance. * @param offset_s Clock's offset in seconds, defaults to 0. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_offset_s(struct bt_ctf_clock *clock, uint64_t offset_s); /* * bt_ctf_clock_set_offset: set a clock's offset in ticks. * * Set the clock's offset in ticks from Epoch + offset_s. * * @param clock Clock instance. * @param offset Clock's offset in ticks from Epoch + offset_s, defaults to 0. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_offset(struct bt_ctf_clock *clock, uint64_t offset); /* * bt_ctf_clock_set_is_absolute: set a clock's absolute attribute. * * A clock is absolute if the clock is a global reference across the trace's * other clocks. * * @param clock Clock instance. * @param is_absolute Clock's absolute attribute, defaults to FALSE. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_is_absolute(struct bt_ctf_clock *clock, int is_absolute); /* * bt_ctf_clock_set_time: set a clock's current time value. * * Set the current time in nanoseconds since the clock's origin (offset and * offset_s attributes). The clock's value will be sampled as events are * appended to a stream. * * Returns 0 on success, a negative value on error. */ extern int bt_ctf_clock_set_time(struct bt_ctf_clock *clock, uint64_t time); /* * bt_ctf_clock_get and bt_ctf_clock_put: increment and decrement the * refcount of the clock * * These functions ensure that the clock won't be destroyed when it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) has to be done to * destroy a clock. * * When the clock refcount is decremented to 0 by a bt_ctf_clock_put, * the clock is freed. * * @param clock Clock instance. */ extern void bt_ctf_clock_get(struct bt_ctf_clock *clock); extern void bt_ctf_clock_put(struct bt_ctf_clock *clock); #ifdef __cplusplus } #endif #endif /* BABELTRACE_CTF_WRITER_CLOCK_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/functor-internal.h0000644000175000017500000000307612304150543021763 00000000000000#ifndef BABELTRACE_CTF_WRITER_FUNCTOR_INTERNAL_H #define BABELTRACE_CTF_WRITER_FUNCTOR_INTERNAL_H /* * BabelTrace - CTF Writer: Functors for use with glib data structures * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include struct search_query { gpointer value; int found; }; BT_HIDDEN void value_exists(gpointer element, gpointer search_query); #endif /* BABELTRACE_CTF_WRITER_FUNCTOR_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/writer-internal.h0000644000175000017500000000560712304150543021621 00000000000000#ifndef BABELTRACE_CTF_WRITER_WRITER_INTERNAL_H #define BABELTRACE_CTF_WRITER_WRITER_INTERNAL_H /* * BabelTrace - CTF Writer: Writer internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include enum field_type_alias { FIELD_TYPE_ALIAS_UINT5_T = 0, FIELD_TYPE_ALIAS_UINT8_T, FIELD_TYPE_ALIAS_UINT16_T, FIELD_TYPE_ALIAS_UINT27_T, FIELD_TYPE_ALIAS_UINT32_T, FIELD_TYPE_ALIAS_UINT64_T, NR_FIELD_TYPE_ALIAS, }; struct bt_ctf_writer { struct bt_ctf_ref ref_count; int frozen; /* Protects attributes that can't be changed mid-trace */ GString *path; uuid_t uuid; int byte_order; int trace_dir_fd; int metadata_fd; GPtrArray *environment; /* Array of pointers to environment_variable */ GPtrArray *clocks; /* Array of pointers to bt_ctf_clock */ GPtrArray *stream_classes; /* Array of pointers to bt_ctf_stream_class */ GPtrArray *streams; /* Array of pointers to bt_ctf_stream */ struct bt_ctf_field_type *trace_packet_header_type; struct bt_ctf_field *trace_packet_header; uint32_t next_stream_id; }; struct environment_variable { GString *name, *value; }; struct metadata_context { GString *string; GString *field_name; unsigned int current_indentation_level; }; /* Checks that the string does not contain a reserved keyword */ BT_HIDDEN int validate_identifier(const char *string); BT_HIDDEN const char *get_byte_order_string(int byte_order); BT_HIDDEN struct bt_ctf_field_type *get_field_type(enum field_type_alias alias); #endif /* BABELTRACE_CTF_WRITER_WRITER_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event-fields-internal.h0000644000175000017500000000601312304150543022662 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_FIELDS_INTERNAL_H #define BABELTRACE_CTF_WRITER_EVENT_FIELDS_INTERNAL_H /* * BabelTrace - CTF Writer: Event Fields internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include struct bt_ctf_field { struct bt_ctf_ref ref_count; struct bt_ctf_field_type *type; int payload_set; }; struct bt_ctf_field_integer { struct bt_ctf_field parent; struct definition_integer definition; }; struct bt_ctf_field_enumeration { struct bt_ctf_field parent; struct bt_ctf_field *payload; }; struct bt_ctf_field_floating_point { struct bt_ctf_field parent; struct definition_float definition; struct definition_integer sign, mantissa, exp; }; struct bt_ctf_field_structure { struct bt_ctf_field parent; GHashTable *field_name_to_index; GPtrArray *fields; /* Array of pointers to struct bt_ctf_field */ }; struct bt_ctf_field_variant { struct bt_ctf_field parent; struct bt_ctf_field *tag; struct bt_ctf_field *payload; }; struct bt_ctf_field_array { struct bt_ctf_field parent; GPtrArray *elements; /* Array of pointers to struct bt_ctf_field */ }; struct bt_ctf_field_sequence { struct bt_ctf_field parent; struct bt_ctf_field *length; GPtrArray *elements; /* Array of pointers to struct bt_ctf_field */ }; struct bt_ctf_field_string { struct bt_ctf_field parent; GString *payload; }; /* * Set a field's value with an already allocated field instance. */ BT_HIDDEN int bt_ctf_field_structure_set_field(struct bt_ctf_field *structure, const char *name, struct bt_ctf_field *value); BT_HIDDEN int bt_ctf_field_validate(struct bt_ctf_field *field); BT_HIDDEN int bt_ctf_field_serialize(struct bt_ctf_field *field, struct ctf_stream_pos *pos); #endif /* BABELTRACE_CTF_WRITER_EVENT_FIELDS_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/clock-internal.h0000644000175000017500000000427712304150543021402 00000000000000#ifndef BABELTRACE_CTF_WRITER_CLOCK_INTERNAL_H #define BABELTRACE_CTF_WRITER_CLOCK_INTERNAL_H /* * BabelTrace - CTF Writer: Clock internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include struct bt_ctf_clock { struct bt_ctf_ref ref_count; GString *name; GString *description; uint64_t frequency; uint64_t precision; uint64_t offset_s; /* Offset in seconds */ uint64_t offset; /* Offset in ticks */ uint64_t time; /* Current clock value */ uuid_t uuid; int absolute; /* * A clock's properties can't be modified once it is added to a stream * class. */ int frozen; }; BT_HIDDEN void bt_ctf_clock_freeze(struct bt_ctf_clock *clock); BT_HIDDEN void bt_ctf_clock_serialize(struct bt_ctf_clock *clock, struct metadata_context *context); BT_HIDDEN uint64_t bt_ctf_clock_get_time(struct bt_ctf_clock *clock); #endif /* BABELTRACE_CTF_WRITER_CLOCK_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf-writer/event-internal.h0000644000175000017500000000562512304150543021426 00000000000000#ifndef BABELTRACE_CTF_WRITER_EVENT_INTERNAL_H #define BABELTRACE_CTF_WRITER_EVENT_INTERNAL_H /* * BabelTrace - CTF Writer: Event internal * * Copyright 2013 EfficiOS Inc. * * Author: Jérémie Galarneau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include struct bt_ctf_event_class { struct bt_ctf_ref ref_count; GQuark name; int id_set; uint32_t id; int stream_id_set; uint32_t stream_id; /* Structure type containing the event's context */ struct bt_ctf_field_type *context; /* Structure type containing the event's fields */ struct bt_ctf_field_type *fields; int frozen; }; struct bt_ctf_event { struct bt_ctf_ref ref_count; uint64_t timestamp; struct bt_ctf_event_class *event_class; struct bt_ctf_field *context_payload; struct bt_ctf_field *fields_payload; }; BT_HIDDEN void bt_ctf_event_class_freeze(struct bt_ctf_event_class *event_class); BT_HIDDEN int bt_ctf_event_class_set_id(struct bt_ctf_event_class *event_class, uint32_t id); BT_HIDDEN uint32_t bt_ctf_event_class_get_id(struct bt_ctf_event_class *event_class); BT_HIDDEN int bt_ctf_event_class_set_stream_id(struct bt_ctf_event_class *event_class, uint32_t id); BT_HIDDEN int bt_ctf_event_class_serialize(struct bt_ctf_event_class *event_class, struct metadata_context *context); BT_HIDDEN int bt_ctf_event_validate(struct bt_ctf_event *event); BT_HIDDEN int bt_ctf_event_serialize(struct bt_ctf_event *event, struct ctf_stream_pos *pos); BT_HIDDEN int bt_ctf_event_set_timestamp(struct bt_ctf_event *event, uint64_t timestamp); BT_HIDDEN uint64_t bt_ctf_event_get_timestamp(struct bt_ctf_event *event); #endif /* BABELTRACE_CTF_WRITER_EVENT_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/endian.h0000644000175000017500000000366612304150543015646 00000000000000#ifndef _BABELTRACE_ENDIAN_H #define _BABELTRACE_ENDIAN_H /* * babeltrace/endian.h * * Copyright 2012 (c) - Mathieu Desnoyers * * endian.h compatibility layer. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifdef __FreeBSD__ #include #elif defined(__MINGW32__) #ifndef __BIG_ENDIAN #define __BIG_ENDIAN 4321 #endif #ifndef __LITTLE_ENDIAN #define __LITTLE_ENDIAN 1234 #endif #ifndef __BYTE_ORDER #define __BYTE_ORDER __LITTLE_ENDIAN #endif #define LITTLE_ENDIAN __LITTLE_ENDIAN #define BIG_ENDIAN __BIG_ENDIAN #define PDP_ENDIAN __PDP_ENDIAN #define BYTE_ORDER __BYTE_ORDER #else #include #endif #ifndef FLOAT_WORD_ORDER #ifdef __FLOAT_WORD_ORDER #define FLOAT_WORD_ORDER __FLOAT_WORD_ORDER #else /* __FLOAT_WORD_ORDER */ #define FLOAT_WORD_ORDER BYTE_ORDER #endif /* __FLOAT_WORD_ORDER */ #endif /* FLOAT_WORD_ORDER */ #endif /* _BABELTRACE_ENDIAN_H */ babeltrace-1.2.1/include/babeltrace/prio_heap.h0000644000175000017500000001020212272477052016351 00000000000000#ifndef _BABELTRACE_PRIO_HEAP_H #define _BABELTRACE_PRIO_HEAP_H /* * prio_heap.h * * Static-sized priority heap containing pointers. Based on CLRS, * chapter 6. * * Copyright 2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include struct ptr_heap { size_t len, alloc_len; void **ptrs; int (*gt)(void *a, void *b); }; #ifdef DEBUG_HEAP void check_heap(const struct ptr_heap *heap); #else static inline void check_heap(const struct ptr_heap *heap) { } #endif /** * bt_heap_maximum - return the largest element in the heap * @heap: the heap to be operated on * * Returns the largest element in the heap, without performing any modification * to the heap structure. Returns NULL if the heap is empty. */ static inline void *bt_heap_maximum(const struct ptr_heap *heap) { check_heap(heap); return likely(heap->len) ? heap->ptrs[0] : NULL; } /** * bt_heap_init - initialize the heap * @heap: the heap to initialize * @alloc_len: number of elements initially allocated * @gt: function to compare the elements * * Returns -ENOMEM if out of memory. */ extern int bt_heap_init(struct ptr_heap *heap, size_t alloc_len, int gt(void *a, void *b)); /** * bt_heap_free - free the heap * @heap: the heap to free */ extern void bt_heap_free(struct ptr_heap *heap); /** * bt_heap_insert - insert an element into the heap * @heap: the heap to be operated on * @p: the element to add * * Insert an element into the heap. * * Returns -ENOMEM if out of memory. */ extern int bt_heap_insert(struct ptr_heap *heap, void *p); /** * bt_heap_remove - remove the largest element from the heap * @heap: the heap to be operated on * * Returns the largest element in the heap. It removes this element from the * heap. Returns NULL if the heap is empty. */ extern void *bt_heap_remove(struct ptr_heap *heap); /** * bt_heap_cherrypick - remove a given element from the heap * @heap: the heap to be operated on * @p: the element * * Remove the given element from the heap. Return the element if present, else * return NULL. This algorithm has a complexity of O(n), which is higher than * O(log(n)) provided by the rest of this API. */ extern void *bt_heap_cherrypick(struct ptr_heap *heap, void *p); /** * bt_heap_replace_max - replace the the largest element from the heap * @heap: the heap to be operated on * @p: the pointer to be inserted as topmost element replacement * * Returns the largest element in the heap. It removes this element from the * heap. The heap is rebalanced only once after the insertion. Returns NULL if * the heap is empty. * * This is the equivalent of calling bt_heap_remove() and then bt_heap_insert(), but * it only rebalances the heap once. It never allocates memory. */ extern void *bt_heap_replace_max(struct ptr_heap *heap, void *p); /** * bt_heap_copy - copy a heap * @dst: the destination heap (must be allocated) * @src: the source heap * * Returns -ENOMEM if out of memory. */ extern int bt_heap_copy(struct ptr_heap *dst, struct ptr_heap *src); #endif /* _BABELTRACE_PRIO_HEAP_H */ babeltrace-1.2.1/include/babeltrace/iterator-internal.h0000644000175000017500000000502712304150543020044 00000000000000#ifndef _BABELTRACE_ITERATOR_INTERNAL_H #define _BABELTRACE_ITERATOR_INTERNAL_H /* * BabelTrace * * Internal iterator header * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include /* * struct bt_iter: data structure representing an iterator on a trace * collection. */ struct bt_iter { struct ptr_heap *stream_heap; struct bt_context *ctx; const struct bt_iter_pos *end_pos; }; /* * bt_iter_create - Allocate a trace collection iterator. * * begin_pos and end_pos are optional parameters to specify the position * at which the trace collection should be seeked upon iterator * creation, and the position at which iteration will start returning * "EOF". * * By default, if begin_pos is NULL, a BT_SEEK_CUR is performed at * creation. By default, if end_pos is NULL, a BT_SEEK_END (end of * trace) is the EOF criterion. */ struct bt_iter *bt_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); /* * bt_iter_destroy - Free a trace collection iterator. */ void bt_iter_destroy(struct bt_iter *iter); int bt_iter_init(struct bt_iter *iter, struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); void bt_iter_fini(struct bt_iter *iter); int bt_iter_add_trace(struct bt_iter *iter, struct bt_trace_descriptor *td_read); #endif /* _BABELTRACE_ITERATOR_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/trace-handle-internal.h0000644000175000017500000000437312272477052020560 00000000000000#ifndef _BABELTRACE_TRACE_HANDLE_INTERNAL_H #define _BABELTRACE_TRACE_HANDLE_INTERNAL_H /* * BabelTrace * * Internal trace handle header * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include /* * trace_handle : unique identifier of a trace * * The trace_handle allows the user to manipulate a trace file directly. * It is a unique identifier representing a trace file. */ struct bt_trace_handle { int id; struct bt_trace_descriptor *td; struct bt_format *format; char path[PATH_MAX]; uint64_t real_timestamp_begin; uint64_t real_timestamp_end; uint64_t cycles_timestamp_begin; uint64_t cycles_timestamp_end; }; /* * bt_trace_handle_create : allocates a trace_handle * * Returns a newly allocated trace_handle or NULL on error */ struct bt_trace_handle *bt_trace_handle_create(struct bt_context *ctx); /* * bt_trace_handle_destroy : free a trace_handle */ void bt_trace_handle_destroy(struct bt_trace_handle *bt); #endif /* _BABELTRACE_TRACE_HANDLE_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/mmap-align.h0000644000175000017500000000664512166544013016437 00000000000000#ifndef _BABELTRACE_MMAP_ALIGN_H #define _BABELTRACE_MMAP_ALIGN_H /* * BabelTrace mmap-align.h - mmap alignment header * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include /* * This header implements a wrapper over mmap (mmap_align) that memory * maps a file region that is not necessarily multiple of the page size. * It returns a structure (instead of a pointer) that contains the mmap * pointer (page-aligned) and a pointer to the offset requested within * that page. Note: in the current implementation, the "addr" parameter * cannot be forced, so we allocate at an address chosen by the OS. */ struct mmap_align { void *page_aligned_addr; /* mmap address, aligned to floor */ size_t page_aligned_length; /* mmap length, containing range */ void *addr; /* virtual mmap address */ size_t length; /* virtual mmap length */ }; static inline struct mmap_align *mmap_align(size_t length, int prot, int flags, int fd, off_t offset) { struct mmap_align *mma; off_t page_aligned_offset; /* mmap offset, aligned to floor */ mma = malloc(sizeof(*mma)); if (!mma) return MAP_FAILED; mma->length = length; page_aligned_offset = ALIGN_FLOOR(offset, PAGE_SIZE); /* * Page aligned length needs to contain the requested range. * E.g., for a small range that fits within a single page, we might * require a 2 pages page_aligned_length if the range crosses a page * boundary. */ mma->page_aligned_length = ALIGN(length + offset - page_aligned_offset, PAGE_SIZE); mma->page_aligned_addr = mmap(NULL, mma->page_aligned_length, prot, flags, fd, page_aligned_offset); if (mma->page_aligned_addr == (void *) -1UL) { free(mma); return MAP_FAILED; } mma->addr = mma->page_aligned_addr + (offset - page_aligned_offset); return mma; } static inline int munmap_align(struct mmap_align *mma) { void *page_aligned_addr; size_t page_aligned_length; page_aligned_addr = mma->page_aligned_addr; page_aligned_length = mma->page_aligned_length; free(mma); return munmap(page_aligned_addr, page_aligned_length); } static inline void *mmap_align_addr(struct mmap_align *mma) { return mma->addr; } /* * Helper for special-cases, normally unused. */ static inline void mmap_align_set_addr(struct mmap_align *mma, void *addr) { mma->addr = addr; } #endif /* _BABELTRACE_MMAP_ALIGN_H */ babeltrace-1.2.1/include/babeltrace/context-internal.h0000644000175000017500000000377112075630002017701 00000000000000#ifndef _BABELTRACE_CONTEXT_INTERNAL_H #define _BABELTRACE_CONTEXT_INTERNAL_H /* * BabelTrace * * context header (internal) * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include struct trace_collection; struct GHashTable; /* * The context represents the object in which a trace_collection is * open. As long as this structure is allocated, the trace_collection is * open and the traces it contains can be read and seeked by the * iterators and callbacks. * * It has to be created with the bt_context_create() function and * destroyed by calling one more bt_context_put() than bt_context_get() */ struct bt_context { struct trace_collection *tc; GHashTable *trace_handles; int refcount; int last_trace_handle_id; struct bt_iter *current_iterator; }; #endif /* _BABELTRACE_CONTEXT_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf/0000755000175000017500000000000012306621157015066 500000000000000babeltrace-1.2.1/include/babeltrace/ctf/types.h0000644000175000017500000001754012304150543016324 00000000000000#ifndef _BABELTRACE_CTF_TYPES_H #define _BABELTRACE_CTF_TYPES_H /* * Common Trace Format * * Type header * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #define LAST_OFFSET_POISON ((int64_t) ~0ULL) struct bt_stream_callbacks; struct packet_index_time { uint64_t timestamp_begin; uint64_t timestamp_end; }; struct packet_index { off_t offset; /* offset of the packet in the file, in bytes */ int64_t data_offset; /* offset of data within the packet, in bits */ uint64_t packet_size; /* packet size, in bits */ uint64_t content_size; /* content size, in bits */ uint64_t events_discarded; uint64_t events_discarded_len; /* length of the field, in bits */ struct packet_index_time ts_cycles; /* timestamp in cycles */ struct packet_index_time ts_real; /* realtime timestamp */ }; /* * Always update ctf_stream_pos with ctf_move_pos and ctf_init_pos. */ struct ctf_stream_pos { struct bt_stream_pos parent; int fd; /* backing file fd. -1 if unset. */ FILE *index_fp; /* backing index file fp. NULL if unset. */ GArray *packet_index; /* contains struct packet_index */ int prot; /* mmap protection */ int flags; /* mmap flags */ /* Current position */ off_t mmap_offset; /* mmap offset in the file, in bytes */ off_t mmap_base_offset; /* offset of start of packet in mmap, in bytes */ uint64_t packet_size; /* current packet size, in bits */ uint64_t content_size; /* current content size, in bits */ uint64_t *content_size_loc; /* pointer to current content size */ struct mmap_align *base_mma;/* mmap base address */ int64_t offset; /* offset from base, in bits. EOF for end of file. */ int64_t last_offset; /* offset before the last read_event */ int64_t data_offset; /* offset of data in current packet */ uint64_t cur_index; /* current index in packet index */ uint64_t last_events_discarded; /* last known amount of event discarded */ void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence); /* function called to switch packet */ int dummy; /* dummy position, for length calculation */ struct bt_stream_callbacks *cb; /* Callbacks registered for iterator. */ void *priv; }; static inline struct ctf_stream_pos *ctf_pos(struct bt_stream_pos *pos) { return container_of(pos, struct ctf_stream_pos, parent); } BT_HIDDEN int ctf_integer_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_integer_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_float_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_float_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_string_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_string_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_enum_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_enum_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_struct_rw(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_variant_rw(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_array_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_array_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_sequence_read(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_sequence_write(struct bt_stream_pos *pos, struct bt_definition *definition); void ctf_packet_seek(struct bt_stream_pos *pos, size_t index, int whence); int ctf_init_pos(struct ctf_stream_pos *pos, struct bt_trace_descriptor *trace, int fd, int open_flags); int ctf_fini_pos(struct ctf_stream_pos *pos); /* * move_pos - move position of a relative bit offset * * Return 1 if OK, 0 if out-of-bound. * * TODO: allow larger files by updating base too. */ static inline int ctf_move_pos(struct ctf_stream_pos *pos, uint64_t bit_offset) { uint64_t max_len; printf_debug("ctf_move_pos test EOF: %" PRId64 "\n", pos->offset); if (unlikely(pos->offset == EOF)) return 0; if (pos->prot == PROT_READ) max_len = pos->content_size; else max_len = pos->packet_size; if (unlikely(pos->offset + bit_offset > max_len)) return 0; pos->offset += bit_offset; printf_debug("ctf_move_pos after increment: %" PRId64 "\n", pos->offset); return 1; } /* * align_pos - align position on a bit offset (> 0) * * Return 1 if OK, 0 if out-of-bound. * * TODO: allow larger files by updating base too. */ static inline int ctf_align_pos(struct ctf_stream_pos *pos, uint64_t bit_offset) { return ctf_move_pos(pos, offset_align(pos->offset, bit_offset)); } static inline char *ctf_get_pos_addr(struct ctf_stream_pos *pos) { /* Only makes sense to get the address after aligning on CHAR_BIT */ assert(!(pos->offset % CHAR_BIT)); return mmap_align_addr(pos->base_mma) + pos->mmap_base_offset + (pos->offset / CHAR_BIT); } static inline void ctf_dummy_pos(struct ctf_stream_pos *pos, struct ctf_stream_pos *dummy) { memcpy(dummy, pos, sizeof(struct ctf_stream_pos)); dummy->dummy = 1; dummy->fd = -1; } /* * Check if current packet can hold data. * Returns 0 for success, negative error otherwise. */ static inline int ctf_pos_packet(struct ctf_stream_pos *dummy) { if (unlikely(dummy->offset > dummy->packet_size)) return -ENOSPC; return 0; } static inline void ctf_pos_pad_packet(struct ctf_stream_pos *pos) { ctf_packet_seek(&pos->parent, 0, SEEK_CUR); } static inline int ctf_pos_access_ok(struct ctf_stream_pos *pos, uint64_t bit_len) { uint64_t max_len; if (unlikely(pos->offset == EOF)) return 0; if (pos->prot == PROT_READ) max_len = pos->content_size; else max_len = pos->packet_size; if (unlikely(pos->offset + bit_len > max_len)) return 0; return 1; } /* * Update the stream position to the current event. This moves to * the next packet if we are located at the end of the current packet. */ static inline void ctf_pos_get_event(struct ctf_stream_pos *pos) { assert(pos->offset <= pos->content_size); if (pos->offset == pos->content_size) { printf_debug("ctf_packet_seek (before call): %" PRId64 "\n", pos->offset); pos->packet_seek(&pos->parent, 0, SEEK_CUR); printf_debug("ctf_packet_seek (after call): %" PRId64 "\n", pos->offset); } } void ctf_print_timestamp(FILE *fp, struct ctf_stream_definition *stream, uint64_t timestamp); int ctf_append_trace_metadata(struct bt_trace_descriptor *tdp, FILE *metadata_fp); #endif /* _BABELTRACE_CTF_TYPES_H */ babeltrace-1.2.1/include/babeltrace/ctf/callbacks.h0000644000175000017500000001013312272477052017101 00000000000000#ifndef _BABELTRACE_CTF_CALLBACKS_H #define _BABELTRACE_CTF_CALLBACKS_H /* * BabelTrace * * CTF events API * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #ifdef __cplusplus extern "C" { #endif /* Forward declarations */ struct bt_ctf_iter; struct bt_dependencies; enum bt_cb_ret { BT_CB_OK = 0, BT_CB_OK_STOP = 1, BT_CB_ERROR_STOP = 2, BT_CB_ERROR_CONTINUE = 3, }; /* * Receives a variable number of strings as parameter, ended with NULL. */ struct bt_dependencies *bt_dependencies_create(const char *first, ...); /* * struct bt_dependencies must be destroyed explicitly if not passed as * parameter to a bt_ctf_iter_add_callback(). */ void bt_dependencies_destroy(struct bt_dependencies *dep); /* * bt_ctf_iter_add_callback: Add a callback to iterator. * * @iter: trace collection iterator (input) * @event: event to target. 0 for all events. * @private_data: private data pointer to pass to the callback * @flags: specific flags controlling the behavior of this callback * (or'd). * * @callback: function pointer to call * @depends: struct bt_dependency detailing the required computation results. * Ends with 0. NULL is accepted as empty dependency. * @weak_depends: struct bt_dependency detailing the optional computation * results that can be optionally consumed by this * callback. NULL is accepted as empty dependency. * @provides: struct bt_dependency detailing the computation results * provided by this callback. * Ends with 0. NULL is accepted as empty dependency. * * "depends", "weak_depends" and "provides" memory is handled by the * babeltrace library after this call succeeds or fails. These objects * can still be used by the caller until the babeltrace iterator is * destroyed, but they belong to the babeltrace library. * * (note to implementor: we need to keep a gptrarray of struct * bt_dependencies to "garbage collect" in struct bt_ctf_iter, and * dependencies need to have a refcount to handle the case where they * would be passed to more than one iterator. Upon iterator detroy, we * iterate on all the gc ptrarray and decrement the refcounts, freeing * if we reach 0.) * (note to implementor: we calculate the dependency graph when * bt_ctf_iter_read_event() is executed after a * bt_ctf_iter_add_callback(). Beware that it is valid to create/add * callbacks/read/add more callbacks/read some more.) */ int bt_ctf_iter_add_callback(struct bt_ctf_iter *iter, bt_intern_str event, void *private_data, int flags, enum bt_cb_ret (*callback)(struct bt_ctf_event *ctf_data, void *caller_data), struct bt_dependencies *depends, struct bt_dependencies *weak_depends, struct bt_dependencies *provides); /* * For flags parameter above. */ enum { BT_FLAGS_FREE_PRIVATE_DATA = (1 << 0), }; #ifdef __cplusplus } #endif #endif /*_BABELTRACE_CTF_CALLBACKS_H */ babeltrace-1.2.1/include/babeltrace/ctf/iterator.h0000644000175000017500000000725512075630002017011 00000000000000#ifndef _BABELTRACE_CTF_ITERATOR_H #define _BABELTRACE_CTF_ITERATOR_H /* * BabelTrace * * CTF iterator API * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #ifdef __cplusplus extern "C" { #endif struct bt_ctf_iter; struct bt_ctf_event; /* * bt_ctf_iter_create - Allocate a CTF trace collection iterator. * * begin_pos and end_pos are optional parameters to specify the position * at which the trace collection should be seeked upon iterator * creation, and the position at which iteration will start returning * "EOF". * * By default, if begin_pos is NULL, a BT_SEEK_CUR is performed at * creation. By default, if end_pos is NULL, a BT_SEEK_END (end of * trace) is the EOF criterion. * * Return a pointer to the newly allocated iterator. * * Only one iterator can be created against a context. If more than one * iterator is being created for the same context, the second creation * will return NULL. The previous iterator must be destroyed before * creation of the new iterator for this function to succeed. */ struct bt_ctf_iter *bt_ctf_iter_create(struct bt_context *ctx, const struct bt_iter_pos *begin_pos, const struct bt_iter_pos *end_pos); /* * bt_ctf_get_iter - get iterator from ctf iterator. */ struct bt_iter *bt_ctf_get_iter(struct bt_ctf_iter *iter); /* * bt_ctf_iter_destroy - Free a CTF trace collection iterator. */ void bt_ctf_iter_destroy(struct bt_ctf_iter *iter); /* * bt_ctf_iter_read_event: Read the iterator's current event data. * * @iter: trace collection iterator (input). Should NOT be NULL. * * Return current event on success, NULL on end of trace. */ struct bt_ctf_event *bt_ctf_iter_read_event(struct bt_ctf_iter *iter); /* * bt_ctf_iter_read_event_flags: Read the iterator's current event data. * * @iter: trace collection iterator (input). Should NOT be NULL. * @flags: pointer passed by the user, in which the trace reader populates * flags on special condition (BT_ITER_FLAG_*). * * Return current event on success, NULL on end of trace. */ struct bt_ctf_event *bt_ctf_iter_read_event_flags(struct bt_ctf_iter *iter, int *flags); /* * bt_ctf_get_lost_events_count: returns the number of events discarded * immediately prior to the last event read * * @iter: trace collection iterator (input). Should NOT be NULL. * * Return the number of lost events or -1ULL on error. */ uint64_t bt_ctf_get_lost_events_count(struct bt_ctf_iter *iter); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_CTF_ITERATOR_H */ babeltrace-1.2.1/include/babeltrace/ctf/events-internal.h0000644000175000017500000000567212304150543020301 00000000000000#ifndef _BABELTRACE_CTF_EVENTS_INTERNAL_H #define _BABELTRACE_CTF_EVENTS_INTERNAL_H /* * BabelTrace * * CTF events API (internal) * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include struct ctf_stream_definition; /* * These structures are public mappings to internal ctf_event structures. */ struct bt_ctf_event { struct ctf_event_definition *parent; }; struct bt_ctf_event_decl { struct ctf_event_declaration parent; GPtrArray *context_decl; GPtrArray *fields_decl; GPtrArray *packet_header_decl; GPtrArray *event_context_decl; GPtrArray *event_header_decl; GPtrArray *packet_context_decl; }; struct bt_ctf_iter { struct bt_iter parent; struct bt_ctf_event current_ctf_event; /* last read event */ GArray *callbacks; /* Array of struct bt_stream_callbacks */ struct bt_callback_chain main_callbacks; /* For all events */ /* * Flag indicating if dependency graph needs to be recalculated. * Set by bt_iter_add_callback(), and checked (and * cleared) by upon entry into bt_iter_read_event(). * bt_iter_read_event() is responsible for calling dep * graph calculation if it sees this flag set. */ int recalculate_dep_graph; /* * Array of pointers to struct bt_dependencies, for garbage * collection. We're not using a linked list here because each * struct bt_dependencies can belong to more than one * bt_iter. */ GPtrArray *dep_gc; uint64_t events_lost; }; void ctf_update_current_packet_index(struct ctf_stream_definition *stream, struct packet_index *prev_index, struct packet_index *cur_index); #endif /*_BABELTRACE_CTF_EVENTS_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/ctf/metadata.h0000644000175000017500000000454112075630002016733 00000000000000#ifndef _BABELTRACE_CTF_METADATA_H #define _BABELTRACE_CTF_METADATA_H /* * BabelTrace * * CTF Metadata Header * * Copyright 2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #define CTF_MAGIC 0xC1FC1FC1 #define TSDL_MAGIC 0x75D11D57 struct ctf_file_stream { struct ctf_stream_definition parent; struct ctf_stream_pos pos; /* current stream position */ }; #define HEADER_END char end_field #define header_sizeof(type) offsetof(typeof(type), end_field) struct metadata_packet_header { uint32_t magic; /* 0x75D11D57 */ uint8_t uuid[16]; /* Unique Universal Identifier */ uint32_t checksum; /* 0 if unused */ uint32_t content_size; /* in bits */ uint32_t packet_size; /* in bits */ uint8_t compression_scheme; /* 0 if unused */ uint8_t encryption_scheme; /* 0 if unused */ uint8_t checksum_scheme; /* 0 if unused */ uint8_t major; /* CTF spec major version number */ uint8_t minor; /* CTF spec minor version number */ HEADER_END; }; #endif /* _BABELTRACE_CTF_METADATA_H */ babeltrace-1.2.1/include/babeltrace/ctf/events.h0000644000175000017500000002255612304150543016467 00000000000000#ifndef _BABELTRACE_CTF_EVENTS_H #define _BABELTRACE_CTF_EVENTS_H /* * BabelTrace * * CTF events API * * Copyright 2011-2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #ifdef __cplusplus extern "C" { #endif struct bt_definition; struct bt_declaration; struct bt_ctf_event; struct bt_ctf_event_decl; struct bt_ctf_field_decl; /* * the top-level scopes in CTF */ enum bt_ctf_scope { BT_TRACE_PACKET_HEADER = 0, BT_STREAM_PACKET_CONTEXT = 1, BT_STREAM_EVENT_HEADER = 2, BT_STREAM_EVENT_CONTEXT = 3, BT_EVENT_CONTEXT = 4, BT_EVENT_FIELDS = 5, }; /* * the supported CTF types */ enum ctf_type_id { CTF_TYPE_UNKNOWN = 0, CTF_TYPE_INTEGER, CTF_TYPE_FLOAT, CTF_TYPE_ENUM, CTF_TYPE_STRING, CTF_TYPE_STRUCT, CTF_TYPE_UNTAGGED_VARIANT, CTF_TYPE_VARIANT, CTF_TYPE_ARRAY, CTF_TYPE_SEQUENCE, NR_CTF_TYPES, }; /* * the supported CTF string encodings */ enum ctf_string_encoding { CTF_STRING_NONE = 0, CTF_STRING_UTF8, CTF_STRING_ASCII, CTF_STRING_UNKNOWN, }; /* * bt_ctf_get_top_level_scope: return a definition of the top-level scope * * Top-level scopes are defined in the bt_ctf_scope enum. * In order to get a field or a field list, the user needs to pass a * scope as argument, this scope can be a top-level scope or a scope * relative to an arbitrary field. This function provides the mapping * between the enum and the actual definition of top-level scopes. * On error return NULL. */ const struct bt_definition *bt_ctf_get_top_level_scope(const struct bt_ctf_event *event, enum bt_ctf_scope scope); /* * bt_ctf_event_get_name: returns the name of the event or NULL on error */ const char *bt_ctf_event_name(const struct bt_ctf_event *event); /* * bt_ctf_get_cycles: returns the timestamp of the event as written * in the packet (in cycles) or -1ULL on error. */ uint64_t bt_ctf_get_cycles(const struct bt_ctf_event *event); /* * bt_ctf_get_timestamp: returns the timestamp of the event offsetted * with the system clock source (in ns) or -1ULL on error */ uint64_t bt_ctf_get_timestamp(const struct bt_ctf_event *event); /* * bt_ctf_get_field_list: obtain the list of fields for compound type * * This function can be used to obtain the list of fields contained * within a top-level scope of an event or a compound type: array, * sequence, structure, or variant. * This function sets the "list" pointer to an array of definition * pointers and set count to the number of elements in the array. * Return 0 on success and a negative value on error. * * The content pointed to by "list" should *not* be freed. It stays * valid as long as the event is unchanged (as long as the iterator * from which the event is extracted is unchanged). */ int bt_ctf_get_field_list(const struct bt_ctf_event *event, const struct bt_definition *scope, struct bt_definition const * const **list, unsigned int *count); /* * bt_ctf_get_field: returns the definition of a specific field */ const struct bt_definition *bt_ctf_get_field(const struct bt_ctf_event *event, const struct bt_definition *scope, const char *field); /* * bt_ctf_get_index: if the field is an array or a sequence, return the element * at position index, otherwise return NULL; */ const struct bt_definition *bt_ctf_get_index(const struct bt_ctf_event *event, const struct bt_definition *field, unsigned int index); /* * bt_ctf_field_name: returns the name of a field or NULL on error */ const char *bt_ctf_field_name(const struct bt_definition *def); /* * bt_ctf_get_decl_from_def: return the declaration of a field from * its definition or NULL on error */ const struct bt_declaration *bt_ctf_get_decl_from_def(const struct bt_definition *def); /* * bt_ctf_get_decl_from_field_decl: return the declaration of a field from * a field_decl or NULL on error */ const struct bt_declaration *bt_ctf_get_decl_from_field_decl( const struct bt_ctf_field_decl *field); /* * bt_ctf_field_type: returns the type of a field or -1 if unknown */ enum ctf_type_id bt_ctf_field_type(const struct bt_declaration *decl); /* * bt_ctf_get_int_signedness: return the signedness of an integer * * return 0 if unsigned * return 1 if signed * return -1 on error */ int bt_ctf_get_int_signedness(const struct bt_declaration *decl); /* * bt_ctf_get_int_base: return the base of an int or a negative value on error */ int bt_ctf_get_int_base(const struct bt_declaration *decl); /* * bt_ctf_get_int_byte_order: return the byte order of an int or a negative * value on error */ int bt_ctf_get_int_byte_order(const struct bt_declaration *decl); /* * bt_ctf_get_int_len: return the size, in bits, of an int or a negative * value on error */ ssize_t bt_ctf_get_int_len(const struct bt_declaration *decl); /* * bt_ctf_get_encoding: return the encoding of an int, a string, or of * the integer contained in a char array or a sequence. * return a negative value on error */ enum ctf_string_encoding bt_ctf_get_encoding(const struct bt_declaration *decl); /* * bt_ctf_get_array_len: return the len of an array or a negative * value on error */ int bt_ctf_get_array_len(const struct bt_declaration *decl); /* * bt_ctf_get_struct_field_count: return the number of fields in a structure. * Returns a negative value on error. */ uint64_t bt_ctf_get_struct_field_count(const struct bt_definition *field); /* * Field access functions * * These functions return the value associated with the field passed in * parameter. * * If the field does not exist or is not of the type requested, the value * returned is undefined. To check if an error occured, use the * bt_ctf_field_get_error() function after accessing a field. * * bt_ctf_get_enum_int gets the integer field of an enumeration. * bt_ctf_get_enum_str gets the string matching the current enumeration * value, or NULL if the current value does not match any string. */ uint64_t bt_ctf_get_uint64(const struct bt_definition *field); int64_t bt_ctf_get_int64(const struct bt_definition *field); const struct bt_definition *bt_ctf_get_enum_int(const struct bt_definition *field); const char *bt_ctf_get_enum_str(const struct bt_definition *field); char *bt_ctf_get_char_array(const struct bt_definition *field); char *bt_ctf_get_string(const struct bt_definition *field); double bt_ctf_get_float(const struct bt_definition *field); const struct bt_definition *bt_ctf_get_variant(const struct bt_definition *field); const struct bt_definition *bt_ctf_get_struct_field_index( const struct bt_definition *field, uint64_t i); /* * bt_ctf_field_get_error: returns the last error code encountered while * accessing a field and reset the error flag. * Return 0 if no error, a negative value otherwise. */ int bt_ctf_field_get_error(void); /* * bt_ctf_get_event_decl_list: get a list of all the event declarations in * a trace. * * The list array is pointed to the array of event declarations. * The number of events in the array is written in count. * * Return 0 on success and a negative value on error. * * The content pointed to by "list" should *not* be freed. It stays * valid as long as the trace is opened. */ int bt_ctf_get_event_decl_list(int handle_id, struct bt_context *ctx, struct bt_ctf_event_decl * const **list, unsigned int *count); /* * bt_ctf_get_decl_event_name: return the name of the event or NULL on error */ const char *bt_ctf_get_decl_event_name(const struct bt_ctf_event_decl *event); /* * bt_ctf_get_decl_fields: get all field declarations in a scope of an event * * The list array is pointed to the array of field declaration. * The number of field declaration in the array is written in count. * * Returns 0 on success and a negative value on error * * The content pointed to by "list" should *not* be freed. It stays * valid as long as the trace is opened. */ int bt_ctf_get_decl_fields(struct bt_ctf_event_decl *event_decl, enum bt_ctf_scope scope, struct bt_ctf_field_decl const * const **list, unsigned int *count); /* * bt_ctf_get_decl_field_name: return the name of a field decl or NULL on error */ const char *bt_ctf_get_decl_field_name(const struct bt_ctf_field_decl *field); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_CTF_EVENTS_H */ babeltrace-1.2.1/include/babeltrace/ctf/ctf-index.h0000644000175000017500000000426012304150543017034 00000000000000/* * Copyright (C) 2013 - Julien Desfossez * Mathieu Desnoyers * David Goulet * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef LTTNG_INDEX_H #define LTTNG_INDEX_H #include #define CTF_INDEX_MAGIC 0xC1F1DCC1 #define CTF_INDEX_MAJOR 1 #define CTF_INDEX_MINOR 0 /* * Header at the beginning of each index file. * All integer fields are stored in big endian. */ struct ctf_packet_index_file_hdr { uint32_t magic; uint32_t index_major; uint32_t index_minor; /* struct packet_index_len, in bytes */ uint32_t packet_index_len; } __attribute__((__packed__)); /* * Packet index generated for each trace packet store in a trace file. * All integer fields are stored in big endian. */ struct ctf_packet_index { uint64_t offset; /* offset of the packet in the file, in bytes */ uint64_t packet_size; /* packet size, in bits */ uint64_t content_size; /* content size, in bits */ uint64_t timestamp_begin; uint64_t timestamp_end; uint64_t events_discarded; uint64_t stream_id; } __attribute__((__packed__)); #endif /* LTTNG_INDEX_H */ babeltrace-1.2.1/include/babeltrace/ctf/callbacks-internal.h0000644000175000017500000000444712272477052020726 00000000000000#ifndef _BABELTRACE_CALLBACKS_INTERNAL_H #define _BABELTRACE_CALLBACKS_INTERNAL_H /* * BabelTrace * * Internal callbacks header * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include struct bt_callback { int prio; /* Callback order priority. Lower first. Dynamically assigned from dependency graph. */ void *private_data; int flags; struct bt_dependencies *depends; struct bt_dependencies *weak_depends; struct bt_dependencies *provides; enum bt_cb_ret (*callback)(struct bt_ctf_event *ctf_data, void *private_data); }; struct bt_callback_chain { GArray *callback; /* Array of struct bt_callback, ordered by priority */ }; /* * per id callbacks need to be per stream class because event ID vs * event name mapping can vary from stream to stream. */ struct bt_stream_callbacks { GArray *per_id_callbacks; /* Array of struct bt_callback_chain */ }; struct bt_dependencies { GArray *deps; /* Array of GQuarks */ int refcount; /* free when decremented to 0 */ }; BT_HIDDEN void process_callbacks(struct bt_ctf_iter *iter, struct ctf_stream_definition *stream); #endif /* _BABELTRACE_CALLBACKS_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/babeltrace.h0000644000175000017500000000255212075630002016463 00000000000000#ifndef _BABELTRACE_H #define _BABELTRACE_H /* * BabelTrace API * * Copyright 2010-2011 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #endif /* _BABELTRACE_H */ babeltrace-1.2.1/include/babeltrace/list.h0000644000175000017500000001165212022214346015354 00000000000000/* * Copyright (C) 2002 Free Software Foundation, Inc. * This file is part of the GNU C Library. * Contributed by Ulrich Drepper , 2002. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; only * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef _BT_LIST_H #define _BT_LIST_H 1 /* The definitions of this file are adopted from those which can be found in the Linux kernel headers to enable people familiar with the latter find their way in these sources as well. */ #ifdef __cplusplus extern "C" { #endif /* Basic type for the double-link list. */ struct bt_list_head { struct bt_list_head *next; struct bt_list_head *prev; }; /* Define a variable with the head and tail of the list. */ #define BT_LIST_HEAD(name) \ struct bt_list_head name = { &(name), &(name) } /* Initialize a new list head. */ #define BT_INIT_LIST_HEAD(ptr) \ (ptr)->next = (ptr)->prev = (ptr) #define BT_LIST_HEAD_INIT(name) { .prev = &(name), .next = &(name) } /* Add new element at the head of the list. */ static inline void bt_list_add (struct bt_list_head *newp, struct bt_list_head *head) { head->next->prev = newp; newp->next = head->next; newp->prev = head; head->next = newp; } /* Add new element at the tail of the list. */ static inline void bt_list_add_tail (struct bt_list_head *newp, struct bt_list_head *head) { head->prev->next = newp; newp->next = head; newp->prev = head->prev; head->prev = newp; } /* Remove element from list. */ static inline void __bt_list_del (struct bt_list_head *prev, struct bt_list_head *next) { next->prev = prev; prev->next = next; } /* Remove element from list. */ static inline void bt_list_del (struct bt_list_head *elem) { __bt_list_del (elem->prev, elem->next); } /* delete from list, add to another list as head */ static inline void bt_list_move (struct bt_list_head *elem, struct bt_list_head *head) { __bt_list_del (elem->prev, elem->next); bt_list_add (elem, head); } /* replace an old entry. */ static inline void bt_list_replace(struct bt_list_head *old, struct bt_list_head *_new) { _new->next = old->next; _new->prev = old->prev; _new->prev->next = _new; _new->next->prev = _new; } /* Join two lists. */ static inline void bt_list_splice (struct bt_list_head *add, struct bt_list_head *head) { /* Do nothing if the list which gets added is empty. */ if (add != add->next) { add->next->prev = head; add->prev->next = head->next; head->next->prev = add->prev; head->next = add->next; } } /* Get typed element from list at a given position. */ #define bt_list_entry(ptr, type, member) \ ((type *) ((char *) (ptr) - (unsigned long) (&((type *) 0)->member))) /* Iterate forward over the elements of the list. */ #define bt_list_for_each(pos, head) \ for (pos = (head)->next; pos != (head); pos = pos->next) /* Iterate forward over the elements of the list. */ #define bt_list_for_each_prev(pos, head) \ for (pos = (head)->prev; pos != (head); pos = pos->prev) /* Iterate backwards over the elements list. The list elements can be removed from the list while doing this. */ #define bt_list_for_each_prev_safe(pos, p, head) \ for (pos = (head)->prev, p = pos->prev; \ pos != (head); \ pos = p, p = pos->prev) #define bt_list_for_each_entry(pos, head, member) \ for (pos = bt_list_entry((head)->next, typeof(*pos), member); \ &pos->member != (head); \ pos = bt_list_entry(pos->member.next, typeof(*pos), member)) #define bt_list_for_each_entry_reverse(pos, head, member) \ for (pos = bt_list_entry((head)->prev, typeof(*pos), member); \ &pos->member != (head); \ pos = bt_list_entry(pos->member.prev, typeof(*pos), member)) #define bt_list_for_each_entry_safe(pos, p, head, member) \ for (pos = bt_list_entry((head)->next, typeof(*pos), member), \ p = bt_list_entry(pos->member.next,typeof(*pos), member); \ &pos->member != (head); \ pos = p, p = bt_list_entry(pos->member.next, typeof(*pos), member)) static inline int bt_list_empty(struct bt_list_head *head) { return head == head->next; } static inline void bt_list_replace_init(struct bt_list_head *old, struct bt_list_head *_new) { struct bt_list_head *head = old->next; bt_list_del(old); bt_list_add_tail(_new, head); BT_INIT_LIST_HEAD(old); } #ifdef __cplusplus } #endif #endif /* _BT_LIST_H */ babeltrace-1.2.1/include/babeltrace/compat/0000755000175000017500000000000012306621157015575 500000000000000babeltrace-1.2.1/include/babeltrace/compat/string.h0000644000175000017500000000343612304150543017174 00000000000000#ifndef _BABELTRACE_COMPAT_STRING_H #define _BABELTRACE_COMPAT_STRING_H /* * Copyright (C) 2013 Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #if !defined(__linux__) || ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !defined(_GNU_SOURCE)) /* XSI-compliant strerror_r */ static inline int compat_strerror_r(int errnum, char *buf, size_t buflen) { return strerror_r(errnum, buf, buflen); } #else /* GNU-compliant strerror_r */ static inline int compat_strerror_r(int errnum, char *buf, size_t buflen) { char *retbuf; retbuf = strerror_r(errnum, buf, buflen); if (retbuf != buf) strncpy(buf, retbuf, buflen); buf[buflen - 1] = '\0'; return 0; } #endif #endif /* _BABELTRACE_COMPAT_STRING_H */ babeltrace-1.2.1/include/babeltrace/compat/utc.h0000644000175000017500000000426212304150543016457 00000000000000#ifndef _BABELTRACE_UTC_H #define _BABELTRACE_UTC_H /* * Copyright (C) 2011-2013 Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include /* If set, use GNU or BSD timegm(3) */ #if defined(_BSD_SOURCE) || defined(_SVID_SOURCE) static inline time_t babeltrace_timegm(struct tm *tm) { return timegm(tm); } #else #include #include /* * Note: Below implementation of timegm() is not thread safe * as it changes the environment * variable TZ. It is OK as long as it is kept in self-contained program, * but should not be used within thread-safe library code. */ static inline time_t babeltrace_timegm(struct tm *tm) { time_t ret; char *tz; tz = getenv("TZ"); /* * Make a temporary copy, as the environment variable will be * modified. */ if (tz) { tz = strdup(tz); if (!tz) { /* * Memory allocation error. */ return (time_t) -1; } } /* Temporarily setting TZ to 1 for UTC */ setenv("TZ", "", 1); tzset(); ret = mktime(tm); if (tz) { setenv("TZ", tz, 1); free(tz); } else { unsetenv("TZ"); } tzset(); return ret; } #endif #endif /* _BABELTRACE_UTC_H */ babeltrace-1.2.1/include/babeltrace/compat/uuid.h0000644000175000017500000000663512304150543016640 00000000000000#ifndef _BABELTRACE_COMPAT_UUID_H #define _BABELTRACE_COMPAT_UUID_H /* * babeltrace/compat/uuid.h * * Copyright (C) 2011 Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include /* Includes final \0. */ #define BABELTRACE_UUID_STR_LEN 37 #define BABELTRACE_UUID_LEN 16 #ifdef BABELTRACE_HAVE_LIBUUID #include static inline int babeltrace_uuid_generate(unsigned char *uuid_out) { uuid_generate(uuid_out); return 0; } static inline int babeltrace_uuid_unparse(const unsigned char *uuid_in, char *str_out) { uuid_unparse(uuid_in, str_out); return 0; } static inline int babeltrace_uuid_parse(const char *str_in, unsigned char *uuid_out) { return uuid_parse(str_in, uuid_out); } static inline int babeltrace_uuid_compare(const unsigned char *uuid_a, const unsigned char *uuid_b) { return uuid_compare(uuid_a, uuid_b); } #elif defined(BABELTRACE_HAVE_LIBC_UUID) #include #include #include #include static inline int babeltrace_uuid_generate(unsigned char *uuid_out) { uint32_t status; uuid_create((uuid_t *) uuid_out, &status); if (status == uuid_s_ok) return 0; else return -1; } static inline int babeltrace_uuid_unparse(const unsigned char *uuid_in, char *str_out) { uint32_t status; char *alloc_str; int ret; uuid_to_string((uuid_t *) uuid_in, &alloc_str, &status); if (status == uuid_s_ok) { strcpy(str_out, alloc_str); ret = 0; } else { ret = -1; } free(alloc_str); return ret; } static inline int babeltrace_uuid_parse(const char *str_in, unsigned char *uuid_out) { uint32_t status; uuid_from_string(str_in, (uuid_t *) uuid_out, &status); if (status == uuid_s_ok) return 0; else return -1; } static inline int babeltrace_uuid_compare(const unsigned char *uuid_a, const unsigned char *uuid_b) { uint32_t status; uuid_compare((uuid_t *) uuid_a, (uuid_t *) uuid_b, &status); if (status == uuid_s_ok) return 0; else return -1; } #elif defined(__MINGW32__) int babeltrace_uuid_generate(unsigned char *uuid_out); int babeltrace_uuid_unparse(const unsigned char *uuid_in, char *str_out); int babeltrace_uuid_parse(const char *str_in, unsigned char *uuid_out); int babeltrace_uuid_compare(const unsigned char *uuid_a, const unsigned char *uuid_b); #else #error "Babeltrace needs to have a UUID generator configured." #endif #endif /* _BABELTRACE_COMPAT_UUID_H */ babeltrace-1.2.1/include/babeltrace/compat/memstream.h0000644000175000017500000001177112272477052017674 00000000000000#ifndef _BABELTRACE_FORMAT_CTF_MEMSTREAM_H #define _BABELTRACE_FORMAT_CTF_MEMSTREAM_H /* * format/ctf/memstream.h * * Copyright 2012 (c) - Mathieu Desnoyers * * memstream compatibility layer. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #define _GNU_SOURCE #include #ifdef BABELTRACE_HAVE_FMEMOPEN #include static inline FILE *babeltrace_fmemopen(void *buf, size_t size, const char *mode) { return fmemopen(buf, size, mode); } #else /* BABELTRACE_HAVE_FMEMOPEN */ #include #include /* * Fallback for systems which don't have fmemopen. Copy buffer to a * temporary file, and use that file as FILE * input. */ static inline FILE *babeltrace_fmemopen(void *buf, size_t size, const char *mode) { char tmpname[PATH_MAX]; size_t len; FILE *fp; int ret; /* * Support reading only. */ if (strcmp(mode, "rb") != 0) { return NULL; } strncpy(tmpname, "/tmp/babeltrace-tmp-XXXXXX", PATH_MAX); ret = mkstemp(tmpname); if (ret < 0) { return NULL; } /* * We need to write to the file. */ fp = fdopen(ret, "w+"); if (!fp) { goto error_unlink; } /* Copy the entire buffer to the file */ len = fwrite(buf, sizeof(char), size, fp); if (len != size) { goto error_close; } ret = fseek(fp, 0L, SEEK_SET); if (ret < 0) { perror("fseek"); goto error_close; } /* We keep the handle open, but can unlink the file on the VFS. */ ret = unlink(tmpname); if (ret < 0) { perror("unlink"); } return fp; error_close: ret = fclose(fp); if (ret < 0) { perror("close"); } error_unlink: ret = unlink(tmpname); if (ret < 0) { perror("unlink"); } return NULL; } #endif /* BABELTRACE_HAVE_FMEMOPEN */ #ifdef BABELTRACE_HAVE_OPEN_MEMSTREAM #include static inline FILE *babeltrace_open_memstream(char **ptr, size_t *sizeloc) { return open_memstream(ptr, sizeloc); } static inline int babeltrace_close_memstream(char **buf, size_t *size, FILE *fp) { return fclose(fp); } #else /* BABELTRACE_HAVE_OPEN_MEMSTREAM */ #include #include /* * Fallback for systems which don't have open_memstream. Create FILE * * with babeltrace_open_memstream, but require call to * babeltrace_close_memstream to flush all data written to the FILE * * into the buffer (which we allocate). */ static inline FILE *babeltrace_open_memstream(char **ptr, size_t *sizeloc) { char tmpname[PATH_MAX]; int ret; FILE *fp; strncpy(tmpname, "/tmp/babeltrace-tmp-XXXXXX", PATH_MAX); ret = mkstemp(tmpname); if (ret < 0) { return NULL; } fp = fdopen(ret, "w+"); if (!fp) { goto error_unlink; } /* * babeltrace_flush_memstream will update the buffer content * with read from fp. No need to keep the file around, just the * handle. */ ret = unlink(tmpname); if (ret < 0) { perror("unlink"); } return fp; error_unlink: ret = unlink(tmpname); if (ret < 0) { perror("unlink"); } return NULL; } /* Get file size, allocate buffer, copy. */ static inline int babeltrace_close_memstream(char **buf, size_t *size, FILE *fp) { size_t len, n; long pos; int ret; ret = fflush(fp); if (ret < 0) { perror("fflush"); return ret; } ret = fseek(fp, 0L, SEEK_END); if (ret < 0) { perror("fseek"); return ret; } pos = ftell(fp); if (ret < 0) { perror("ftell"); return ret; } *size = pos; /* add final \0 */ *buf = calloc(pos + 1, sizeof(char)); if (!*buf) { return -ENOMEM; } ret = fseek(fp, 0L, SEEK_SET); if (ret < 0) { perror("fseek"); goto error_free; } /* Copy the entire file into the buffer */ n = 0; clearerr(fp); while (!feof(fp) && !ferror(fp) && (*size - n > 0)) { len = fread(*buf, sizeof(char), *size - n, fp); n += len; } if (n != *size) { ret = -1; goto error_close; } ret = fclose(fp); if (ret < 0) { perror("fclose"); return ret; } return 0; error_close: ret = fclose(fp); if (ret < 0) { perror("fclose"); } error_free: free(*buf); *buf = NULL; return ret; } #endif /* BABELTRACE_HAVE_OPEN_MEMSTREAM */ #endif /* _BABELTRACE_FORMAT_CTF_MEMSTREAM_H */ babeltrace-1.2.1/include/babeltrace/align.h0000644000175000017500000000645012166544013015501 00000000000000#ifndef _BABELTRACE_ALIGN_H #define _BABELTRACE_ALIGN_H /* * BabelTrace align.h - alignment header * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #ifndef PAGE_SIZE /* Cygwin limits.h defines its own PAGE_SIZE */ #define PAGE_SIZE sysconf(_SC_PAGE_SIZE) #endif #define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1) #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) #define PTR_ALIGN(p, a) ((typeof(p)) ALIGN((unsigned long) (p), a)) #define ALIGN_FLOOR(x, a) __ALIGN_FLOOR_MASK(x, (typeof(x)) (a) - 1) #define __ALIGN_FLOOR_MASK(x, mask) ((x) & ~(mask)) #define PTR_ALIGN_FLOOR(p, a) \ ((typeof(p)) ALIGN_FLOOR((unsigned long) (p), a)) #define IS_ALIGNED(x, a) (((x) & ((typeof(x)) (a) - 1)) == 0) /* * Align pointer on natural object alignment. */ #define object_align(obj) PTR_ALIGN(obj, __alignof__(*(obj))) #define object_align_floor(obj) PTR_ALIGN_FLOOR(obj, __alignof__(*(obj))) /** * offset_align - Calculate the offset needed to align an object on its natural * alignment towards higher addresses. * @align_drift: object offset from an "alignment"-aligned address. * @alignment: natural object alignment. Must be non-zero, power of 2. * * Returns the offset that must be added to align towards higher * addresses. */ #define offset_align(align_drift, alignment) \ ({ \ MAYBE_BUILD_BUG_ON((alignment) == 0 \ || ((alignment) & ((alignment) - 1))); \ (((alignment) - (align_drift)) & ((alignment) - 1)); \ }) /** * offset_align_floor - Calculate the offset needed to align an object * on its natural alignment towards lower addresses. * @align_drift: object offset from an "alignment"-aligned address. * @alignment: natural object alignment. Must be non-zero, power of 2. * * Returns the offset that must be substracted to align towards lower addresses. */ #define offset_align_floor(align_drift, alignment) \ ({ \ MAYBE_BUILD_BUG_ON((alignment) == 0 \ || ((alignment) & ((alignment) - 1))); \ (((align_drift) - (alignment)) & ((alignment) - 1); \ }) #endif /* _BABELTRACE_ALIGN_H */ babeltrace-1.2.1/include/babeltrace/context.h0000644000175000017500000001014312272477052016073 00000000000000#ifndef _BABELTRACE_CONTEXT_H #define _BABELTRACE_CONTEXT_H /* * BabelTrace * * context header * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #ifdef __cplusplus extern "C" { #endif /* struct bt_context is opaque to the user */ struct bt_context; struct bt_stream_pos; struct bt_ctf_event; /* * bt_context_create : create a Babeltrace context * * Allocate a new context. The creation of the context sets the refcount * to 1. * * Returns an allocated context on success and NULL on error */ struct bt_context *bt_context_create(void); /* * bt_context_add_trace : Add a trace by path to the context * * Open a trace. * * path is the path to the trace, it is not recursive. If "path" is NULL, * stream_list is used instead as a list of mmap streams to open for the trace. * * format is a string containing the format name in which the trace was * produced. * * packet_seek can be NULL to use the default packet_seek handler provided by * the trace format. If non-NULL, it is used as an override of the handler for * seeks across packets. It takes as parameter a stream position, the packet * index it needs to seek to (for SEEK_SET), and a "whence" parameter (either * SEEK_CUR: seek to next packet, or SEEK_SET: seek to packet at packet index). * * stream_list is a linked list of streams, it is used to open a trace where * the trace data is located in memory mapped areas instead of trace files, * this argument should be non-NULL when path is NULL. * * The metadata parameter acts as a metadata override when not NULL, otherwise * the format handles the metadata opening. * * Return: the trace handle id (>= 0) on success, a negative * value on error. */ int bt_context_add_trace(struct bt_context *ctx, const char *path, const char *format, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), struct bt_mmap_stream_list *stream_list, FILE *metadata); /* * bt_context_remove_trace: Remove a trace from the context. * * Effectively closing the trace. Return negative error value if trace * is not in context. */ int bt_context_remove_trace(struct bt_context *ctx, int trace_id); /* * bt_context_get and bt_context_put : increments and decrement the * refcount of the context * * These functions ensures that the context won't be destroyed when it * is in use. The same number of get and put (plus one extra put to * release the initial reference done at creation) has to be done to * destroy a context. * * When the context refcount is decremented to 0 by a bt_context_put, * the context is freed. */ void bt_context_get(struct bt_context *ctx); void bt_context_put(struct bt_context *ctx); /* * bt_ctf_get_context : get the context associated with an event * * Returns NULL on error */ struct bt_context *bt_ctf_event_get_context(const struct bt_ctf_event *event); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_CONTEXT_H */ babeltrace-1.2.1/include/babeltrace/ctf-text/0000755000175000017500000000000012306621157016050 500000000000000babeltrace-1.2.1/include/babeltrace/ctf-text/types.h0000644000175000017500000000632612272477052017321 00000000000000#ifndef _BABELTRACE_CTF_TEXT_TYPES_H #define _BABELTRACE_CTF_TEXT_TYPES_H /* * Common Trace Format (Text Output) * * Type header * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #include #include #include #include #include /* * Inherit from both struct bt_stream_pos and struct bt_trace_descriptor. */ struct ctf_text_stream_pos { struct bt_stream_pos parent; struct bt_trace_descriptor trace_descriptor; FILE *fp; /* File pointer. NULL if unset. */ int depth; int dummy; /* disable output */ int print_names; /* print field names */ int field_nr; uint64_t last_real_timestamp; /* to print delta */ uint64_t last_cycles_timestamp; /* to print delta */ GString *string; /* Current string */ }; static inline struct ctf_text_stream_pos *ctf_text_pos(struct bt_stream_pos *pos) { return container_of(pos, struct ctf_text_stream_pos, parent); } /* * Write only is supported for now. */ BT_HIDDEN int ctf_text_integer_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_float_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_string_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_enum_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_struct_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_variant_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_array_write(struct bt_stream_pos *pos, struct bt_definition *definition); BT_HIDDEN int ctf_text_sequence_write(struct bt_stream_pos *pos, struct bt_definition *definition); static inline void print_pos_tabs(struct ctf_text_stream_pos *pos) { int i; for (i = 0; i < pos->depth; i++) fprintf(pos->fp, "\t"); } /* * Check if the field must be printed. */ BT_HIDDEN int print_field(struct bt_definition *definition); #endif /* _BABELTRACE_CTF_TEXT_TYPES_H */ babeltrace-1.2.1/include/babeltrace/bitfield.h0000644000175000017500000003304412301702736016167 00000000000000#ifndef _BABELTRACE_BITFIELD_H #define _BABELTRACE_BITFIELD_H /* * BabelTrace * * Bitfields read/write functions. * * Copyright 2010 - Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include /* C99 5.2.4.2 Numerical limits */ #include /* C99 5.2.4.2 Numerical limits */ #include #include /* Non-standard BIG_ENDIAN, LITTLE_ENDIAN, BYTE_ORDER */ /* We can't shift a int from 32 bit, >> 32 and << 32 on int is undefined */ #define _bt_piecewise_rshift(_v, _shift) \ ({ \ typeof(_v) ___v = (_v); \ typeof(_shift) ___shift = (_shift); \ unsigned long sb = (___shift) / (sizeof(___v) * CHAR_BIT - 1); \ unsigned long final = (___shift) % (sizeof(___v) * CHAR_BIT - 1); \ \ for (; sb; sb--) \ ___v >>= sizeof(___v) * CHAR_BIT - 1; \ ___v >>= final; \ }) #define _bt_piecewise_lshift(_v, _shift) \ ({ \ typeof(_v) ___v = (_v); \ typeof(_shift) ___shift = (_shift); \ unsigned long sb = (___shift) / (sizeof(___v) * CHAR_BIT - 1); \ unsigned long final = (___shift) % (sizeof(___v) * CHAR_BIT - 1); \ \ for (; sb; sb--) \ ___v <<= sizeof(___v) * CHAR_BIT - 1; \ ___v <<= final; \ }) #define _bt_is_signed_type(type) ((type) -1 < (type) 0) #define _bt_unsigned_cast(type, v) \ ({ \ (sizeof(v) < sizeof(type)) ? \ ((type) (v)) & (~(~(type) 0 << (sizeof(v) * CHAR_BIT))) : \ (type) (v); \ }) /* * bt_bitfield_write - write integer to a bitfield in native endianness * * Save integer to the bitfield, which starts at the "start" bit, has "len" * bits. * The inside of a bitfield is from high bits to low bits. * Uses native endianness. * For unsigned "v", pad MSB with 0 if bitfield is larger than v. * For signed "v", sign-extend v if bitfield is larger than v. * * On little endian, bytes are placed from the less significant to the most * significant. Also, consecutive bitfields are placed from lower bits to higher * bits. * * On big endian, bytes are places from most significant to less significant. * Also, consecutive bitfields are placed from higher to lower bits. */ #define _bt_bitfield_write_le(_ptr, type, _start, _length, _v) \ do { \ typeof(_v) __v = (_v); \ type *__ptr = (void *) (_ptr); \ unsigned long __start = (_start), __length = (_length); \ type mask, cmask; \ unsigned long ts = sizeof(type) * CHAR_BIT; /* type size */ \ unsigned long start_unit, end_unit, this_unit; \ unsigned long end, cshift; /* cshift is "complement shift" */ \ \ if (!__length) \ break; \ \ end = __start + __length; \ start_unit = __start / ts; \ end_unit = (end + (ts - 1)) / ts; \ \ /* Trim v high bits */ \ if (__length < sizeof(__v) * CHAR_BIT) \ __v &= ~((~(typeof(__v)) 0) << __length); \ \ /* We can now append v with a simple "or", shift it piece-wise */ \ this_unit = start_unit; \ if (start_unit == end_unit - 1) { \ mask = ~((~(type) 0) << (__start % ts)); \ if (end % ts) \ mask |= (~(type) 0) << (end % ts); \ cmask = (type) __v << (__start % ts); \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ break; \ } \ if (__start % ts) { \ cshift = __start % ts; \ mask = ~((~(type) 0) << cshift); \ cmask = (type) __v << cshift; \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ __v = _bt_piecewise_rshift(__v, ts - cshift); \ __start += ts - cshift; \ this_unit++; \ } \ for (; this_unit < end_unit - 1; this_unit++) { \ __ptr[this_unit] = (type) __v; \ __v = _bt_piecewise_rshift(__v, ts); \ __start += ts; \ } \ if (end % ts) { \ mask = (~(type) 0) << (end % ts); \ cmask = (type) __v; \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ } else \ __ptr[this_unit] = (type) __v; \ } while (0) #define _bt_bitfield_write_be(_ptr, type, _start, _length, _v) \ do { \ typeof(_v) __v = (_v); \ type *__ptr = (void *) (_ptr); \ unsigned long __start = (_start), __length = (_length); \ type mask, cmask; \ unsigned long ts = sizeof(type) * CHAR_BIT; /* type size */ \ unsigned long start_unit, end_unit, this_unit; \ unsigned long end, cshift; /* cshift is "complement shift" */ \ \ if (!__length) \ break; \ \ end = __start + __length; \ start_unit = __start / ts; \ end_unit = (end + (ts - 1)) / ts; \ \ /* Trim v high bits */ \ if (__length < sizeof(__v) * CHAR_BIT) \ __v &= ~((~(typeof(__v)) 0) << __length); \ \ /* We can now append v with a simple "or", shift it piece-wise */ \ this_unit = end_unit - 1; \ if (start_unit == end_unit - 1) { \ mask = ~((~(type) 0) << ((ts - (end % ts)) % ts)); \ if (__start % ts) \ mask |= (~((type) 0)) << (ts - (__start % ts)); \ cmask = (type) __v << ((ts - (end % ts)) % ts); \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ break; \ } \ if (end % ts) { \ cshift = end % ts; \ mask = ~((~(type) 0) << (ts - cshift)); \ cmask = (type) __v << (ts - cshift); \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ __v = _bt_piecewise_rshift(__v, cshift); \ end -= cshift; \ this_unit--; \ } \ for (; (long) this_unit >= (long) start_unit + 1; this_unit--) { \ __ptr[this_unit] = (type) __v; \ __v = _bt_piecewise_rshift(__v, ts); \ end -= ts; \ } \ if (__start % ts) { \ mask = (~(type) 0) << (ts - (__start % ts)); \ cmask = (type) __v; \ cmask &= ~mask; \ __ptr[this_unit] &= mask; \ __ptr[this_unit] |= cmask; \ } else \ __ptr[this_unit] = (type) __v; \ } while (0) /* * bt_bitfield_write - write integer to a bitfield in native endianness * bt_bitfield_write_le - write integer to a bitfield in little endian * bt_bitfield_write_be - write integer to a bitfield in big endian */ #if (BYTE_ORDER == LITTLE_ENDIAN) #define bt_bitfield_write(ptr, type, _start, _length, _v) \ _bt_bitfield_write_le(ptr, type, _start, _length, _v) #define bt_bitfield_write_le(ptr, type, _start, _length, _v) \ _bt_bitfield_write_le(ptr, type, _start, _length, _v) #define bt_bitfield_write_be(ptr, type, _start, _length, _v) \ _bt_bitfield_write_be(ptr, unsigned char, _start, _length, _v) #elif (BYTE_ORDER == BIG_ENDIAN) #define bt_bitfield_write(ptr, type, _start, _length, _v) \ _bt_bitfield_write_be(ptr, type, _start, _length, _v) #define bt_bitfield_write_le(ptr, type, _start, _length, _v) \ _bt_bitfield_write_le(ptr, unsigned char, _start, _length, _v) #define bt_bitfield_write_be(ptr, type, _start, _length, _v) \ _bt_bitfield_write_be(ptr, type, _start, _length, _v) #else /* (BYTE_ORDER == PDP_ENDIAN) */ #error "Byte order not supported" #endif #define _bt_bitfield_read_le(_ptr, type, _start, _length, _vptr) \ do { \ typeof(*(_vptr)) *__vptr = (_vptr); \ typeof(*__vptr) __v; \ type *__ptr = (void *) (_ptr); \ unsigned long __start = (_start), __length = (_length); \ type mask, cmask; \ unsigned long ts = sizeof(type) * CHAR_BIT; /* type size */ \ unsigned long start_unit, end_unit, this_unit; \ unsigned long end, cshift; /* cshift is "complement shift" */ \ \ if (!__length) { \ *__vptr = 0; \ break; \ } \ \ end = __start + __length; \ start_unit = __start / ts; \ end_unit = (end + (ts - 1)) / ts; \ \ this_unit = end_unit - 1; \ if (_bt_is_signed_type(typeof(__v)) \ && (__ptr[this_unit] & ((type) 1 << ((end % ts ? : ts) - 1)))) \ __v = ~(typeof(__v)) 0; \ else \ __v = 0; \ if (start_unit == end_unit - 1) { \ cmask = __ptr[this_unit]; \ cmask >>= (__start % ts); \ if ((end - __start) % ts) { \ mask = ~((~(type) 0) << (end - __start)); \ cmask &= mask; \ } \ __v = _bt_piecewise_lshift(__v, end - __start); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ *__vptr = __v; \ break; \ } \ if (end % ts) { \ cshift = end % ts; \ mask = ~((~(type) 0) << cshift); \ cmask = __ptr[this_unit]; \ cmask &= mask; \ __v = _bt_piecewise_lshift(__v, cshift); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ end -= cshift; \ this_unit--; \ } \ for (; (long) this_unit >= (long) start_unit + 1; this_unit--) { \ __v = _bt_piecewise_lshift(__v, ts); \ __v |= _bt_unsigned_cast(typeof(__v), __ptr[this_unit]);\ end -= ts; \ } \ if (__start % ts) { \ mask = ~((~(type) 0) << (ts - (__start % ts))); \ cmask = __ptr[this_unit]; \ cmask >>= (__start % ts); \ cmask &= mask; \ __v = _bt_piecewise_lshift(__v, ts - (__start % ts)); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ } else { \ __v = _bt_piecewise_lshift(__v, ts); \ __v |= _bt_unsigned_cast(typeof(__v), __ptr[this_unit]);\ } \ *__vptr = __v; \ } while (0) #define _bt_bitfield_read_be(_ptr, type, _start, _length, _vptr) \ do { \ typeof(*(_vptr)) *__vptr = (_vptr); \ typeof(*__vptr) __v; \ type *__ptr = (void *) (_ptr); \ unsigned long __start = (_start), __length = (_length); \ type mask, cmask; \ unsigned long ts = sizeof(type) * CHAR_BIT; /* type size */ \ unsigned long start_unit, end_unit, this_unit; \ unsigned long end, cshift; /* cshift is "complement shift" */ \ \ if (!__length) { \ *__vptr = 0; \ break; \ } \ \ end = __start + __length; \ start_unit = __start / ts; \ end_unit = (end + (ts - 1)) / ts; \ \ this_unit = start_unit; \ if (_bt_is_signed_type(typeof(__v)) \ && (__ptr[this_unit] & ((type) 1 << (ts - (__start % ts) - 1)))) \ __v = ~(typeof(__v)) 0; \ else \ __v = 0; \ if (start_unit == end_unit - 1) { \ cmask = __ptr[this_unit]; \ cmask >>= (ts - (end % ts)) % ts; \ if ((end - __start) % ts) { \ mask = ~((~(type) 0) << (end - __start)); \ cmask &= mask; \ } \ __v = _bt_piecewise_lshift(__v, end - __start); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ *__vptr = __v; \ break; \ } \ if (__start % ts) { \ cshift = __start % ts; \ mask = ~((~(type) 0) << (ts - cshift)); \ cmask = __ptr[this_unit]; \ cmask &= mask; \ __v = _bt_piecewise_lshift(__v, ts - cshift); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ __start += ts - cshift; \ this_unit++; \ } \ for (; this_unit < end_unit - 1; this_unit++) { \ __v = _bt_piecewise_lshift(__v, ts); \ __v |= _bt_unsigned_cast(typeof(__v), __ptr[this_unit]);\ __start += ts; \ } \ if (end % ts) { \ mask = ~((~(type) 0) << (end % ts)); \ cmask = __ptr[this_unit]; \ cmask >>= ts - (end % ts); \ cmask &= mask; \ __v = _bt_piecewise_lshift(__v, end % ts); \ __v |= _bt_unsigned_cast(typeof(__v), cmask); \ } else { \ __v = _bt_piecewise_lshift(__v, ts); \ __v |= _bt_unsigned_cast(typeof(__v), __ptr[this_unit]);\ } \ *__vptr = __v; \ } while (0) /* * bt_bitfield_read - read integer from a bitfield in native endianness * bt_bitfield_read_le - read integer from a bitfield in little endian * bt_bitfield_read_be - read integer from a bitfield in big endian */ #if (BYTE_ORDER == LITTLE_ENDIAN) #define bt_bitfield_read(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_le(_ptr, type, _start, _length, _vptr) #define bt_bitfield_read_le(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_le(_ptr, type, _start, _length, _vptr) #define bt_bitfield_read_be(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_be(_ptr, unsigned char, _start, _length, _vptr) #elif (BYTE_ORDER == BIG_ENDIAN) #define bt_bitfield_read(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_be(_ptr, type, _start, _length, _vptr) #define bt_bitfield_read_le(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_le(_ptr, unsigned char, _start, _length, _vptr) #define bt_bitfield_read_be(_ptr, type, _start, _length, _vptr) \ _bt_bitfield_read_be(_ptr, type, _start, _length, _vptr) #else /* (BYTE_ORDER == PDP_ENDIAN) */ #error "Byte order not supported" #endif #endif /* _BABELTRACE_BITFIELD_H */ babeltrace-1.2.1/include/babeltrace/format-internal.h0000644000175000017500000000352512272477052017517 00000000000000#ifndef _BABELTRACE_FORMAT_INTERNAL_H #define _BABELTRACE_FORMAT_INTERNAL_H /* * BabelTrace * * Trace Format Internal Header * * Copyright 2010-2013 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #ifdef __cplusplus extern "C" { #endif /* Parent trace descriptor */ struct bt_trace_descriptor { char path[PATH_MAX]; /* trace path */ struct bt_context *ctx; struct bt_trace_handle *handle; struct trace_collection *collection; /* Container of this trace */ GHashTable *clocks; struct ctf_clock *single_clock; /* currently supports only one clock */ }; #ifdef __cplusplus } #endif #endif /* _BABELTRACE_FORMAT_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/clock-internal.h0000644000175000017500000000324312136231243017304 00000000000000#ifndef _BABELTRACE_CLOCK_INTERNAL_H #define _BABELTRACE_CLOCK_INTERNAL_H /* * BabelTrace * * clocks header (internal) * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ static inline uint64_t clock_cycles_to_ns(struct ctf_clock *clock, uint64_t cycles) { if (clock->freq == 1000000000ULL) { /* 1GHZ freq, no need to scale cycles value */ return cycles; } else { return (double) cycles * 1000000000.0 / (double) clock->freq; } } #endif /* _BABELTRACE_CLOCK_INTERNAL_H */ babeltrace-1.2.1/include/babeltrace/trace-handle.h0000644000175000017500000000520112075630002016720 00000000000000#ifndef _BABELTRACE_TRACE_HANDLE_H #define _BABELTRACE_TRACE_HANDLE_H /* * BabelTrace * * trace_handle header * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Julien Desfossez * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #ifdef __cplusplus extern "C" { #endif /* * trace_handle : unique identifier of a trace * * The trace_handle allows the user to manipulate a trace file directly. * It is a unique identifier representing a trace file. */ struct bt_trace_handle; struct bt_ctf_event; /* * bt_trace_handle_get_path : returns the path of a trace_handle or NULL * on error. */ const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id); /* * bt_trace_handle_get_timestamp_begin : returns the creation time (in * nanoseconds or cycles depending on type) of the buffers of a trace * or -1ULL on error. */ uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id, enum bt_clock_type type); /* * bt_trace_handle_get_timestamp_end : returns the destruction timestamp * (in nanoseconds or cycles depending on type) of the buffers of a trace * or -1ULL on error. */ uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id, enum bt_clock_type type); /* * bt_ctf_event_get_handle_id : get the handle id associated with an event * * Returns -1 on error */ int bt_ctf_event_get_handle_id(const struct bt_ctf_event *event); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_TRACE_HANDLE_H */ babeltrace-1.2.1/include/babeltrace/format.h0000644000175000017500000000571612304150543015676 00000000000000#ifndef _BABELTRACE_FORMAT_H #define _BABELTRACE_FORMAT_H /* * BabelTrace * * Trace Format Header * * Copyright 2010-2011 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include #include #ifdef __cplusplus extern "C" { #endif typedef int bt_intern_str; /* forward declaration */ struct bt_stream_pos; struct bt_context; struct bt_trace_handle; struct bt_trace_descriptor; struct bt_mmap_stream { int fd; struct bt_list_head list; void *priv; }; struct bt_mmap_stream_list { struct bt_list_head head; }; struct bt_format { bt_intern_str name; struct bt_trace_descriptor *(*open_trace)(const char *path, int flags, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); struct bt_trace_descriptor *(*open_mmap_trace)( struct bt_mmap_stream_list *mmap_list, void (*packet_seek)(struct bt_stream_pos *pos, size_t index, int whence), FILE *metadata_fp); int (*close_trace)(struct bt_trace_descriptor *descriptor); void (*set_context)(struct bt_trace_descriptor *descriptor, struct bt_context *ctx); void (*set_handle)(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle); uint64_t (*timestamp_begin)(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type); uint64_t (*timestamp_end)(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle, enum bt_clock_type type); int (*convert_index_timestamp)(struct bt_trace_descriptor *descriptor); }; extern struct bt_format *bt_lookup_format(bt_intern_str qname); extern void bt_fprintf_format_list(FILE *fp); extern int bt_register_format(struct bt_format *format); extern void bt_unregister_format(struct bt_format *format); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_FORMAT_H */ babeltrace-1.2.1/include/babeltrace/trace-collection.h0000644000175000017500000000346212272477052017644 00000000000000#ifndef _BABELTRACE_TRACE_COLLECTION_H #define _BABELTRACE_TRACE_COLLECTION_H /* * BabelTrace lib * * trace collection header * * Copyright 2012 EfficiOS Inc. and Linux Foundation * * Author: Mathieu Desnoyers * Author: Yannick Brosseau * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifdef __cplusplus extern "C" { #endif struct trace_collection; void bt_init_trace_collection(struct trace_collection *tc); void bt_finalize_trace_collection(struct trace_collection *tc); int bt_trace_collection_add(struct trace_collection *tc, struct bt_trace_descriptor *td); int bt_trace_collection_remove(struct trace_collection *tc, struct bt_trace_descriptor *td); #ifdef __cplusplus } #endif #endif /* _BABELTRACE_TRACE_COLLECTION_H */ babeltrace-1.2.1/include/Makefile.am0000644000175000017500000000323312304150543014175 00000000000000babeltraceinclude_HEADERS = \ babeltrace/babeltrace.h \ babeltrace/format.h \ babeltrace/context.h \ babeltrace/iterator.h \ babeltrace/trace-handle.h \ babeltrace/list.h \ babeltrace/clock-types.h babeltracectfinclude_HEADERS = \ babeltrace/ctf/events.h \ babeltrace/ctf/callbacks.h \ babeltrace/ctf/iterator.h babeltracectfwriterinclude_HEADERS = \ babeltrace/ctf-writer/clock.h \ babeltrace/ctf-writer/writer.h \ babeltrace/ctf-writer/event-fields.h \ babeltrace/ctf-writer/event-types.h \ babeltrace/ctf-writer/event.h \ babeltrace/ctf-writer/stream.h noinst_HEADERS = \ babeltrace/align.h \ babeltrace/babeltrace-internal.h \ babeltrace/bitfield.h \ babeltrace/clock-internal.h \ babeltrace/compiler.h \ babeltrace/context-internal.h \ babeltrace/format-internal.h \ babeltrace/iterator-internal.h \ babeltrace/trace-collection.h \ babeltrace/prio_heap.h \ babeltrace/types.h \ babeltrace/ctf-ir/metadata.h \ babeltrace/ctf/events-internal.h \ babeltrace/ctf/metadata.h \ babeltrace/ctf-text/types.h \ babeltrace/ctf/types.h \ babeltrace/ctf/callbacks-internal.h \ babeltrace/ctf/ctf-index.h \ babeltrace/ctf-writer/ref-internal.h \ babeltrace/ctf-writer/writer-internal.h \ babeltrace/ctf-writer/event-types-internal.h \ babeltrace/ctf-writer/event-fields-internal.h \ babeltrace/ctf-writer/event-internal.h \ babeltrace/ctf-writer/clock-internal.h \ babeltrace/ctf-writer/stream-internal.h \ babeltrace/ctf-writer/functor-internal.h \ babeltrace/trace-handle-internal.h \ babeltrace/compat/uuid.h \ babeltrace/compat/memstream.h \ babeltrace/compat/string.h \ babeltrace/compat/utc.h \ babeltrace/endian.h \ babeltrace/mmap-align.h babeltrace-1.2.1/include/Makefile.in0000644000175000017500000004776412306621104014225 00000000000000# Makefile.in generated by automake 1.11.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__make_dryrun = \ { \ am__dry=no; \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \ *) \ for am__flg in $$MAKEFLAGS; do \ case $$am__flg in \ *=*|--*) ;; \ *n*) am__dry=yes; break;; \ esac; \ done;; \ esac; \ test $$am__dry = yes; \ } pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = include DIST_COMMON = $(babeltracectfinclude_HEADERS) \ $(babeltracectfwriterinclude_HEADERS) \ $(babeltraceinclude_HEADERS) $(noinst_HEADERS) \ $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pkg_swig.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(babeltracectfincludedir)" \ "$(DESTDIR)$(babeltracectfwriterincludedir)" \ "$(DESTDIR)$(babeltraceincludedir)" HEADERS = $(babeltracectfinclude_HEADERS) \ $(babeltracectfwriterinclude_HEADERS) \ $(babeltraceinclude_HEADERS) $(noinst_HEADERS) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BABELTRACE_LIBRARY_VERSION = @BABELTRACE_LIBRARY_VERSION@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GLIB_CFLAGS = @GLIB_CFLAGS@ GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ GLIB_LIBS = @GLIB_LIBS@ GLIB_MKENUMS = @GLIB_MKENUMS@ GMODULE_CFLAGS = @GMODULE_CFLAGS@ GMODULE_LIBS = @GMODULE_LIBS@ GOBJECT_QUERY = @GOBJECT_QUERY@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_CFLAGS = @PACKAGE_CFLAGS@ PACKAGE_LIBS = @PACKAGE_LIBS@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHON_CONFIG = @PYTHON_CONFIG@ PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ PYTHON_INCLUDE = @PYTHON_INCLUDE@ PYTHON_PLATFORM = @PYTHON_PLATFORM@ PYTHON_PREFIX = @PYTHON_PREFIX@ PYTHON_VERSION = @PYTHON_VERSION@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SWIG = @SWIG@ SWIG_LIB = @SWIG_LIB@ VERSION = @VERSION@ YACC = @YACC@ YFLAGS = @YFLAGS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ babeltracectfincludedir = @babeltracectfincludedir@ babeltracectfwriterincludedir = @babeltracectfwriterincludedir@ babeltraceincludedir = @babeltraceincludedir@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pkgpyexecdir = @pkgpyexecdir@ pkgpythondir = @pkgpythondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ pyexecdir = @pyexecdir@ pythondir = @pythondir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ babeltraceinclude_HEADERS = \ babeltrace/babeltrace.h \ babeltrace/format.h \ babeltrace/context.h \ babeltrace/iterator.h \ babeltrace/trace-handle.h \ babeltrace/list.h \ babeltrace/clock-types.h babeltracectfinclude_HEADERS = \ babeltrace/ctf/events.h \ babeltrace/ctf/callbacks.h \ babeltrace/ctf/iterator.h babeltracectfwriterinclude_HEADERS = \ babeltrace/ctf-writer/clock.h \ babeltrace/ctf-writer/writer.h \ babeltrace/ctf-writer/event-fields.h \ babeltrace/ctf-writer/event-types.h \ babeltrace/ctf-writer/event.h \ babeltrace/ctf-writer/stream.h noinst_HEADERS = \ babeltrace/align.h \ babeltrace/babeltrace-internal.h \ babeltrace/bitfield.h \ babeltrace/clock-internal.h \ babeltrace/compiler.h \ babeltrace/context-internal.h \ babeltrace/format-internal.h \ babeltrace/iterator-internal.h \ babeltrace/trace-collection.h \ babeltrace/prio_heap.h \ babeltrace/types.h \ babeltrace/ctf-ir/metadata.h \ babeltrace/ctf/events-internal.h \ babeltrace/ctf/metadata.h \ babeltrace/ctf-text/types.h \ babeltrace/ctf/types.h \ babeltrace/ctf/callbacks-internal.h \ babeltrace/ctf/ctf-index.h \ babeltrace/ctf-writer/ref-internal.h \ babeltrace/ctf-writer/writer-internal.h \ babeltrace/ctf-writer/event-types-internal.h \ babeltrace/ctf-writer/event-fields-internal.h \ babeltrace/ctf-writer/event-internal.h \ babeltrace/ctf-writer/clock-internal.h \ babeltrace/ctf-writer/stream-internal.h \ babeltrace/ctf-writer/functor-internal.h \ babeltrace/trace-handle-internal.h \ babeltrace/compat/uuid.h \ babeltrace/compat/memstream.h \ babeltrace/compat/string.h \ babeltrace/compat/utc.h \ babeltrace/endian.h \ babeltrace/mmap-align.h all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign include/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign include/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-babeltracectfincludeHEADERS: $(babeltracectfinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(babeltracectfinclude_HEADERS)'; test -n "$(babeltracectfincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(babeltracectfincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(babeltracectfincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(babeltracectfincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(babeltracectfincludedir)" || exit $$?; \ done uninstall-babeltracectfincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(babeltracectfinclude_HEADERS)'; test -n "$(babeltracectfincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(babeltracectfincludedir)'; $(am__uninstall_files_from_dir) install-babeltracectfwriterincludeHEADERS: $(babeltracectfwriterinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(babeltracectfwriterinclude_HEADERS)'; test -n "$(babeltracectfwriterincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(babeltracectfwriterincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(babeltracectfwriterincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(babeltracectfwriterincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(babeltracectfwriterincludedir)" || exit $$?; \ done uninstall-babeltracectfwriterincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(babeltracectfwriterinclude_HEADERS)'; test -n "$(babeltracectfwriterincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(babeltracectfwriterincludedir)'; $(am__uninstall_files_from_dir) install-babeltraceincludeHEADERS: $(babeltraceinclude_HEADERS) @$(NORMAL_INSTALL) @list='$(babeltraceinclude_HEADERS)'; test -n "$(babeltraceincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(babeltraceincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(babeltraceincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(babeltraceincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(babeltraceincludedir)" || exit $$?; \ done uninstall-babeltraceincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(babeltraceinclude_HEADERS)'; test -n "$(babeltraceincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(babeltraceincludedir)'; $(am__uninstall_files_from_dir) ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(babeltracectfincludedir)" "$(DESTDIR)$(babeltracectfwriterincludedir)" "$(DESTDIR)$(babeltraceincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-babeltracectfincludeHEADERS \ install-babeltracectfwriterincludeHEADERS \ install-babeltraceincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-babeltracectfincludeHEADERS \ uninstall-babeltracectfwriterincludeHEADERS \ uninstall-babeltraceincludeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool ctags distclean distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am \ install-babeltracectfincludeHEADERS \ install-babeltracectfwriterincludeHEADERS \ install-babeltraceincludeHEADERS install-data install-data-am \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags uninstall uninstall-am \ uninstall-babeltracectfincludeHEADERS \ uninstall-babeltracectfwriterincludeHEADERS \ uninstall-babeltraceincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: