From a8fc754d208471ae77183d1437daec13c5720f06 Mon Sep 17 00:00:00 2001 From: Rickard Green Date: Thu, 28 Sep 2017 16:51:59 +0200 Subject: Fix xmllint warning --- system/doc/efficiency_guide/advanced.xml | 35 ++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/system/doc/efficiency_guide/advanced.xml b/system/doc/efficiency_guide/advanced.xml index e1760d0ded..bb4440a245 100644 --- a/system/doc/efficiency_guide/advanced.xml +++ b/system/doc/efficiency_guide/advanced.xml @@ -264,21 +264,26 @@ Unique Integers on a Runtime System Instance - There are two types of unique integers both created using the - erlang:unique_integer() - BIF. Unique integers created: - - with the monotonic modifier - consist of a set of 2⁶⁴ - 1 unique integers. - without the monotonic modifier - consist of a set of 2⁶⁴ - 1 unique integers per scheduler - thread and a set of 2⁶⁴ - 1 unique integers shared by - other threads. That is the total amount of unique integers without - the monotonic modifier is (NoSchedulers + 1) * (2⁶⁴ - 1) - - If a unique integer is created each nano second, unique integers - will at earliest be reused after more than 584 years. That is, for - the foreseeable future they are unique enough. + + There are two types of unique integers both created using the + erlang:unique_integer() + BIF: +

+ 1. Unique integers created with the + monotonic modifier consist of a set of 2⁶⁴ - 1 + unique integers. +

+ 2. Unique integers created without the + monotonic modifier consist of a set of 2⁶⁴ - 1 + unique integers per scheduler thread and a set of 2⁶⁴ - 1 + unique integers shared by other threads. That is, the total + amount of unique integers without the monotonic modifier + is (NoSchedulers + 1) × (2⁶⁴ - 1). +

+ If a unique integer is created each nano second, unique integers + will at earliest be reused after more than 584 years. That is, for + the foreseeable future they are unique enough. +
System Limits -- cgit v1.2.3