105436638acc7c010349a69c3395f1a57c642dc62Ying Wang/* Copyright (C) 2000, 2009-2012 Free Software Foundation, Inc.
205436638acc7c010349a69c3395f1a57c642dc62Ying Wang   This file is part of the GNU C Library.
305436638acc7c010349a69c3395f1a57c642dc62Ying Wang
405436638acc7c010349a69c3395f1a57c642dc62Ying Wang   This program is free software: you can redistribute it and/or modify
505436638acc7c010349a69c3395f1a57c642dc62Ying Wang   it under the terms of the GNU General Public License as published by
605436638acc7c010349a69c3395f1a57c642dc62Ying Wang   the Free Software Foundation; either version 3 of the License, or
705436638acc7c010349a69c3395f1a57c642dc62Ying Wang   (at your option) any later version.
805436638acc7c010349a69c3395f1a57c642dc62Ying Wang
905436638acc7c010349a69c3395f1a57c642dc62Ying Wang   This program is distributed in the hope that it will be useful,
1005436638acc7c010349a69c3395f1a57c642dc62Ying Wang   but WITHOUT ANY WARRANTY; without even the implied warranty of
1105436638acc7c010349a69c3395f1a57c642dc62Ying Wang   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1205436638acc7c010349a69c3395f1a57c642dc62Ying Wang   GNU General Public License for more details.
1305436638acc7c010349a69c3395f1a57c642dc62Ying Wang
1405436638acc7c010349a69c3395f1a57c642dc62Ying Wang   You should have received a copy of the GNU General Public License
1505436638acc7c010349a69c3395f1a57c642dc62Ying Wang   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
1605436638acc7c010349a69c3395f1a57c642dc62Ying Wang
1705436638acc7c010349a69c3395f1a57c642dc62Ying Wang#include <config.h>
1805436638acc7c010349a69c3395f1a57c642dc62Ying Wang
1905436638acc7c010349a69c3395f1a57c642dc62Ying Wang/* Specification.  */
2005436638acc7c010349a69c3395f1a57c642dc62Ying Wang#include <spawn.h>
2105436638acc7c010349a69c3395f1a57c642dc62Ying Wang
2205436638acc7c010349a69c3395f1a57c642dc62Ying Wang#include <string.h>
2305436638acc7c010349a69c3395f1a57c642dc62Ying Wang
2405436638acc7c010349a69c3395f1a57c642dc62Ying Wang/* Set signal mask for the new process in ATTR to SIGMASK.  */
2505436638acc7c010349a69c3395f1a57c642dc62Ying Wangint
2605436638acc7c010349a69c3395f1a57c642dc62Ying Wangposix_spawnattr_setsigmask (posix_spawnattr_t *attr,
2705436638acc7c010349a69c3395f1a57c642dc62Ying Wang                            const sigset_t *sigmask)
2805436638acc7c010349a69c3395f1a57c642dc62Ying Wang{
2905436638acc7c010349a69c3395f1a57c642dc62Ying Wang  /* Copy the sigset_t data to the user buffer.  */
3005436638acc7c010349a69c3395f1a57c642dc62Ying Wang  memcpy (&attr->_ss, sigmask, sizeof (sigset_t));
3105436638acc7c010349a69c3395f1a57c642dc62Ying Wang
3205436638acc7c010349a69c3395f1a57c642dc62Ying Wang  return 0;
3305436638acc7c010349a69c3395f1a57c642dc62Ying Wang}
34