Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lyskom-server-ceder-1616-generations-topgit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
4575da85
Commit
4575da85
authored
Aug 11, 2003
by
Per Cederqvist
Browse files
Options
Downloads
Patches
Plain Diff
(cached_get_keep_commented): New function.
parent
916aa39b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/server/cache.h
+4
-1
4 additions, 1 deletion
src/server/cache.h
src/server/dbck-cache.c
+7
-1
7 additions, 1 deletion
src/server/dbck-cache.c
with
11 additions
and
2 deletions
src/server/cache.h
+
4
−
1
View file @
4575da85
/*
/*
* $Id: cache.h,v 0.2
4
2003/0
7
/1
2 21:27:19
ceder Exp $
* $Id: cache.h,v 0.2
5
2003/0
8
/1
1 10:55:48
ceder Exp $
* Copyright (C) 1991-1996, 1999 Lysator Academic Computer Association.
* Copyright (C) 1991-1996, 1999 Lysator Academic Computer Association.
*
*
* This file is part of the LysKOM server.
* This file is part of the LysKOM server.
...
@@ -125,6 +125,9 @@ Conf_no cached_get_conf_supervisor(Conf_no conf_no);
...
@@ -125,6 +125,9 @@ Conf_no cached_get_conf_supervisor(Conf_no conf_no);
/* Get garb_nice from smallconf */
/* Get garb_nice from smallconf */
Garb_nice
cached_get_garb_nice
(
Conf_no
conf
);
Garb_nice
cached_get_garb_nice
(
Conf_no
conf
);
/* Get keep_commented from smallconf */
Garb_nice
cached_get_keep_commented
(
Conf_no
conf
);
/* returns conference name from smallconf */
/* returns conference name from smallconf */
String
cached_get_name
(
Conf_no
conf
);
String
cached_get_name
(
Conf_no
conf
);
...
...
This diff is collapsed.
Click to expand it.
src/server/dbck-cache.c
+
7
−
1
View file @
4575da85
/*
/*
* $Id: dbck-cache.c,v 0.5
3
2003/0
7
/1
2 22:26:32
ceder Exp $
* $Id: dbck-cache.c,v 0.5
4
2003/0
8
/1
1 10:55:41
ceder Exp $
* Copyright (C) 1991-1999, 2001-2002 Lysator Academic Computer Association.
* Copyright (C) 1991-1999, 2001-2002 Lysator Academic Computer Association.
*
*
* This file is part of the LysKOM server.
* This file is part of the LysKOM server.
...
@@ -467,6 +467,12 @@ cached_get_garb_nice (Conf_no conf_no)
...
@@ -467,6 +467,12 @@ cached_get_garb_nice (Conf_no conf_no)
return
conf_arr
[
conf_no
]
->
nice
;
return
conf_arr
[
conf_no
]
->
nice
;
}
}
extern
Garb_nice
cached_get_keep_commented
(
Conf_no
conf_no
)
{
return
conf_arr
[
conf_no
]
->
keep_commented
;
}
extern
Local_text_no
extern
Local_text_no
cached_get_highest_local_no
(
Conf_no
conf_no
)
cached_get_highest_local_no
(
Conf_no
conf_no
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment