File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 1.9.0] - 2026-02-13
9+
10+ ### Added:
11+
12+ - ** Linux** : Default permissions set to 0777.
13+
14+
815## [ 1.8.0] - 2026-02-06
916
1017### Added:
Original file line number Diff line number Diff line change 11#pragma once
22
33#define LIBSHAREDMEMORY_VERSION_MAJOR 1
4- #define LIBSHAREDMEMORY_VERSION_MINOR 8
4+ #define LIBSHAREDMEMORY_VERSION_MINOR 9
55#define LIBSHAREDMEMORY_VERSION_PATCH 0
66
77#include < ostream>
@@ -493,7 +493,7 @@ inline Error Memory::createOrOpen(const bool create)
493493
494494 _fd = shm_open (_path.c_str (), flags, 0777 );
495495 fchmod (_fd, 0777 ); // explicit
496-
496+
497497 if (_fd < 0 )
498498 {
499499 if (create)
You can’t perform that action at this time.
0 commit comments