Browse Source

do not subtract max priority from jack RT priority

This subtraction (a) can create negative values (b) doesn't make any sense since we just add 10 to the jack priority later.
pull/3/head
Paul Davis 11 years ago
parent
commit
c0b7402b80
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      zalsa/jackclient.cc

+ 1
- 1
zalsa/jackclient.cc View File

@@ -70,7 +70,7 @@ void Jackclient::init (const char *jserv)
register_ports (_nchan);
}

_rprio = jack_client_real_time_priority (_client) - sched_get_priority_max (spol);
_rprio = jack_client_real_time_priority (_client);
}

void Jackclient::register_ports (int n)


Loading…
Cancel
Save