{"id":13711210,"url":"https://github.com/siadat/ipc","last_synced_at":"2025-03-21T07:30:21.267Z","repository":{"id":54879352,"uuid":"100135410","full_name":"siadat/ipc","owner":"siadat","description":"Pure Go wrapper for System V message queue","archived":false,"fork":false,"pushed_at":"2021-09-02T21:22:01.000Z","size":34,"stargazers_count":70,"open_issues_count":1,"forks_count":18,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-16T00:15:21.318Z","etag":null,"topics":["go","golang","message-queue","system-v"],"latest_commit_sha":null,"homepage":"","language":"Go","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/siadat.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-12T20:09:38.000Z","updated_at":"2024-10-15T09:57:24.000Z","dependencies_parsed_at":"2022-08-14T05:31:06.116Z","dependency_job_id":null,"html_url":"https://github.com/siadat/ipc","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siadat%2Fipc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siadat%2Fipc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siadat%2Fipc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siadat%2Fipc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siadat","download_url":"https://codeload.github.com/siadat/ipc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244757011,"owners_count":20505301,"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":["go","golang","message-queue","system-v"],"created_at":"2024-08-02T23:01:05.768Z","updated_at":"2025-03-21T07:30:20.970Z","avatar_url":"https://github.com/siadat.png","language":"Go","funding_links":[],"categories":["Repositories"],"sub_categories":[],"readme":"# System V message queue IPC functions\n\nWrapper functions for System V Message Queue IPC.\n\n[![GoDoc](https://godoc.org/github.com/siadat/ipc?status.svg)](https://godoc.org/github.com/siadat/ipc)\n[![Build Status](https://travis-ci.org/siadat/ipc.svg?branch=master)](https://travis-ci.org/siadat/ipc)\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\"syscall\"\n\n\t\"github.com/siadat/ipc\"\n)\n\nfunc main() {\n\tkey, err := ipc.Ftok(\"/dev/null\", 42)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tqid, err := ipc.Msgget(key, ipc.IPC_CREAT|ipc.IPC_EXCL|0600)\n\tif err == syscall.EEXIST {\n\t\tlog.Fatalf(\"queue(key=0x%x) exists\", key)\n\t}\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tmsg := \u0026ipc.Msgbuf{Mtype: 12, Mtext: []byte(\"message\")}\n\terr = ipc.Msgsnd(qid, msg, 0)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiadat%2Fipc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiadat%2Fipc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiadat%2Fipc/lists"}