Changeset: 0b937786583a for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0b937786583a
Modified Files:
gdk/gdk_system.c
Branch: Jul2017
Log Message:
fixed typo: "bellow" -> "below"
diffs (21 lines):
diff --git a/gdk/gdk_system.c b/gdk/gdk_system.c
--- a/gdk/gdk_system.c
+++ b/gdk/gdk_system.c
@@ -816,7 +816,7 @@ smp_thread(void *data)
}
static int
-highest_power_of_two_bellow(int n)
+highest_power_of_two_below(int n)
{
int res = 0;
for (int i = n; i >= 1; i--) {
@@ -843,7 +843,7 @@ MT_check_nr_cores_(void)
t0 = GDKusec();
for (i = 0; i < curr; i++) {
if(MT_create_thread(threads + i, smp_thread, NULL,
MT_THR_JOINABLE)) {
- curr = highest_power_of_two_bellow(i);
+ curr = highest_power_of_two_below(i);
break;
}
}
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list