Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

psx: update vendored sources #56

Merged
merged 1 commit into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading