aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeongJae Park <sj38.park@gmail.com>2024-04-06 10:05:33 -0700
committerSeongJae Park <sj38.park@gmail.com>2024-04-06 10:05:33 -0700
commit9963d6ca5bd6e5444b12e08e09348797a56891f3 (patch)
tree592be10f5a55d8289a2060ebf35f4db6bd79c8c0
parent3f7b614ccc6a743fed5a7b38e1e98eb3dfda18bd (diff)
downloaddamo-9963d6ca5bd6e5444b12e08e09348797a56891f3.tar.gz
_damo_records/start_recording: Remove default parameter values
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
-rw-r--r--_damo_records.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/_damo_records.py b/_damo_records.py
index ee971240..1c5fd82f 100644
--- a/_damo_records.py
+++ b/_damo_records.py
@@ -658,8 +658,7 @@ Returns pipe for the perf. The pipe should be passed to finish_recording()
later.
'''
def start_recording(tracepoint, file_path, file_format, file_permission,
- monitoring_intervals,
- profile=False, profile_target_pid=None):
+ monitoring_intervals, profile, profile_target_pid):
pipe = subprocess.Popen(
[PERF, 'record', '-a', '-e', tracepoint, '-o', file_path])
profile_pipe = None