Skip to content

Commit

Permalink
psx: update vendored sources
Browse files Browse the repository at this point in the history
Retrieved from upstream at
https://git.kernel.org/pub/scm/libs/libcap/libcap.git ref
e79c7f06e1713eaae11119de4d8abfb4c77c6428.

`libpsx` is written by Andrew G. Morgan <morgan@kernel.org>. See
`cbits/psx/License`.

See: https://git.kernel.org/pub/scm/libs/libcap/libcap.git/tree/psx?id=e79c7f06e1713eaae11119de4d8abfb4c77c6428
  • Loading branch information
NicolasT committed Mar 31, 2024
1 parent fbd8bef commit 5bee24e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 7 additions & 3 deletions psx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@

## 0.1.2.0 -- YYYY-MM-DD

* Update Cabal file formatting
* Support GHC 9.6.4 / `base ^>=4.18`
* Support GHC 9.8.2 / `base ^>=4.19`
* Update Cabal file formatting.

* Support GHC 9.6.4 / `base ^>=4.18`.

* Support GHC 9.8.2 / `base ^>=4.19`.

* Update vendored sources.

## 0.1.1.1 -- 2023-02-28

Expand Down
2 changes: 2 additions & 0 deletions psx/cbits/psx/License
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-only */

Unless otherwise *explicitly* stated, the following text describes the
licensed conditions under which the contents of this libcap/psx release
may be used and distributed.
Expand Down
2 changes: 1 addition & 1 deletion psx/cbits/psx/psx.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ int __wrap_pthread_create(pthread_t *thread, const pthread_attr_t *attr,
pthread_sigmask(SIG_BLOCK, &sigbit, NULL);

int ret = __real_pthread_create(thread, attr, _psx_start_fn, starter);
if (ret == -1) {
if (ret > 0) {
psx_new_state(_PSX_CREATE, _PSX_IDLE);
memset(starter, 0, sizeof(*starter));
free(starter);
Expand Down

0 comments on commit 5bee24e

Please sign in to comment.