Browse Source

remove extra debugging fields from client shared structure - they were there for the fifo problem

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@103 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
pbd 24 years ago
parent
commit
0faf354624
2 changed files with 0 additions and 6 deletions
  1. +0
    -4
      client.c
  2. +0
    -2
      jack/internal.h

+ 0
- 4
client.c View File

@@ -500,8 +500,6 @@ jack_client_thread (void *arg)
break;
}

rdtscll (client->control->when_started);

if (client->pollfd[0].revents & ~POLLIN) {
jack_error ("engine has shut down socket; thread exiting");
if (client->on_shutdown) {
@@ -597,8 +595,6 @@ jack_client_thread (void *arg)
effort.
*/

rdtscll (control->when_done);

write (client->graph_next_fd, &c, 1);
}
}


+ 0
- 2
jack/internal.h View File

@@ -125,8 +125,6 @@ typedef volatile struct {
volatile ClientType type; /* w: engine r: engine and client */
volatile char active : 1; /* w: engine r: engine and client */
volatile char dead : 1; /* r/w: engine */
volatile unsigned long long when_started;
volatile unsigned long long when_done;

/* callbacks */


Loading…
Cancel
Save