Replace UNRELEASED => 7.0.10

This commit is contained in:
Andrew Johnson
2025-12-15 16:39:00 -06:00
parent 93d6137d23
commit 3f24e1800e
10 changed files with 12 additions and 12 deletions

View File

@@ -512,7 +512,7 @@ DBCORE_API long dbChannelGet(dbChannel *chan, short type,
* \param[in] pfl Pointer to a db_field_log or NULL.
* \returns 0, or an error status value.
*
* \since UNRELEASED If pfl is NULL and chan has filters, db_create_read_log() will be called
* \since 7.0.10 If pfl is NULL and chan has filters, db_create_read_log() will be called
* internally to create a temporary db_field_log which is passed to dbChannelGet()
* then deallocated.
*/

View File

@@ -143,7 +143,7 @@ DBCORE_API void dbsr(unsigned level);
DBCORE_API int dbServerClient(char *pBuf, size_t bufSize);
/** @brief CPP Macro indicating the dbServerStats() routine exists.
* @since UNRELEASED
* @since 7.0.10
*/
#define HAS_DBSERVER_STATS
@@ -161,7 +161,7 @@ DBCORE_API int dbServerClient(char *pBuf, size_t bufSize);
* variables and returns the number of dbServer::stats() methods called,
* 0 if a named server wasn't found or doesn't have a stats() method.
*
* @since UNRELEASED
* @since 7.0.10
*/
DBCORE_API int dbServerStats(const char *name, unsigned *channels,
unsigned *clients);

View File

@@ -167,7 +167,7 @@ DBCORE_API void testMonitorWait(testMonitor*);
*
* On return, any updates previously posted for this subscriptions have been delivered.
*
* @since UNRELEASED
* @since 7.0.10
*/
DBCORE_API void testMonitorSync(testMonitor*);
/** Return the number of monitor events which have occurred since create,

View File

@@ -86,7 +86,7 @@ input links, and returns a double-precision floating-point result. The
expression is evaluated by the EPICS Calc engine, and the result is returned as
the value of the link.
Since UNRELEASED the number of inputs has been increased from 12 to 21.
Since 7.0.10 the number of inputs has been increased from 12 to 21.
Two additional expressions may also be provided and are evaluated to determine
whether the record owning the link should be placed in alarm state. In both

View File

@@ -14,7 +14,7 @@ and logical operations on values retrieved from other records. The result
of its operations can then be accessed by another record so that it can
then be used.
Since UNRELEASED the number of inputs has been increased from 12 to 21.
Since 7.0.10 the number of inputs has been increased from 12 to 21.
=head2 Parameter Fields

View File

@@ -20,7 +20,7 @@ rather than the DBF_STRING fields used in the Wait record. For new
databases, it is recommended that the Calcout record be used instead of the
Wait record.
Since UNRELEASED the number of inputs has been increased from 12 to 21.
Since 7.0.10 the number of inputs has been increased from 12 to 21.
=head2 Parameter Fields

View File

@@ -14,7 +14,7 @@ The Data Fanout or "dfanout" record is used to forward data to up to
capability to forward data has been added to it. It has no associated
device support.
Since UNRELEASED the number of output links has been increased
Since 7.0.10 the number of output links has been increased
from 8 to 16 and IVOA and IVOV fields have been added.
=head2 Parameter Fields

View File

@@ -12,7 +12,7 @@
The subroutine record is used to call a C initialization routine and a recurring
scan routine. There is no device support for this record.
Since UNRELEASED the number of inputs has been increased from 12 to 21.
Since 7.0.10 the number of inputs has been increased from 12 to 21.
=recordtype sub

View File

@@ -24,7 +24,7 @@
/** \brief Number of input arguments to a calc expression (A-U)
*
* Since UNRELEASED the number of inputs has been increased from 12 to 21.
* Since 7.0.10 the number of inputs has been increased from 12 to 21.
*/
#define CALCPERFORM_NARGS 21
/** \brief Size of the internal partial result stack */

View File

@@ -163,9 +163,9 @@ typedef void (*initHookFunction)(initHookState state);
*
* Registers \p func for initHook notifications
* \param func Pointer to application's notification function.
* \return Always zero. (before UNRELEASED could return -1 on allocation failure)
* \return Always zero. (before 7.0.10 could return -1 on allocation failure)
*
* \since UNRELEASED initHookRegister is idempotent.
* \since 7.0.10 initHookRegister is idempotent.
* Previously, repeated registrations would result
* in duplicate calls to the hook function.
*/