9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Charles Forsyth <charles.forsyth@gmail.com>
To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net>
Subject: Re: [9fans] ainc() 386/amd64 differences
Date: Wed, 14 May 2014 21:57:54 +0100	[thread overview]
Message-ID: <CAOw7k5jUAoMvn1eXYB2iC2EBn_tEHLdGpnuQ5EDc=OAZaGCcFg@mail.gmail.com> (raw)
In-Reply-To: <ffbe73aa19ef921d30a236b5a3919060@ladd.quanstro.net>

[-- Attachment #1: Type: text/plain, Size: 364 bytes --]

% cat ../port/ref.c
#include "u.h"
#include "../port/lib.h"
#include "mem.h"
#include "dat.h"
#include "fns.h"

int
incref(Ref *r)
{
int x;

x = ainc(&r->ref);
if(x <= 0)
panic("incref pc=%#p", getcallerpc(&r));
return x;
}

int
decref(Ref *r)
{
int x;

x = adec(&r->ref);
if(x < 0)
panic("decref pc=%#p", getcallerpc(&r));
return x;
}

[-- Attachment #2: Type: text/html, Size: 2116 bytes --]

  reply	other threads:[~2014-05-14 20:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-14 20:34 erik quanstrom
2014-05-14 20:57 ` Charles Forsyth [this message]
2014-05-14 21:26   ` erik quanstrom
2014-05-14 21:46     ` erik quanstrom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOw7k5jUAoMvn1eXYB2iC2EBn_tEHLdGpnuQ5EDc=OAZaGCcFg@mail.gmail.com' \
    --to=charles.forsyth@gmail.com \
    --cc=9fans@9fans.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).