Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
99b6e736
Commit
99b6e736
authored
Apr 20, 2016
by
Andrei Paskevich
Browse files
headers on the added files
parent
b9132981
Changes
20
Hide whitespace changes
Inline
Side-by-side
Makefile.in
View file @
99b6e736
...
@@ -1986,7 +1986,8 @@ headers: headers-coq
...
@@ -1986,7 +1986,8 @@ headers: headers-coq
src/
*
/
*
.ml src/
*
/
*
.ml[iyl4]
\
src/
*
/
*
.ml src/
*
/
*
.ml[iyl4]
\
plugins/
*
/
*
.ml plugins/
*
/
*
.ml[ily]
\
plugins/
*
/
*
.ml plugins/
*
/
*
.ml[ily]
\
lib/coq-tactic/
*
.v lib/coq/
*
.v
\
lib/coq-tactic/
*
.v lib/coq/
*
.v
\
src/tools/cpulimit.c
\
src/server/
*
.c src/server/
*
.h
\
src/ide/resetgc.c
\
examples/use_api/
*
.ml
examples/use_api/
*
.ml
headers-coq
:
headers-coq
:
...
...
src/driver/prove_client.ml
View file @
99b6e736
(********************************************************************)
(* *)
(* The Why3 Verification Platform / The Why3 Development Team *)
(* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University *)
(* *)
(* This software is distributed under the terms of the GNU Lesser *)
(* General Public License version 2.1, with the special exception *)
(* on linking described in file LICENSE. *)
(* *)
(********************************************************************)
let
socket
:
Unix
.
file_descr
option
ref
=
ref
None
let
socket
:
Unix
.
file_descr
option
ref
=
ref
None
exception
NotConnected
exception
NotConnected
...
...
src/driver/prove_client.mli
View file @
99b6e736
(********************************************************************)
(* *)
(* The Why3 Verification Platform / The Why3 Development Team *)
(* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University *)
(* *)
(* This software is distributed under the terms of the GNU Lesser *)
(* General Public License version 2.1, with the special exception *)
(* on linking described in file LICENSE. *)
(* *)
(********************************************************************)
exception
NotConnected
exception
NotConnected
exception
AlreadyConnected
exception
AlreadyConnected
exception
InvalidAnswer
of
string
exception
InvalidAnswer
of
string
...
...
src/ide/resetgc.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<caml/mlvalues.h>
#include
<caml/mlvalues.h>
#include
<caml/memory.h>
#include
<caml/memory.h>
...
...
src/server/arraylist.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<assert.h>
#include
<assert.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
"arraylist.h"
#include
"arraylist.h"
...
...
src/server/arraylist.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef ARRAYLIST_H
#ifndef ARRAYLIST_H
#define ARRAYLIST_H
#define ARRAYLIST_H
...
...
src/server/logging.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<stdio.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
"logging.h"
#include
"logging.h"
...
...
src/server/logging.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef LOGGING_H
#ifndef LOGGING_H
#define LOGGING_H
#define LOGGING_H
...
...
src/server/options.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<getopt.h>
#include
<getopt.h>
#include
<stdio.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<stdlib.h>
...
...
src/server/options.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef OPTIONS_H
#ifndef OPTIONS_H
#define OPTIONS_H
#define OPTIONS_H
...
...
src/server/queue.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<assert.h>
#include
<assert.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
"queue.h"
#include
"queue.h"
...
...
src/server/queue.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef QUEUE_H
#ifndef QUEUE_H
#define QUEUE_H
#define QUEUE_H
...
...
src/server/readbuf.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<assert.h>
#include
<assert.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
<string.h>
#include
<string.h>
...
...
src/server/readbuf.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef READBUF_H
#ifndef READBUF_H
#define READBUF_H
#define READBUF_H
...
...
src/server/request.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<stdio.h>
#include
<stdio.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
<string.h>
#include
<string.h>
...
...
src/server/request.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef REQUEST_H
#ifndef REQUEST_H
#define REQUEST_H
#define REQUEST_H
...
...
src/server/server-unix.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
// This is the unix implementation of the VC server. It uses the poll
// This is the unix implementation of the VC server. It uses the poll
// mechanism to wait for events, plus the "self pipe trick" to handle
// mechanism to wait for events, plus the "self pipe trick" to handle
// terminating child processes.
// terminating child processes.
...
...
src/server/server-win.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
// This is the windows implementation of the VC server. Its main feature is
// This is the windows implementation of the VC server. Its main feature is
// the use of an IO Completion port to handle all kinds of events.
// the use of an IO Completion port to handle all kinds of events.
//
//
...
...
src/server/writebuf.c
View file @
99b6e736
/********************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/********************************************************************/
#include
<assert.h>
#include
<assert.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
<string.h>
#include
<string.h>
...
...
src/server/writebuf.h
View file @
99b6e736
/**************************************************************************/
/* */
/* The Why3 Verification Platform / The Why3 Development Team */
/* Copyright 2010-2016 -- INRIA - CNRS - Paris-Sud University */
/* */
/* This software is distributed under the terms of the GNU Lesser */
/* General Public License version 2.1, with the special exception */
/* on linking described in file LICENSE. */
/* */
/**************************************************************************/
#ifndef WRITEBUF_H
#ifndef WRITEBUF_H
#define WRITEBUF_H
#define WRITEBUF_H
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment