Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / libgo / runtime / go-send-nb-big.c
blob288ce7f4419f4133ef10166e5b1562abd84a4db7
1 /* go-send-nb-big.c -- nonblocking send of something big on a channel.
3 Copyright 2009 The Go Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file. */
7 #include <stdint.h>
9 #include "channel.h"
11 _Bool
12 __go_send_nonblocking_big (struct __go_channel* channel, const void *val)
14 size_t alloc_size;
15 size_t offset;
17 alloc_size = ((channel->element_size + sizeof (uint64_t) - 1)
18 / sizeof (uint64_t));
20 int data = __go_send_nonblocking_acquire (channel);
21 if (data != SEND_NONBLOCKING_ACQUIRE_SPACE)
22 return data == SEND_NONBLOCKING_ACQUIRE_CLOSED;
24 offset = channel->next_store * alloc_size;
25 __builtin_memcpy (&channel->data[offset], val, channel->element_size);
27 __go_send_release (channel);
29 return 1;