Sha256: ed489489ec1abf0d1e6da639b5d92dcb8b900eeca9f7686d8f37af6bd70ad09b
Contents?: true
Size: 1.18 KB
Versions: 11
Compression:
Stored size: 1.18 KB
Contents
/* * twemproxy - A fast and lightweight proxy for memcached protocol. * Copyright (C) 2011 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _NC_EVENT_H_ #define _NC_EVENT_H_ #include <nc_core.h> /* * A hint to the kernel that is used to size the event backing store * of a given epoll instance */ #define EVENT_SIZE_HINT 1024 int event_init(struct context *ctx, int size); void event_deinit(struct context *ctx); int event_add_out(int ep, struct conn *c); int event_del_out(int ep, struct conn *c); int event_add_conn(int ep, struct conn *c); int event_del_conn(int ep, struct conn *c); int event_wait(int ep, struct epoll_event *event, int nevent, int timeout); #endif
Version data entries
11 entries across 11 versions & 1 rubygems