Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mq_setattr.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 69f6cd59819fb107588c0dff101e20ad11230b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* Copyright 2002, Red Hat Inc. */

#include <mqueue.h>
#include <errno.h>
#include <sys/sem.h>
#include <string.h>
#define _LIBC 1
#include <sys/lock.h>
#undef _LIBC

#include "mqlocal.h"

int
mq_setattr (mqd_t msgid, const struct mq_attr *mqstat, struct mq_attr *omqstat)
{
  struct libc_mq *info;
  struct sembuf sb0 = {0, -1, 0};
  int num_msgs;
  int rc = 0;

  info = __find_mq (msgid);

  if (info == NULL)
    {
      errno = EBADF;
      return -1;
    }

  /* temporarily lock message queue */
  semop (info->semid, &sb0, 1);

  /* make copy of old structure */
  if (omqstat != NULL)
    {
      num_msgs = semctl (info->semid, 3, GETVAL);
      if (num_msgs >= 0)
	{
	  memcpy (omqstat, info->attr, sizeof(struct mq_attr));
	  omqstat->mq_curmsgs = num_msgs;
	}
      else
	rc = -1;
    }
  
  /* only the mq_flags field can be changed */
  info->attr->mq_flags = mqstat->mq_flags;

  /* release message queue */
  sb0.sem_op = 1;
  semop (info->semid, &sb0, 1);

  return rc;
}