Skip to content

Commit

Permalink
Threads optimizations, Update Store queue, sendable (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks-Jago authored Oct 20, 2023
1 parent 63aa3be commit 33812e9
Show file tree
Hide file tree
Showing 42 changed files with 4,582 additions and 1,398 deletions.
10 changes: 5 additions & 5 deletions Artifacts/UDFCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>UDFCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -34,15 +33,16 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>UDFCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>macos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import Foundation;
#endif

#endif
Expand All @@ -281,6 +282,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));

#if defined(__OBJC__)

SWIFT_CLASS("_TtC7UDFCore21AsynchronousOperation")
@interface AsynchronousOperation : NSOperation
@property (nonatomic, readonly, getter=isAsynchronous) BOOL asynchronous;
@property (nonatomic, readonly, getter=isExecuting) BOOL executing;
@property (nonatomic, readonly, getter=isFinished) BOOL finished;
- (void)start;
- (void)main;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end


#endif
#if defined(__cplusplus)
#endif
Expand Down
Binary file not shown.
Loading

0 comments on commit 33812e9

Please sign in to comment.