Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
why3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
119
Issues
119
List
Boards
Labels
Service Desk
Milestones
Merge Requests
16
Merge Requests
16
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Why3
why3
Commits
99b6e736
Commit
99b6e736
authored
Apr 20, 2016
by
Andrei Paskevich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
headers on the added files
parent
b9132981
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
211 additions
and
1 deletion
+211
-1
Makefile.in
Makefile.in
+2
-1
src/driver/prove_client.ml
src/driver/prove_client.ml
+11
-0
src/driver/prove_client.mli
src/driver/prove_client.mli
+11
-0
src/ide/resetgc.c
src/ide/resetgc.c
+11
-0
src/server/arraylist.c
src/server/arraylist.c
+11
-0
src/server/arraylist.h
src/server/arraylist.h
+11
-0
src/server/logging.c
src/server/logging.c
+11
-0
src/server/logging.h
src/server/logging.h
+11
-0
src/server/options.c
src/server/options.c
+11
-0
src/server/options.h
src/server/options.h
+11
-0
src/server/queue.c
src/server/queue.c
+11
-0
src/server/queue.h
src/server/queue.h
+11
-0
src/server/readbuf.c
src/server/readbuf.c
+11
-0
src/server/readbuf.h
src/server/readbuf.h
+11
-0
src/server/request.c
src/server/request.c
+11
-0
src/server/request.h
src/server/request.h
+11
-0
src/server/server-unix.c
src/server/server-unix.c
+11
-0
src/server/server-win.c
src/server/server-win.c
+11
-0
src/server/writebuf.c
src/server/writebuf.c
+11
-0
src/server/writebuf.h
src/server/writebuf.h
+11
-0
No files found.
Makefile.in
View file @
99b6e736
...
...
@@ -1986,7 +1986,8 @@ headers: headers-coq
src/
*
/
*
.ml src/
*
/
*
.ml[iyl4]
\
plugins/
*
/
*
.ml plugins/
*
/
*
.ml[ily]
\
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
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
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
AlreadyConnected
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/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 <stdlib.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
#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 <stdlib.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
#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 <stdio.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
#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 <stdlib.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
#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 <stdlib.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
#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 <stdlib.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
#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
// mechanism to wait for events, plus the "self pipe trick" to handle
// 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
// 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 <stdlib.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
#define WRITEBUF_H
...
...
Write
Preview
Markdown
is supported
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