citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 1bc2b2ca20329ad452afa15563cedf0af2e17e0b
parent 60c34ee472fb7db229f884e399572362ea28e485
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue,  9 Aug 2016 17:24:39 -0600

update more paths

Diffstat:
MTest/Viewer.pm | 4++--
Msrc/runtime_proc.cc | 2+-
Msrc/runtime_proc.h | 2+-
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Test/Viewer.pm b/Test/Viewer.pm @@ -28,7 +28,7 @@ sub accept { my $sock = $listen_sock->accept(); $self->{client_socket} = $sock; - # Protocol defined in lib/runtime.c function send_static(). + # Protocol defined in src/runtime.c function send_static(). # ($self->{maj}, $self->{min}) = read_unpack($sock, 2, "C2"); ($self->{ntus}, $self->{nlines}) = read_unpack($sock, 8, "L2"); @@ -56,7 +56,7 @@ sub get_dynamic_data { for my $tu (@{ $self->{tus} }) { my ($file_name, $nlines) = @{ $tu }; - # Protocol defined in lib/runtime.c function send_dynamic(). + # Protocol defined in src/runtime.c function send_dynamic(). # if (read_unpack($sock, 1, "C") == 0) { $data{$file_name} = [ (0) x $nlines ]; diff --git a/src/runtime_proc.cc b/src/runtime_proc.cc @@ -26,7 +26,7 @@ RuntimeProcess::RuntimeProcess(af_unix &sock) : { assert(sizeof(pid_t) == 4); - // Protocol defined in lib/runtime.c send_static(). + // Protocol defined in src/runtime.c send_static(). // This is the receive side of things. m_socket.read_all(m_major); assert(m_major == citrun_major); diff --git a/src/runtime_proc.h b/src/runtime_proc.h @@ -19,7 +19,7 @@ public: RuntimeProcess(af_unix &); void read_executions(); - // Protocol defined in lib/runtime.c send_static(). + // Protocol defined in src/runtime.c send_static(). uint8_t m_major; uint8_t m_minor; std::string m_progname;