ObjFW  Check-in [4a6e3b42f5]

Overview
Comment:Rename directories in src/platform
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4a6e3b42f5cf40c6e389d7408a6c06005311eb379eb034268ee200d2f5f2b5f4
User & Date: js on 2021-05-01 03:02:07
Other Links: manifest | tags
Context
2021-05-01
03:21
Move OFAtomic.h variants to src/platform check-in: 1aedad1588 user: js tags: trunk
03:02
Rename directories in src/platform check-in: 4a6e3b42f5 user: js tags: trunk
02:47
Fix compiling for MorphOS check-in: bb294c079c user: js tags: trunk
Changes

Modified src/OFPlainCondition.m from [6e88b3caee] to [5c92a31d36].

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/OFPlainCondition.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/OFPlainCondition.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/OFPlainCondition.m"
#endif







|

|

|

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/POSIX/OFPlainCondition.m"
#elif defined(OF_WINDOWS)
# include "platform/Windows/OFPlainCondition.m"
#elif defined(OF_AMIGAOS)
# include "platform/AmigaOS/OFPlainCondition.m"
#endif

Modified src/OFPlainMutex.m from [9e6dac45f3] to [f697ac3445].

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/OFPlainMutex.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/OFPlainMutex.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/OFPlainMutex.m"
#endif







|

|

|

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/POSIX/OFPlainMutex.m"
#elif defined(OF_WINDOWS)
# include "platform/Windows/OFPlainMutex.m"
#elif defined(OF_AMIGAOS)
# include "platform/AmigaOS/OFPlainMutex.m"
#endif

Modified src/OFPlainThread.m from [0fae510ae5] to [77054b78a9].

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/OFPlainThread.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/OFPlainThread.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/OFPlainThread.m"
#endif







|

|

|

14
15
16
17
18
19
20
21
22
23
24
25
26
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/POSIX/OFPlainThread.m"
#elif defined(OF_WINDOWS)
# include "platform/Windows/OFPlainThread.m"
#elif defined(OF_AMIGAOS)
# include "platform/AmigaOS/OFPlainThread.m"
#endif

Modified src/OFString+PathAdditions.m from [ea7cb030e3] to [6ba7aac1d0].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 */

#include "config.h"

#include "platform.h"

#if defined(OF_WINDOWS) || defined(OF_MSDOS)
# import "platform/windows/OFString+PathAdditions.m"
#elif defined(OF_AMIGAOS)
# import "platform/amiga/OFString+PathAdditions.m"
#elif defined(OF_NINTENDO_3DS) || defined(OF_WII)
# import "platform/libfat/OFString+PathAdditions.m"
#else
# import "platform/posix/OFString+PathAdditions.m"
#endif







|

|



|

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 */

#include "config.h"

#include "platform.h"

#if defined(OF_WINDOWS) || defined(OF_MSDOS)
# import "platform/Windows/OFString+PathAdditions.m"
#elif defined(OF_AMIGAOS)
# import "platform/AmigaOS/OFString+PathAdditions.m"
#elif defined(OF_NINTENDO_3DS) || defined(OF_WII)
# import "platform/libfat/OFString+PathAdditions.m"
#else
# import "platform/POSIX/OFString+PathAdditions.m"
#endif

Modified src/OFSubprocess.m from [6a65d9f1d2] to [f686b80ad6].

14
15
16
17
18
19
20
21
22
23
24
 */

#include "config.h"

#include "platform.h"

#ifdef OF_WINDOWS
# include "platform/windows/OFSubprocess.m"
#else
# include "platform/posix/OFSubprocess.m"
#endif







|

|

14
15
16
17
18
19
20
21
22
23
24
 */

#include "config.h"

#include "platform.h"

#ifdef OF_WINDOWS
# include "platform/Windows/OFSubprocess.m"
#else
# include "platform/POSIX/OFSubprocess.m"
#endif

Modified src/OFTLSKey.m from [c046d81c67] to [d2717c869a].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/posix/OFTLSKey.m"
#elif defined(OF_WINDOWS)
# include "platform/windows/OFTLSKey.m"
#elif defined(OF_MORPHOS)
# include "platform/morphos/OFTLSKey.m"
#elif defined(OF_AMIGAOS)
# include "platform/amiga/OFTLSKey.m"
#endif







|

|

|

|

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 */

#include "config.h"

#include "platform.h"

#if defined(OF_HAVE_PTHREADS)
# include "platform/POSIX/OFTLSKey.m"
#elif defined(OF_WINDOWS)
# include "platform/Windows/OFTLSKey.m"
#elif defined(OF_MORPHOS)
# include "platform/MorphOs/OFTLSKey.m"
#elif defined(OF_AMIGAOS)
# include "platform/AmigaOS/OFTLSKey.m"
#endif

Name change from src/platform/amiga/OFPlainCondition.m to src/platform/AmigaOS/OFPlainCondition.m.

whitespace changes only

Name change from src/platform/amiga/OFPlainMutex.m to src/platform/AmigaOS/OFPlainMutex.m.

whitespace changes only

Name change from src/platform/amiga/OFPlainThread.m to src/platform/AmigaOS/OFPlainThread.m.

whitespace changes only

Name change from src/platform/amiga/OFString+PathAdditions.m to src/platform/AmigaOS/OFString+PathAdditions.m.

whitespace changes only

Name change from src/platform/amiga/OFTLSKey.m to src/platform/AmigaOS/OFTLSKey.m.

whitespace changes only

Name change from src/platform/morphos/OFTLSKey.m to src/platform/MorphOS/OFTLSKey.m.

whitespace changes only

Name change from src/platform/posix/OFPlainCondition.m to src/platform/POSIX/OFPlainCondition.m.

whitespace changes only

Name change from src/platform/posix/OFPlainMutex.m to src/platform/POSIX/OFPlainMutex.m.

whitespace changes only

Name change from src/platform/posix/OFPlainThread.m to src/platform/POSIX/OFPlainThread.m.

whitespace changes only

Name change from src/platform/posix/OFString+PathAdditions.m to src/platform/POSIX/OFString+PathAdditions.m.

whitespace changes only

Name change from src/platform/posix/OFSubprocess.m to src/platform/POSIX/OFSubprocess.m.

whitespace changes only

Name change from src/platform/posix/OFTLSKey.m to src/platform/POSIX/OFTLSKey.m.

whitespace changes only

Name change from src/platform/windows/OFPlainCondition.m to src/platform/Windows/OFPlainCondition.m.

whitespace changes only

Name change from src/platform/windows/OFPlainMutex.m to src/platform/Windows/OFPlainMutex.m.

whitespace changes only

Name change from src/platform/windows/OFPlainThread.m to src/platform/Windows/OFPlainThread.m.

whitespace changes only

Name change from src/platform/windows/OFString+PathAdditions.m to src/platform/Windows/OFString+PathAdditions.m.

whitespace changes only

Name change from src/platform/windows/OFSubprocess.m to src/platform/Windows/OFSubprocess.m.

whitespace changes only

Name change from src/platform/windows/OFTLSKey.m to src/platform/Windows/OFTLSKey.m.

whitespace changes only