From dfa7e90859c55ff3a7c33b14106fdfa682fc3c39 Mon Sep 17 00:00:00 2001 From: nmcl Date: Fri, 23 Dec 2016 18:55:19 +0000 Subject: [PATCH] Never sig change and no priority any more. https://github.com/nmcl/C--SIM/issues/41 --- Manual/man/man3/Process.3A | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Manual/man/man3/Process.3A b/Manual/man/man3/Process.3A index 15cc800..ddb8453 100644 --- a/Manual/man/man3/Process.3A +++ b/Manual/man/man3/Process.3A @@ -14,7 +14,7 @@ Process \- main simulation entity .br .BI "public:" .br -.BI " static const int Never;" +.BI " static const double Never;" .sp .BI " virtual ~Process ();" .sp @@ -74,9 +74,7 @@ Process \- main simulation entity .br .BI " Process ();" .br -.BI " Process (int priority);" -.br -.BI " Process (int priority, unsigned long stackSize);" +.BI " Process (unsigned long stackSize);" .sp .BI " void Hold (double t);" .br @@ -134,9 +132,8 @@ itself represents an abstract entity - the real entity must be provided by the deriving classes. The default constructor creates a process with the default -Thread(3A) priority and stack allocation. The other two -constructors allow for the modification of both of these -parameters. +Thread(3A) stack allocation. The other constructor +allows for the modification of this stack parameter. The .I