mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
fixes nightlies regression; patches for freebsd (#20786)
This commit is contained in:
@@ -366,6 +366,18 @@ when hasSpawnH:
|
||||
Tposix_spawn_file_actions* {.importc: "posix_spawn_file_actions_t",
|
||||
header: "<spawn.h>", final, pure.} = object
|
||||
|
||||
|
||||
when not defined(macos) and not defined(macosx): # freebsd
|
||||
type
|
||||
Mqd* {.importc: "mqd_t", header: "<mqueue.h>", final, pure.} = object
|
||||
MqAttr* {.importc: "struct mq_attr",
|
||||
header: "<mqueue.h>",
|
||||
final, pure.} = object ## message queue attribute
|
||||
mq_flags*: int ## Message queue flags.
|
||||
mq_maxmsg*: int ## Maximum number of messages.
|
||||
mq_msgsize*: int ## Maximum message size.
|
||||
mq_curmsgs*: int ## Number of messages currently queued.
|
||||
|
||||
when defined(linux):
|
||||
# from sys/un.h
|
||||
const Sockaddr_un_path_length* = 108
|
||||
|
||||
Reference in New Issue
Block a user