Skip to content

Commit

Permalink
trace: Add helper function to cast event arguments
Browse files Browse the repository at this point in the history
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Message-id: 145641860680.30295.1873612736245870753.stgit@localhost
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
  • Loading branch information
Lluís Vilanova authored and stefanhaRH committed Mar 1, 2016
1 parent 5d4e1a1 commit bc9beb4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/tracetool/__init__.py
Expand Up @@ -121,6 +121,10 @@ def types(self):
"""List of argument types."""
return [ type_ for type_, _ in self._args ]

def casted(self):
"""List of argument names casted to their type."""
return ["(%s)%s" % (type_, name) for type_, name in self._args]

def transform(self, *trans):
"""Return a new Arguments instance with transformed types.
Expand Down

0 comments on commit bc9beb4

Please sign in to comment.