Skip to content

Commit 85ef84d

Browse files
committed
Merge branch 'maint-24' into maint
* maint-24: Updated OTP version Prepare release Update copyright year
2 parents 205da37 + 68522e5 commit 85ef84d

File tree

19 files changed

+126
-20
lines changed

19 files changed

+126
-20
lines changed

erts/doc/src/notes.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,6 +1228,30 @@
12281228

12291229
</section>
12301230

1231+
<section><title>Erts 12.3.2.9</title>
1232+
1233+
<section><title>Fixed Bugs and Malfunctions</title>
1234+
<list>
1235+
<item>
1236+
<p>
1237+
<c>process_info(Pid, status)</c> when <c>Pid /=
1238+
self()</c> could return an erroneous result.</p>
1239+
<p>
1240+
Own Id: OTP-18421 Aux Id: PR-6806 </p>
1241+
</item>
1242+
<item>
1243+
<p>In rare circumstances, when a process exceeded its
1244+
allowed heap size set by option <c>max_heap_size</c>, it
1245+
would not be killed as it should be, but instead enter a
1246+
kind of zombie state it would never get out of.</p>
1247+
<p>
1248+
Own Id: OTP-18463 Aux Id: PR-6858 </p>
1249+
</item>
1250+
</list>
1251+
</section>
1252+
1253+
</section>
1254+
12311255
<section><title>Erts 12.3.2.8</title>
12321256

12331257
<section><title>Fixed Bugs and Malfunctions</title>

erts/emulator/beam/emu/bs_instrs.tab

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// %CopyrightBegin%
44
//
5-
// Copyright Ericsson AB 2017-2021. All Rights Reserved.
5+
// Copyright Ericsson AB 2017-2023. All Rights Reserved.
66
//
77
// Licensed under the Apache License, Version 2.0 (the "License");
88
// you may not use this file except in compliance with the License.

erts/emulator/beam/emu/instrs.tab

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// %CopyrightBegin%
44
//
5-
// Copyright Ericsson AB 2017-2022. All Rights Reserved.
5+
// Copyright Ericsson AB 2017-2023. All Rights Reserved.
66
//
77
// Licensed under the Apache License, Version 2.0 (the "License");
88
// you may not use this file except in compliance with the License.

erts/emulator/beam/emu/macros.tab

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// %CopyrightBegin%
44
//
5-
// Copyright Ericsson AB 2017-2021. All Rights Reserved.
5+
// Copyright Ericsson AB 2017-2023. All Rights Reserved.
66
//
77
// Licensed under the Apache License, Version 2.0 (the "License");
88
// you may not use this file except in compliance with the License.

erts/emulator/beam/erl_gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* %CopyrightBegin%
33
*
4-
* Copyright Ericsson AB 2002-2022. All Rights Reserved.
4+
* Copyright Ericsson AB 2002-2023. All Rights Reserved.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

erts/emulator/beam/jit/x86/beam_asm_global.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* %CopyrightBegin%
33
*
4-
* Copyright Ericsson AB 2020-2022. All Rights Reserved.
4+
* Copyright Ericsson AB 2020-2023. All Rights Reserved.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

erts/emulator/test/process_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%%
22
%% %CopyrightBegin%
33
%%
4-
%% Copyright Ericsson AB 1997-2022. All Rights Reserved.
4+
%% Copyright Ericsson AB 1997-2023. All Rights Reserved.
55
%%
66
%% Licensed under the Apache License, Version 2.0 (the "License");
77
%% you may not use this file except in compliance with the License.

erts/etc/unix/cerl.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# %CopyrightBegin%
44
#
5-
# Copyright Ericsson AB 2003-2022. All Rights Reserved.
5+
# Copyright Ericsson AB 2003-2023. All Rights Reserved.
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
88
# you may not use this file except in compliance with the License.

lib/compiler/doc/src/notes.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,28 @@
361361

362362
</section>
363363

364+
<section><title>Compiler 8.1.1.3</title>
365+
366+
<section><title>Fixed Bugs and Malfunctions</title>
367+
<list>
368+
<item>
369+
<p>The compiler would generate incorrect code for the
370+
following type of expression:</p>
371+
<p><c>Pattern = BoundVar1 = . . . = BoundVarN =
372+
Expression</c></p>
373+
<p>An exception should be raised if any of the bound
374+
variables have different values than <c>Expression</c>.
375+
The compiler would generate code that would cause the
376+
bound variables to be bound to the value of
377+
<c>Expression</c>whether the value matched or not.</p>
378+
<p>
379+
Own Id: OTP-18470 Aux Id: GH-6873, PR-6877 </p>
380+
</item>
381+
</list>
382+
</section>
383+
384+
</section>
385+
364386
<section><title>Compiler 8.1.1.2</title>
365387

366388
<section><title>Fixed Bugs and Malfunctions</title>

lib/compiler/src/v3_core.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%%
22
%% %CopyrightBegin%
33
%%
4-
%% Copyright Ericsson AB 1999-2021. All Rights Reserved.
4+
%% Copyright Ericsson AB 1999-2023. All Rights Reserved.
55
%%
66
%% Licensed under the Apache License, Version 2.0 (the "License");
77
%% you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)