mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
globally remove all trailing whitespace from .cpp and .hpp files missed by previous commit
This commit is contained in:
parent
4dc63966f0
commit
4178db5f63
56 changed files with 50764 additions and 50764 deletions
|
|
@ -1,12 +1,12 @@
|
|||
/*
|
||||
*
|
||||
* program: sanityCheck
|
||||
*
|
||||
* program: sanityCheck
|
||||
* file: main.c
|
||||
* author: Todd Naugle
|
||||
* date: 11/17/2010
|
||||
*
|
||||
*
|
||||
* Desc: Command line version of the sanity check functions found in jack
|
||||
*/
|
||||
*/
|
||||
|
||||
#include <algorithm>
|
||||
#include <stdio.h>
|
||||
|
|
@ -262,7 +262,7 @@ ParseSwitches(
|
|||
}
|
||||
|
||||
if (OK) {
|
||||
// All switches are at least valid, now check to make sure they are all valid to
|
||||
// All switches are at least valid, now check to make sure they are all valid to
|
||||
// be used together.
|
||||
|
||||
if (gSwitchesReceived.size() > 1) {
|
||||
|
|
@ -291,7 +291,7 @@ ParseSwitches(
|
|||
}
|
||||
else {
|
||||
fprintf(stderr, "\n");
|
||||
fprintf(stderr, "ERROR - Invalid Option: %s\n", (const char *) argv[--i]);
|
||||
fprintf(stderr, "ERROR - Invalid Option: %s\n", (const char *) argv[--i]);
|
||||
fprintf(stderr, "Check syntax\n");
|
||||
PrintUsage();
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*
|
||||
* Set of functions to gather system information for the jack setup wizard.
|
||||
*
|
||||
*
|
||||
* TODO: Test for rt prio availability
|
||||
*
|
||||
* @author Florian Faber, faber@faberman.de
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
#include "systemtest.h"
|
||||
|
||||
/**
|
||||
* This function checks for the existence of known frequency scaling mechanisms
|
||||
* This function checks for the existence of known frequency scaling mechanisms
|
||||
* in this system by testing for the availability of scaling governors/
|
||||
*
|
||||
* @returns 0 if the system has no frequency scaling capabilities non-0 otherwise.
|
||||
|
|
@ -73,13 +73,13 @@ static int read_string(char* filename, char* buf, size_t buflen) {
|
|||
if (-1<fd) {
|
||||
r = read (fd, buf, buflen-1);
|
||||
(void) close(fd);
|
||||
|
||||
|
||||
if (-1==r) {
|
||||
fprintf(stderr, "Error while reading \"%s\": %s\n", filename, strerror(errno));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return (int) r;
|
||||
}
|
||||
|
||||
|
|
@ -96,7 +96,7 @@ static int read_int(char* filename, int* value) {
|
|||
|
||||
|
||||
/**
|
||||
* This function determines wether any CPU core uses a variable clock speed if frequency
|
||||
* This function determines wether any CPU core uses a variable clock speed if frequency
|
||||
* scaling is available. If the governor for all cores is either "powersave" or
|
||||
* "performance", the CPU frequency can be assumed to be static. This is also the case
|
||||
* if scaling_min_freq and scaling_max_freq are set to the same value.
|
||||
|
|
@ -110,7 +110,7 @@ int system_uses_frequencyscaling() {
|
|||
while (!done) {
|
||||
(void) snprintf(filename, 256, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_governor", cpu);
|
||||
if (0<read_string(filename, buf, 256)) {
|
||||
if ((0!=strncmp("performance", buf, 11)) &&
|
||||
if ((0!=strncmp("performance", buf, 11)) &&
|
||||
(0!=strncmp("powersafe", buf, 9))) {
|
||||
// So it's neither the "performance" nor the "powersafe" governor
|
||||
(void) snprintf(filename, 256, "/sys/devices/system/cpu/cpu%d/cpufreq/scaling_min_freq", cpu);
|
||||
|
|
@ -121,7 +121,7 @@ int system_uses_frequencyscaling() {
|
|||
// wrong governor AND different frequency limits -> scaling
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
|
@ -130,7 +130,7 @@ int system_uses_frequencyscaling() {
|
|||
}
|
||||
cpu++;
|
||||
}
|
||||
|
||||
|
||||
// couldn't find anything that points to scaling
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -172,18 +172,18 @@ int system_user_in_group(const char *name) {
|
|||
free(list);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
num_groups = getgroups(MAX_GROUPS, list);
|
||||
|
||||
|
||||
while (i<num_groups) {
|
||||
if (list[i]==gid) {
|
||||
found = 1;
|
||||
i = num_groups;
|
||||
}
|
||||
|
||||
|
||||
i++;
|
||||
}
|
||||
|
||||
|
||||
free(list);
|
||||
|
||||
return found;
|
||||
|
|
@ -254,7 +254,7 @@ int system_user_can_rtprio() {
|
|||
perror("sched_get_priority");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
schparam.sched_priority = min_prio;
|
||||
schparam.sched_priority = min_prio;
|
||||
|
||||
if (0 == sched_setscheduler(0, SCHED_FIFO, &schparam)) {
|
||||
// TODO: restore previous state
|
||||
|
|
@ -264,7 +264,7 @@ int system_user_can_rtprio() {
|
|||
exit(EXIT_FAILURE);
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -300,7 +300,7 @@ long long unsigned int system_available_physical_mem() {
|
|||
if (strncmp (buf, "MemTotal:", 9) == 0) {
|
||||
if (sscanf (buf, "%*s %llu", &res) != 1) {
|
||||
perror ("parse error in /proc/meminfo");
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
perror("read from /proc/meminfo");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue