Overview
| Comment: | OFOnce: Add OF_ASSUME_NONNULL_* |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
08c3161bdee4110e364ea9e8c25b3297 |
| User & Date: | js on 2022-10-19 20:03:54 |
| Other Links: | manifest | tags |
Context
|
2022-10-20
| ||
| 12:50 | GitHub Actions: Simplify builds (check-in: dbb8817d5c user: js tags: trunk) | |
|
2022-10-19
| ||
| 20:03 | OFOnce: Add OF_ASSUME_NONNULL_* (check-in: 08c3161bde user: js tags: trunk) | |
|
2022-10-18
| ||
| 17:59 | GitHub Actions: Replace Ubuntu 18.04 with latest (check-in: a62fba3dc8 user: js tags: trunk) | |
Changes
Modified src/OFFileManager.m from [f5483886a4] to [5dfeac045a].
| ︙ | ︙ | |||
17 18 19 20 21 22 23 | #define OF_FILE_MANAGER_M #include <errno.h> #include <limits.h> #include "unistd_wrapper.h" | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #define OF_FILE_MANAGER_M #include <errno.h> #include <limits.h> #include "unistd_wrapper.h" #include "platform.h" #ifdef OF_PSP # include <sys/syslimits.h> #endif #import "OFArray.h" #import "OFDate.h" |
| ︙ | ︙ |
Modified src/OFFileURIHandler.m from [85f56ad9ce] to [d74cbf6f89].
| ︙ | ︙ | |||
21 22 23 24 25 26 27 | #include <math.h> #ifdef HAVE_DIRENT_H # include <dirent.h> #endif #include "unistd_wrapper.h" | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #include <math.h> #ifdef HAVE_DIRENT_H # include <dirent.h> #endif #include "unistd_wrapper.h" #include "platform.h" #ifdef HAVE_SYS_STAT_H # include <sys/stat.h> #endif #include <sys/time.h> #ifdef OF_WINDOWS # include <utime.h> #endif |
| ︙ | ︙ |
Modified src/OFOnce.h from [3af1572f79] to [fef3956998].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "objfw-defs.h" | | > > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "objfw-defs.h"
#import "macros.h"
#if defined(OF_HAVE_PTHREADS)
# include <pthread.h>
typedef pthread_once_t OFOnceControl;
# define OFOnceControlInitValue PTHREAD_ONCE_INIT
#elif defined(OF_HAVE_ATOMIC_OPS)
typedef volatile int OFOnceControl;
# define OFOnceControlInitValue 0
#elif defined(OF_AMIGAOS) || !defined(OF_HAVE_THREADS)
typedef int OFOnceControl;
# define OFOnceControlInitValue 0
#endif
OF_ASSUME_NONNULL_BEGIN
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Executes the specified function exactly once in the application's
* lifetime, even in a multi-threaded environment.
*
* @param control An OFOnceControl. This should be a static variable
* preinitialized to `OFOnceControlInitValue`.
* @param function The function to execute once
*/
extern void OFOnce(OFOnceControl *control, void (*function)(void));
#ifdef __cplusplus
}
#endif
OF_ASSUME_NONNULL_END
|
Modified src/runtime/amiga-end.m from [1fee00da70] to [0cdcd50b7f].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#include "platform.h"
#ifdef OF_MORPHOS
__asm__ (
".section .eh_frame, \"aw\"\n"
" .long 0\n"
".section .ctors, \"aw\"\n"
" .long 0"
);
#else
__asm__ (
""
);
#endif
|
Modified src/runtime/private.h from [4e60c9110b] to [aebd8619bf].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #import "macros.h" | < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #import "macros.h" #if !defined(__has_feature) || !__has_feature(nullability) # ifndef _Nonnull # define _Nonnull # endif # ifndef _Nullable # define _Nullable |
| ︙ | ︙ |