From 2a809e21025bc2b8aaabf6a9319ef1b0b444c721 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 18 Oct 2004 21:41:25 +0000 Subject: [PATCH] Initial version. --- .../ConvertingR3.14.6AppsToR3.14.7.html | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 documentation/ConvertingR3.14.6AppsToR3.14.7.html diff --git a/documentation/ConvertingR3.14.6AppsToR3.14.7.html b/documentation/ConvertingR3.14.6AppsToR3.14.7.html new file mode 100644 index 000000000..d6aaecde2 --- /dev/null +++ b/documentation/ConvertingR3.14.6AppsToR3.14.7.html @@ -0,0 +1,39 @@ + + + + + + + + + + +
+

Converting an EPICS R3.14.6 application to R3.14.7

+
+ +

This document describes how to convert a R3.14.6 application so that it +builds with release R3.14.7.

+ + +

State Notation Compiler flags

+ +
+To make the run-time code reentrant, thus allowing more than one +instance of the state program to run on an IOC add the line +"_SNCFLAGS += +r" to the Makefile, replacing with the +state notation language code file name. +
+ +

epicsExit now required.

+ +
+ Add the following lines +#include "epicsExit.h" + +epicsExit(0); + +
+ +