summaryrefslogtreecommitdiff
path: root/Objective-C/libobjcl.m
Commit message (Collapse)AuthorAgeFilesLines
* Manage Objective-C classes' Lisp backing state via pointers instead of via ↵Matthias Benkard2008-02-191-3/+3
| | | | | | the class objects themselves. darcs-hash:f737c8e7bea5b3a43101e50ff549f130e9f5cd68
* Remove NSObject category ObjectiveCLWrapperLink.Matthias Benkard2008-02-191-7/+20
| | | | darcs-hash:07ee45edca14214270891334f18d56f30e4ea57a
* Fix class creation on the NeXT runtime.Matthias Benkard2008-02-181-4/+4
| | | | darcs-hash:41fdbaf243c97cf95045e036172deb5db1ff2fd3
* Fix Objective-C class registration.Matthias Benkard2008-02-181-19/+51
| | | | darcs-hash:03e58bd27621a0bf46f05cc1ee733da1c7ab1170
* Objective-C layer: Make objcl_class_metaclass work on the NeXT runtime.Matthias Benkard2008-02-171-1/+1
| | | | darcs-hash:0060811e1eaf17e4373a445b3f36bbcebf2bc595
* Objective-C layer: Do not use the MetaClass type.Matthias Benkard2008-02-171-1/+1
| | | | darcs-hash:020e2fbf25a4961b312f8f648bab8b9da8c3cff9
* Minor cleanups.Matthias Benkard2008-02-171-0/+10
| | | | darcs-hash:57b1ce2455369fba915bd730fe63eacb3e169a25
* Fix a stupid little bug in objcl_create_class.Matthias Benkard2008-02-171-2/+2
| | | | darcs-hash:d8275472d82a1d084da97337014c776d3068857e
* Fix objcl_create_class.Matthias Benkard2008-02-171-1/+1
| | | | darcs-hash:4048baedb88f19262d87f2c8cc3b8352f3a00b3f
* Fix ENSURE-OBJECTIVE-C-CLASS-PAIR.Matthias Benkard2008-02-171-0/+11
| | | | darcs-hash:cd2b28bb4e252e25afb6807e32d092fcbd9c0977
* Implement FOREIGN-CLASS-ENSURE-REGISTERED.Matthias Benkard2008-02-171-0/+8
| | | | darcs-hash:cc3448394e3e337be716275c3e4016a542860fd1
* Fix SLOT-VALUE-USING-CLASS (OBJECTIVE-C-CLASS ...).Matthias Benkard2008-02-171-5/+9
| | | | darcs-hash:37402e60f79e9837371a68a33126e3b68eb32b09
* Add module: instance-management.Matthias Benkard2008-02-161-0/+7
| | | | darcs-hash:79549f0b837006321061a524ad376df397a9ab5a
* Objective-C layer: Add functions for determining whether a class is managed ↵Matthias Benkard2008-02-161-0/+14
| | | | | | by Lisp. darcs-hash:2be32db4b0358556b007ad6737f689e04de1e7b3
* Use NSRecursiveLock rather than POSIX semaphores.Matthias Benkard2008-02-161-54/+11
| | | | darcs-hash:247b2833d2767a5c432fc1f64155ed5ff2b8763f
* Objective-C layer: Add a note about returning structs on the NeXT runtime.Matthias Benkard2008-02-151-0/+12
| | | | darcs-hash:e6b30d57740c3f224a8c20eef95d244deddc6f9b
* Stylistic improvements.Matthias Benkard2008-02-141-13/+13
| | | | darcs-hash:b689084814f2e2be21b8f81c00e0b027d1fe7335
* Lay the groundwork for super calls.Matthias Benkard2008-02-141-6/+36
| | | | darcs-hash:6b92675f9ae403584bc82cd69df0404f1fde70bb
* Objective-C layer: Make initialisation more robust.Matthias Benkard2008-02-121-20/+24
| | | | darcs-hash:27c95a5ba79bdd0efc3d18c0ee4caa83d7264394
* Glue layer: Add functions for class creation.Matthias Benkard2008-02-101-3/+6
| | | | darcs-hash:e2dad7f45636d2065160cadec47f805f286a5bc7
* Add NSObject category ObjectiveCLWrapperLink.Matthias Benkard2008-02-101-14/+25
| | | | darcs-hash:0a90de7a76127351a989662a577b5688fe39654c
* Objective-C layer: Add functions for class creation.Matthias Benkard2008-02-091-0/+141
| | | | darcs-hash:d604bd4a63ca384220760be319d64759ebbd9517
* Objective-C layer: Use mprotect(2) where needed.Matthias Benkard2008-02-081-3/+9
| | | | darcs-hash:46c7d60f049bc9c0a832bae5fcd9420d48ddfa5e
* Objective-C layer: Implement locking using semaphores.Matthias Benkard2008-02-071-2/+51
| | | | darcs-hash:3a1f9d1f6597b32c20efcd7ab2cf2721c1bdfe43
* Objective-C layer: Add objcl_create_imp and assorted functions.Matthias Benkard2008-02-071-0/+93
| | | | darcs-hash:586394a97ab02a3f8e258cd75c1230dff717a38e
* Objective-C layer: Add some debugging aids.Matthias Benkard2008-02-041-0/+36
| | | | darcs-hash:7c72034ac9fb253f3846a919ad4fde27e17a6d01
* Glue layer: Add slot handling functions.Matthias Benkard2008-02-031-4/+9
| | | | darcs-hash:27035c01db5e23dc0c8c9786ded92aa6e564e6d4
* Objective-C layer: Add slot handling functions.Matthias Benkard2008-02-031-3/+67
| | | | darcs-hash:b4ec2fb1229c4eb9f3201e378a2d3e6e5fc6b872
* Objective-C layer: Make use of the Objective-C 2.0 runtime.Matthias Benkard2008-02-031-21/+14
| | | | darcs-hash:a8a8f84ba4a1476120750c7b11c08c2088fa3da6
* Objective-C layer: Add objcl_class_superclass.Matthias Benkard2008-02-031-0/+12
| | | | darcs-hash:31c261f7b04e09756c407599560a5ef5c3bc5856
* Objective-C layer: Add function objcl_objc2_p.Matthias Benkard2008-01-291-0/+11
| | | | darcs-hash:e9c9605cc47cc04e36e2ba9e60f76aea097e77bd
* Directory layout: Put code imported from PyObjC into its own directory.Matthias Benkard2008-01-281-2/+2
| | | | darcs-hash:e3dd1138105e4eece0fbcbc13365eb3a25ffb808
* Apply the LGPLv3 to all the code previously released under the GPLv3.Matthias Benkard2008-01-261-6/+7
| | | | darcs-hash:d09e69f4f9d07e98b5bc8d68d120d50d1ee01848
* Objective-C layer: Make initialisation more robust.Matthias Benkard2007-10-131-6/+20
| | | | darcs-hash:306059409a7f77c02e046864f6bd3237b60b3a87
* Make compile-time selector warnings work on the NeXT runtime, clean the ↵Matthias Benkard2007-10-101-3/+22
| | | | | | Objective-C layer up a bit. darcs-hash:bff1454e2749c658ed0d0ad4eb51c4b1802e6f40
* Add FIND-OBJC-META-CLASS, fix some minor bugs.Matthias Benkard2007-09-261-0/+20
| | | | darcs-hash:1ae0dd35e64b278b944bc797847ccfedb97ea471
* Apply the GPLv3 to my code and clarify the license of the PyObjC parts.Matthias Benkard2007-09-261-0/+16
| | | | darcs-hash:f938f41421ba30e34d6bef095829ac1950b4dfa9
* Objective-C layer: Add functions for determining the Objective-C runtime ↵Matthias Benkard2007-09-211-0/+38
| | | | | | used and for asking for the size of types by typespec. darcs-hash:197f36840c1568c5b3431833a0118d06729b9247
* Make the test suite work on Mac OS X.Matthias Benkard2007-09-211-1/+4
| | | | darcs-hash:d91ddd8e48860553eae62249043f13dd973a40c2
* Prune yet another bunch of unused code chunks.Matthias Benkard2007-09-211-2/+2
| | | | darcs-hash:b90a1129a53bdc6fb3762a0d37bb797711d7037e
* Objective-C layer: Remove the code needed by the obsolete version of ↵Matthias Benkard2007-09-211-230/+0
| | | | | | INVOKE-BY-NAME. darcs-hash:e0df5f7b1d7a3aa5e06170dbe318b31ebeb73241
* Fix the coercion rules for FLOAT and BOOLEAN values.Matthias Benkard2007-09-201-0/+18
| | | | darcs-hash:d24e207d8f1e0357c8a63ec058ec61318675e89f
* Simplify the Objective-C layer, make the newest additions compatible with ↵Matthias Benkard2007-09-181-73/+21
| | | | | | the Apple runtime. darcs-hash:c6ec225e9ccf78e267f1a4985971ec9ac3239bc8
* INVOKE-WITH-CONVERSION: Support arrays, structs, and unions, and convert ↵Matthias Benkard2007-09-181-0/+7
| | | | | | Lisp objects into Objective-C instances automatically. darcs-hash:decc92c91c315c1e347b9f5327bfb6e21ccca9a8
* Objective-C layer: Add functions for dealing with classes and metaclasses.Matthias Benkard2007-09-181-0/+55
| | | | darcs-hash:9ce15bb5fff3fb127cf4f6b72e70fa58c1cc2345
* PRIMITIVE-INVOKE: Fix a bunch of memory access bugs.Matthias Benkard2007-09-161-2/+5
| | | | darcs-hash:36acfdc03f4004a971aa31a81b87e40c52940f82
* Remember to pass self and _cmd to methods.Matthias Benkard2007-09-161-5/+6
| | | | darcs-hash:1f832c3dba42782993127d480d2cb73aabf2406c
* Reimplement PRIMITIVE-INVOKE and rename the old version UNSAFE-PRIMITIVE-INVOKE.Matthias Benkard2007-09-151-0/+5
| | | | darcs-hash:a941bade2677db3d5773c20ffda171c7c9721a98
* Objective-C layer: Simplify the interface of objcl_invoke_with_types.Matthias Benkard2007-09-151-7/+4
| | | | darcs-hash:0f8730bc7a0fe966016fda8582a52a2b5f3e667d
* Objective-C layer: Implement objcl_invoke_with_types.Matthias Benkard2007-09-151-14/+39
| | | | darcs-hash:48fc78847f6466537cec456aa2819dd1dcf0733b