aboutsummaryrefslogtreecommitdiff
path: root/utils.h
Commit message (Collapse)AuthorAgeFilesLines
* Introduce complex_alignof to replace word_sizeFlavio Cruz2023-02-131-0/+2
| | | | | | | Remove the concept of word_size since it is meaningless in some architectures. This is also done in preparation to possibly introduce 8-byte aligned messages. Message-Id: <Y+lkv0uMo/3+hbCb@jupiter.tail36e24.ts.net>
* mig: replace boolean.h with stdbool.hFlavio Cruz2022-11-251-4/+4
| | | | Message-Id: <Y3/Z1CGL8D4OwT66@viriathus>
* Add support to define structures in mig.Flavio Cruz2022-11-051-0/+11
| | | | | | | | | | | | | | | | Basic syntax is presented below and allows users to define nested structured types by using simpler or structure types as members. Mig will use the C padding and alignment rules to produce the same size as the corresponding C structures. type timespec_t = struct { uint32_t tv_sec; uint32_t tv_nsec; }; This allows us to build stubs that are more easily adaptable to other architectures. Message-Id: <Y2SjQSMOINY8I5Dy@viriathus>
* Add _Static_assert when compiling server and user stubs.Flavio Cruz2022-01-211-3/+6
| | | | | | | | | This is only done when data is inlined with a concrete size. It ensures the C and Mig types have the same size in the target arch. Tested by building the hurd package. No assertions were triggered. Message-Id: <YekIQaxvs+4FrHyw@viriathus>
* Also add const qualifiers on server sideSamuel Thibault2022-01-161-0/+2
| | | | | Although in practice the buffers can be modified since they are from the message, it leads to missing const where it would otherwise make sense.
* Created new module from gnumach/mig at tag before-mig-moveRoland McGrath1998-07-181-0/+76