root/net/unix/garbage.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. unix_gc_remove
  2. unix_gc_add

   1 /*
   2  * NET3:        Garbage Collector For AF_UNIX sockets (STUB)
   3  *
   4  * Authors:     
   5  *
   6  *              This program is free software; you can redistribute it and/or
   7  *              modify it under the terms of the GNU General Public License
   8  *              as published by the Free Software Foundation; either version
   9  *              2 of the License, or (at your option) any later version.
  10  * Fixes:
  11  *
  12  */
  13  
  14 #include <linux/kernel.h>
  15 #include <linux/major.h>
  16 #include <linux/signal.h>
  17 #include <linux/sched.h>
  18 #include <linux/errno.h>
  19 #include <linux/string.h>
  20 #include <linux/stat.h>
  21 #include <linux/socket.h>
  22 #include <linux/un.h>
  23 #include <linux/fcntl.h>
  24 #include <linux/termios.h>
  25 #include <linux/socket.h>
  26 #include <linux/sockios.h>
  27 #include <linux/net.h>
  28 #include <linux/in.h>
  29 #include <linux/fs.h>
  30 #include <linux/malloc.h>
  31 #include <asm/segment.h>
  32 #include <linux/skbuff.h>
  33 #include <linux/netdevice.h>
  34 #include <net/sock.h>
  35 #include <net/tcp.h>
  36 #include <net/af_unix.h>
  37 #include <linux/proc_fs.h>
  38 /*
  39  *      Garbage Collector Stubs
  40  */
  41  
  42 
  43 int unix_gc_free=128;           /* GC slots free */
  44 
  45 void unix_gc_remove(struct file *fp)
     /* [previous][next][first][last][top][bottom][index][help] */
  46 {
  47         ;
  48 }
  49 
  50 void unix_gc_add(struct sock *sk, struct file *fp)
     /* [previous][next][first][last][top][bottom][index][help] */
  51 {
  52         ;
  53 }

/* [previous][next][first][last][top][bottom][index][help] */