summaryrefslogtreecommitdiff
path: root/devel/performance/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/performance/files')
-rw-r--r--devel/performance/files/patch-GSCache.m11
-rw-r--r--devel/performance/files/patch-GSFIFO.h20
-rw-r--r--devel/performance/files/patch-GSFIFO.m11
3 files changed, 0 insertions, 42 deletions
diff --git a/devel/performance/files/patch-GSCache.m b/devel/performance/files/patch-GSCache.m
deleted file mode 100644
index 7734b8e60b89..000000000000
--- a/devel/performance/files/patch-GSCache.m
+++ /dev/null
@@ -1,11 +0,0 @@
---- GSCache.m.orig 2011-03-03 11:51:46.000000000 +0100
-+++ GSCache.m 2011-04-15 20:46:35.000000000 +0200
-@@ -51,6 +51,8 @@
- #if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4)
- #define class_getInstanceSize(isa) ((struct objc_class *)isa)->instance_size
- #endif
-+#else
-+#define class_getInstanceSize(isa) ((struct objc_class *)isa)->instance_size
- #endif
-
- @interface GSCache (Threading)
diff --git a/devel/performance/files/patch-GSFIFO.h b/devel/performance/files/patch-GSFIFO.h
deleted file mode 100644
index 64082d394687..000000000000
--- a/devel/performance/files/patch-GSFIFO.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- GSFIFO.h.orig 2011-10-25 13:35:27.000000000 +0200
-+++ GSFIFO.h 2011-11-04 10:22:40.000000000 +0100
-@@ -25,7 +25,7 @@
- #import <Foundation/NSObject.h>
-
- @class NSArray;
--@class NSCondition;
-+@class NSConditionLock;
- @class NSNumber;
- @class NSString;
- @class NSThread;
-@@ -82,7 +82,7 @@
- uint16_t timeout;
- uint64_t fullCount; // Total waits for full FIFO
- uint64_t emptyCount; // Total waits for empty FIFO
-- NSCondition *condition;
-+ NSConditionLock *condition;
- NSString *name;
- NSTimeInterval getWaitTotal; // Total time waiting for gets
- NSTimeInterval putWaitTotal; // Total time waiting for puts
diff --git a/devel/performance/files/patch-GSFIFO.m b/devel/performance/files/patch-GSFIFO.m
deleted file mode 100644
index f7637a605858..000000000000
--- a/devel/performance/files/patch-GSFIFO.m
+++ /dev/null
@@ -1,11 +0,0 @@
---- GSFIFO.m.orig 2011-10-25 13:51:10.000000000 +0200
-+++ GSFIFO.m 2011-11-04 10:22:18.000000000 +0100
-@@ -421,7 +421,7 @@
- _items = (void*)NSAllocateCollectable(c * sizeof(void*), NSScannedOption);
- if (YES == mp || YES == mc)
- {
-- condition = [NSCondition new];
-+ condition = [NSConditionLock new];
- }
- name = [n copy];
- if (nil == a)