summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/mremap/mremap.cpp
blob: a6f44ddecb6c0c5a951af059ed6d079d2319f12e (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
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the config.tests of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include <unistd.h>
#include <sys/mman.h>

int main(int, char **)
{
    (void) ::mremap(static_cast<void *>(0), size_t(0), size_t(42), MREMAP_MAYMOVE);

    return 0;
}

='/oss-git/cpython.git/commit/Lib/test/test_selectors.py?id=9d8118e5c56375feb28416be15fe789ed3c0452a'>Issue #21901: Cap the maximum number of file descriptors to use for the test.Charles-François Natali2014-07-221-1/+1 |\ \ | |/ | * Issue #21901: Cap the maximum number of file descriptors to use for the test.Charles-François Natali2014-07-221-1/+1 * | Fix issue 18931: selectors module now supports /dev/poll on Solaris.Giampaolo Rodola'2014-03-201-1/+9 |/ * Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-5/+0 * test_selectors: remove unused importsVictor Stinner2014-01-251-1/+1 * Issue #20311: selectors: Add a resolution attribute to BaseSelector.Victor Stinner2014-01-251-0/+5 * Issue #20311: Revert e042ea77a152 and 7ce7295393c2, PollSelector.select() andVictor Stinner2014-01-251-19/+0 * Issue #20311: add debug help in test_selectorsVictor Stinner2014-01-231-2/+5 * Issue #20311: selector.PollSelector.select() now rounds the timeout away fromVictor Stinner2014-01-211-1/+17 * Backed out changeset c4c1c4bc8086Victor Stinner2013-12-091-1/+1 * Issue #19876: Run also test_selectors.test_unregister_after_fd_close_and_reus...Victor Stinner2013-12-091-1/+1 * Fix test_selectors failure introduced by 39e7995f9ad1.Charles-François Natali2013-12-081-0/+1 * Silently ignore unregistering closed files. Fixes issue 19876. With docs and ...Guido van Rossum2013-12-071-37/+59 * test_selectors: test_timeout fails sometimes on busy (slow) buildbots, relaxVictor Stinner2013-11-171-1/+2 * Optimize BaseSelector.modify(). Patch by Arnaud Faure.Guido van Rossum2013-11-071-0/+10 * Issue #19172: Add a get_map() method to selectors.Charles-François Natali2013-10-301-0/+27 * test_selectors: make timeout-related errors report the actual elapsed timeout.Charles-François Natali2013-10-251-4/+5 * test_selectors: rename test_interrupted_retry() (since it doesn't actuallyCharles-François Natali2013-10-251-1/+1 * Issue #18963: skip test_selectors.test_above_fd_setsize on older OS X versions.Charles-François Natali2013-09-081-0/+2 * Issue #18963: Fix test_selectors.test_above_fd_setsize on OS X, where theCharles-François Natali2013-09-08