From e0871bd3914ef59b45f64f778a8838950c52ad68 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 28 Jul 2025 14:49:31 +0200 Subject: [PATCH] Fix typos in mark connect functions --- src/emu/ovni/mark.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/ovni/mark.c b/src/emu/ovni/mark.c index aab9e96..0ca1307 100644 --- a/src/emu/ovni/mark.c +++ b/src/emu/ovni/mark.c @@ -492,7 +492,7 @@ init_pcf(struct emu *emu, struct pcf *pcf) static int connect_thread(struct emu *emu) { - /* Get cpu PRV */ + /* Get thread PVT */ struct pvt *pvt = recorder_find_pvt(&emu->recorder, "thread"); if (pvt == NULL) { err("cannot find thread pvt"); @@ -555,7 +555,7 @@ connect_cpu_prv(struct emu *emu, struct cpu *scpu, struct prv *prv) } /* Then connect the output of the tracking module to the prv - * trace for the current thread */ + * trace for the current cpu */ struct chan *out = track_get_output(track); long row = (long) scpu->gindex; long flags = PRV_SKIPDUPNULL; @@ -589,7 +589,7 @@ connect_cpu(struct emu *emu) } } - /* Init thread PCF */ + /* Init cpu PCF */ struct pcf *pcf = pvt_get_pcf(pvt); if (init_pcf(emu, pcf) != 0) { err("init_pcf failed");