{"id":22796546,"url":"https://github.com/macmade/objc-semaphore","last_synced_at":"2026-05-06T10:33:46.736Z","repository":{"id":33799783,"uuid":"37493464","full_name":"macmade/objc-semaphore","owner":"macmade","description":"Semaphores for Objective-C and Swift","archived":false,"fork":false,"pushed_at":"2021-08-02T22:53:59.000Z","size":24,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-05T20:36:18.448Z","etag":null,"topics":["atomicity","ios","ipc","macos","mutex","objective-c","semaphore","swift","threading"],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/macmade.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-15T21:54:44.000Z","updated_at":"2021-08-02T22:54:02.000Z","dependencies_parsed_at":"2022-09-13T18:33:21.190Z","dependency_job_id":null,"html_url":"https://github.com/macmade/objc-semaphore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macmade%2Fobjc-semaphore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macmade%2Fobjc-semaphore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macmade%2Fobjc-semaphore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macmade%2Fobjc-semaphore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/macmade","download_url":"https://codeload.github.com/macmade/objc-semaphore/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246358321,"owners_count":20764366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atomicity","ios","ipc","macos","mutex","objective-c","semaphore","swift","threading"],"created_at":"2024-12-12T05:13:32.165Z","updated_at":"2025-10-28T23:11:55.587Z","avatar_url":"https://github.com/macmade.png","language":"Objective-C","funding_links":["https://patreon.com/macmade","https://paypal.me/xslabs"],"categories":[],"sub_categories":[],"readme":"Objective-C Semaphore\n=====================\n\n[![Build Status](https://img.shields.io/travis/macmade/objc-semaphore.svg?branch=master\u0026style=flat)](https://travis-ci.org/macmade/objc-semaphore)\n[![Coverage Status](https://img.shields.io/coveralls/macmade/objc-semaphore.svg?branch=master\u0026style=flat)](https://coveralls.io/r/macmade/objc-semaphore?branch=master)\n[![Issues](http://img.shields.io/github/issues/macmade/objc-semaphore.svg?style=flat)](https://github.com/macmade/objc-semaphore/issues)\n![Status](https://img.shields.io/badge/status-active-brightgreen.svg?style=flat)\n![License](https://img.shields.io/badge/license-mit-brightgreen.svg?style=flat)\n[![Contact](https://img.shields.io/badge/contact-@macmade-blue.svg?style=flat)](https://twitter.com/macmade)  \n[![Donate-Patreon](https://img.shields.io/badge/donate-patreon-yellow.svg?style=flat)](https://patreon.com/macmade)\n[![Donate-Gratipay](https://img.shields.io/badge/donate-gratipay-yellow.svg?style=flat)](https://www.gratipay.com/macmade)\n[![Donate-Paypal](https://img.shields.io/badge/donate-paypal-yellow.svg?style=flat)](https://paypal.me/xslabs)\n\nAbout\n-----\n\nSemaphores for Objective-C and Swift.\n\n### Swift support\n\nThis project is fully compatible with Swift.\n\nIn order to use the `Semaphore` class from Swift, simply link with `Semaphore.framework` (ARC target - see below) and:\n\n    import Semaphore\n\n### Targets\n\nThe following targets are available:\n\n * OS X static library (`.a`).\n * OS X dynamic library (`.dylib`).\n * OS X framework (`.framework`).\n * iOS static library (`.a`).\n\nAll targets are available for both ARC and MRC (see below).\n\n### Supported platforms\n\n * OS X deployment target: **OS X 10.6** (ARC - see below), **OS X 10.4** (MRC - see below)\n * OS X architectures: **x86_64, i386** (non-ARC - see below)\n * iOS deployment target: **iOS 6.0**\n * iOS architectures: **armv7, armv7s, arm64**\n\n### Automatic Reference Counting (ARC) Note\n\nAll project's targets comes in two flavors.  \nOne using ARC - Automatic Reference Counting, the other using Manual Reference Counting (MRC).\n\nIf you're targeting only 64-bits platforms and/or 10.7 deployment targets, you're advised to use the ARC targets.  \nOtherwise, if targeting 32-bits platforms and/or deployment targets lower than 10.7, MRC targets are available.\n\nLicense\n-------\n\nThe project is released under the terms of the MIT License.\n\nRepository Infos\n----------------\n\n    Owner:\t\t\tJean-David Gadina - XS-Labs\n    Web:\t\t\twww.xs-labs.com\n    Blog:\t\t\twww.noxeos.com\n    Twitter:\t\t@macmade\n    GitHub:\t\t\tgithub.com/macmade\n    LinkedIn:\t\tch.linkedin.com/in/macmade/\n    StackOverflow:\tstackoverflow.com/users/182676/macmade\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacmade%2Fobjc-semaphore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacmade%2Fobjc-semaphore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacmade%2Fobjc-semaphore/lists"}