Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: ipc/file_descriptor_set_posix.h

Issue 7010015: IPC: Increase MAX_DESCRIPTORS_PER_MESSAGE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IPC_FILE_DESCRIPTOR_SET_POSIX_H_ 5 #ifndef IPC_FILE_DESCRIPTOR_SET_POSIX_H_
6 #define IPC_FILE_DESCRIPTOR_SET_POSIX_H_ 6 #define IPC_FILE_DESCRIPTOR_SET_POSIX_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 // This is the maximum number of descriptors per message. We need to know this 24 // This is the maximum number of descriptors per message. We need to know this
25 // because the control message kernel interface has to be given a buffer which 25 // because the control message kernel interface has to be given a buffer which
26 // is large enough to store all the descriptor numbers. Otherwise the kernel 26 // is large enough to store all the descriptor numbers. Otherwise the kernel
27 // tells us that it truncated the control data and the extra descriptors are 27 // tells us that it truncated the control data and the extra descriptors are
28 // lost. 28 // lost.
29 // 29 //
30 // In debugging mode, it's a fatal error to try and add more than this number 30 // In debugging mode, it's a fatal error to try and add more than this number
31 // of descriptors to a FileDescriptorSet. 31 // of descriptors to a FileDescriptorSet.
32 enum { 32 enum {
33 MAX_DESCRIPTORS_PER_MESSAGE = 4, 33 MAX_DESCRIPTORS_PER_MESSAGE = 5,
34 }; 34 };
35 35
36 // --------------------------------------------------------------------------- 36 // ---------------------------------------------------------------------------
37 // Interfaces for building during message serialisation... 37 // Interfaces for building during message serialisation...
38 38
39 // Add a descriptor to the end of the set. Returns false iff the set is full. 39 // Add a descriptor to the end of the set. Returns false iff the set is full.
40 bool Add(int fd); 40 bool Add(int fd);
41 // Add a descriptor to the end of the set and automatically close it after 41 // Add a descriptor to the end of the set and automatically close it after
42 // transmission. Returns false iff the set is full. 42 // transmission. Returns false iff the set is full.
43 bool AddAndAutoClose(int fd); 43 bool AddAndAutoClose(int fd);
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 // This contains the index of the next descriptor which should be consumed. 106 // This contains the index of the next descriptor which should be consumed.
107 // It's used in a couple of ways. Firstly, at destruction we can check that 107 // It's used in a couple of ways. Firstly, at destruction we can check that
108 // all the descriptors have been read (with GetNthDescriptor). Secondly, we 108 // all the descriptors have been read (with GetNthDescriptor). Secondly, we
109 // can check that they are read in order. 109 // can check that they are read in order.
110 mutable unsigned consumed_descriptor_highwater_; 110 mutable unsigned consumed_descriptor_highwater_;
111 111
112 DISALLOW_COPY_AND_ASSIGN(FileDescriptorSet); 112 DISALLOW_COPY_AND_ASSIGN(FileDescriptorSet);
113 }; 113 };
114 114
115 #endif // IPC_FILE_DESCRIPTOR_SET_POSIX_H_ 115 #endif // IPC_FILE_DESCRIPTOR_SET_POSIX_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698