summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-18 04:08:20 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2015-09-18 04:08:20 -0500
commit46d9df235b2b98b057e2bc9719b7d3416bd5438f (patch)
tree266457735dc43f695508118dfea3bcfa1bdb4e04
parent4cadf198ca653c9a76b09ff05d1947a3f67c5bb1 (diff)
downloadtdebase-46d9df23.tar.gz
tdebase-46d9df23.zip
Increase the maximum reserved VT number to 32
The display switch features depend on each session having a VT number, thus it is important to have a suffucient number of VTs available for use Most Linux distributions allow 64 VTs by default, and the kernel allows up to 256 VTs
-rw-r--r--tdm/backend/dm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tdm/backend/dm.c b/tdm/backend/dm.c
index b6789a6e2..be785399e 100644
--- a/tdm/backend/dm.c
+++ b/tdm/backend/dm.c
@@ -51,7 +51,7 @@ from the copyright holder.
# include <sys/vt.h>
#endif
-#define MAX_VT_NUMBER 16
+#define MAX_VT_NUMBER 32
static void SigHandler( int n );
static int ScanConfigs( int force );