Files
Iain Buclaw 9d9663ea15 d: Merge upstream dmd, druntime 24a41073c2, phobos 24a41073c2.
D front-end changes:

	- Import dmd v2.112.0.
	- Bitfields feature is now enabled by default.
	- The compiler now accepts `-std=d2024' and `-std=d202y'.
	- An error is now issued for dangling `else' statements.
	- `finally' statements are no longer rewritten to a sequence if
	  no `Exception' was thrown.
	- Some forms of `printf' calls are now treated as `@safe'.
	- Implicit integer conversions in `int op= float` assignments
	  has been deprecated.

D runtime changes:

	- Import druntime v2.112.0.
	- Added `filterCaughtThrowable' in `core.thread.ThreadBase'.

Phobos changes:

	- Import phobos v2.112.0.

gcc/d/ChangeLog:

	* dmd/VERSION: Bump version to v2.112.0.
	* dmd/MERGE: Merge upstream dmd 24a41073c2.
	* d-attribs.cc (build_attributes): Update for new front-end interface.
	* d-builtins.cc (build_frontend_type): Likewise.
	(matches_builtin_type): Likewise.
	(d_init_versions): Predefine D_Profile when compiling with profile
	enabled.
	* d-codegen.cc (get_array_length): Update for new front-end interface.
	(lower_struct_comparison): Likewise.
	(build_array_from_val): Likewise.
	(get_function_type): Likewise.
	(get_frameinfo): Likewise.
	* d-compiler.cc (Compiler::paintAsType): Likewise.
	* d-convert.cc (convert_expr): Likewise.
	(convert_for_rvalue): Likewise.
	(convert_for_assignment): Likewise.
	(d_array_convert): Likewise.
	* d-diagnostic.cc (verrorReport): Rename to ...
	(vreportDiagnostic): ... this.
	(verrorReportSupplemental): Rename to ...
	(vsupplementalDiagnostic): ... this.
	* d-lang.cc (d_handle_option): Handle -std=d2024 and -std=d202y.
	(d_parse_file): Update for new front-end interface.
	* d-target.cc (Target::fieldalign): Likewise.
	(Target::isVectorTypeSupported): Likewise.
	(Target::isVectorOpSupported): Likewise.
	* decl.cc (get_symbol_decl): Likewise.
	(DeclVisitor::visit): Likewise.
	(DeclVisitor::visit (FuncDeclaration *)): Do NRVO on `__result' decl.
	* expr.cc (needs_postblit): Remove.
	(needs_dtor): Remove.
	(lvalue_p): Remove.
	(ExprVisitor::visit): Update for new front-end interface.
	(ExprVisitor::visit (AssignExp *)): Update for front-end lowering
	expression using templates.
	* imports.cc (ImportVisitor::visit): Update for new front-end
	interface.
	* intrinsics.def (INTRINSIC_VA_ARG): Update signature.
	(INTRINSIC_C_VA_ARG): Update signature.
	(INTRINSIC_VASTART): Update signature.
	* lang.opt: Add -std=d2024 and -std=d202y.
	* toir.cc (IRVisitor::visit): Update for new front-end interface.
	* typeinfo.cc (TypeInfoVisitor::visit): Likewise.
	(TypeInfoVisitor::visit (TypeInfoStructDeclaration *)): Ensure
	semantic is ran on all TypeInfo members.
	(base_vtable_offset): Update for new front-end interface.
	* types.cc (TypeVisitor::visit): Likewise.

libphobos/ChangeLog:

	* libdruntime/MERGE: Merge upstream druntime 24a41073c2.
	* libdruntime/__importc_builtins.di: Reimplement.
	* src/MERGE: Merge upstream phobos 808314eb2.
	* testsuite/libphobos.aa/test_aa.d: Adjust test.
	* testsuite/libphobos.gc/forkgc2.d: Removed.
	* testsuite/libphobos.thread/filterthrownglobal.d: New test.
	* testsuite/libphobos.thread/filterthrownmethod.d: New test.

gcc/testsuite/ChangeLog:

	* gdc.dg/pr90601.d: Adjust test.
	* lib/gdc-utils.exp: Handle new compiler options.
2026-02-03 23:09:53 +01:00

67 lines
1.7 KiB
D

/**
* D header file for Solaris thread.h.
*
* Copyright: Copyright © 2025, The D Language Foundation
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Iain Buclaw
*/
module core.sys.solaris.thread;
version (Solaris):
extern (C):
nothrow:
@nogc:
import core.stdc.config : c_long;
import core.sys.posix.signal : sigset_t, stack_t;
/*
* definitions needed to use the thread interface except synchronization.
*/
alias thread_t = int;
alias thread_key_t = int;
int thr_create(void*, size_t, void* function(void*), void*, c_long, thread_t*);
int thr_join(thread_t, thread_t*, void**);
int thr_setconcurrency(int);
int thr_getconcurrency();
noreturn thr_exit(void*);
thread_t thr_self();
int thr_sigsetmask(int, const scope sigset_t*, sigset_t*);
int thr_stksegment(stack_t*);
int thr_main();
int thr_kill(thread_t, int);
int thr_suspend(thread_t);
int thr_continue(thread_t);
void thr_yield();
int thr_setprio(thread_t, int);
int thr_getprio(thread_t, int*);
int thr_keycreate(thread_key_t*, void function(void*));
int thr_keycreate_once(thread_key_t*, void function(void*));
int thr_setspecific(thread_key_t, void*);
int thr_getspecific(thread_key_t, void**);
size_t thr_min_stack();
alias THR_MIN_STACK = thr_min_stack;
/*
* thread flags (one word bit mask)
*/
enum : c_long
{
THR_BOUND = 0x00000001, // = PTHREAD_SCOPE_SYSTEM
THR_NEW_LWP = 0x00000002,
THR_DETACHED = 0x00000040, // = PTHREAD_CREATE_DETACHED
THR_SUSPENDED = 0x00000080,
THR_DAEMON = 0x00000100,
}
/*
* The key to be created by thr_keycreate_once()
* must be statically initialized with THR_ONCE_KEY.
*/
enum thread_key_t THR_ONCE_KEY = -1;